From 5ee98effb0d1163c1cf2270e348199d8cf6cc25e Mon Sep 17 00:00:00 2001 From: Riley Bruins Date: Wed, 20 Mar 2024 11:18:33 -0700 Subject: [PATCH] fix: flat node structure for else if --- grammar.js | 8 + src/grammar.json | 44 + src/node-types.json | 32 +- src/parser.c | 164798 +++++++++++++++++----------------- test/corpus/statements.txt | 24 + 5 files changed, 84891 insertions(+), 80015 deletions(-) diff --git a/grammar.js b/grammar.js index f5450d7b..2bf9b115 100644 --- a/grammar.js +++ b/grammar.js @@ -824,11 +824,19 @@ module.exports = grammar({ 'if', field('condition', $.parenthesized_expression), field('consequence', $._statement), + repeat(field('alternative', $.else_if_clause)), optional(field('alternative', $.else_clause)), )), else_clause: $ => seq('else', $._statement), + else_if_clause: $ => prec(1, seq( + 'else', + 'if', + field('condition', $.parenthesized_expression), + field('consequence', $._statement), + )), + switch_statement: $ => seq( 'switch', field('condition', $.parenthesized_expression), diff --git a/src/grammar.json b/src/grammar.json index 1a58695e..51a0fe14 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5875,6 +5875,17 @@ "name": "_statement" } }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_if_clause" + } + } + }, { "type": "CHOICE", "members": [ @@ -5907,6 +5918,39 @@ } ] }, + "else_if_clause": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + } + }, "switch_statement": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index f8e5d74c..fdc0283a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1391,6 +1391,32 @@ ] } }, + { + "type": "else_if_clause", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + } + }, { "type": "enum_specifier", "named": true, @@ -2098,12 +2124,16 @@ "named": true, "fields": { "alternative": { - "multiple": false, + "multiple": true, "required": false, "types": [ { "type": "else_clause", "named": true + }, + { + "type": "else_if_clause", + "named": true } ] }, diff --git a/src/parser.c b/src/parser.c index 3664540f..870c2442 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,6 +1,7 @@ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -13,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2423 -#define LARGE_STATE_COUNT 613 -#define SYMBOL_COUNT 348 +#define STATE_COUNT 2486 +#define LARGE_STATE_COUNT 658 +#define SYMBOL_COUNT 350 #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 132 +#define PRODUCTION_ID_COUNT 137 enum ts_symbol_identifiers { sym_identifier = 1, @@ -281,99 +282,101 @@ enum ts_symbol_identifiers { 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, + sym_else_if_clause = 258, + sym_switch_statement = 259, + sym_case_statement = 260, + sym_while_statement = 261, + sym_do_statement = 262, + sym_for_statement = 263, + sym__for_statement_body = 264, + sym_return_statement = 265, + sym_break_statement = 266, + sym_continue_statement = 267, + sym_goto_statement = 268, + sym_seh_try_statement = 269, + sym_seh_except_clause = 270, + sym_seh_finally_clause = 271, + sym_seh_leave_statement = 272, + sym__expression = 273, + sym__expression_not_binary = 274, + sym__string = 275, + sym_comma_expression = 276, + sym_conditional_expression = 277, + sym_assignment_expression = 278, + sym_pointer_expression = 279, + sym_unary_expression = 280, + sym_binary_expression = 281, + sym_update_expression = 282, + sym_cast_expression = 283, + sym_type_descriptor = 284, + sym_sizeof_expression = 285, + sym_alignof_expression = 286, + sym_offsetof_expression = 287, + sym_generic_expression = 288, + sym_subscript_expression = 289, + sym_call_expression = 290, + sym_gnu_asm_expression = 291, + sym_gnu_asm_qualifier = 292, + sym_gnu_asm_output_operand_list = 293, + sym_gnu_asm_output_operand = 294, + sym_gnu_asm_input_operand_list = 295, + sym_gnu_asm_input_operand = 296, + sym_gnu_asm_clobber_list = 297, + sym_gnu_asm_goto_list = 298, + sym_argument_list = 299, + sym_field_expression = 300, + sym_compound_literal_expression = 301, + sym_parenthesized_expression = 302, + sym_initializer_list = 303, + sym_initializer_pair = 304, + sym_subscript_designator = 305, + sym_subscript_range_designator = 306, + sym_field_designator = 307, + sym_char_literal = 308, + sym_concatenated_string = 309, + sym_string_literal = 310, + sym_null = 311, + sym__empty_declaration = 312, + sym_macro_type_specifier = 313, + aux_sym_translation_unit_repeat1 = 314, + aux_sym_preproc_params_repeat1 = 315, + aux_sym_preproc_if_repeat1 = 316, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 317, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 318, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 319, + aux_sym_preproc_argument_list_repeat1 = 320, + aux_sym__old_style_function_definition_repeat1 = 321, + aux_sym_declaration_repeat1 = 322, + aux_sym_type_definition_repeat1 = 323, + aux_sym__type_definition_type_repeat1 = 324, + aux_sym__type_definition_declarators_repeat1 = 325, + aux_sym__declaration_specifiers_repeat1 = 326, + aux_sym_attribute_declaration_repeat1 = 327, + aux_sym_attributed_declarator_repeat1 = 328, + aux_sym_pointer_declarator_repeat1 = 329, + aux_sym_function_declarator_repeat1 = 330, + aux_sym_sized_type_specifier_repeat1 = 331, + aux_sym_enumerator_list_repeat1 = 332, + aux_sym__field_declaration_declarator_repeat1 = 333, + aux_sym_parameter_list_repeat1 = 334, + aux_sym__old_style_parameter_list_repeat1 = 335, + aux_sym_if_statement_repeat1 = 336, + aux_sym_case_statement_repeat1 = 337, + aux_sym_generic_expression_repeat1 = 338, + aux_sym_gnu_asm_expression_repeat1 = 339, + aux_sym_gnu_asm_output_operand_list_repeat1 = 340, + aux_sym_gnu_asm_input_operand_list_repeat1 = 341, + aux_sym_gnu_asm_clobber_list_repeat1 = 342, + aux_sym_gnu_asm_goto_list_repeat1 = 343, + aux_sym_argument_list_repeat1 = 344, + aux_sym_initializer_list_repeat1 = 345, + aux_sym_initializer_pair_repeat1 = 346, + aux_sym_char_literal_repeat1 = 347, + aux_sym_concatenated_string_repeat1 = 348, + aux_sym_string_literal_repeat1 = 349, + alias_sym_field_identifier = 350, + alias_sym_statement_identifier = 351, + alias_sym_type_identifier = 352, }; static const char * const ts_symbol_names[] = { @@ -635,6 +638,7 @@ static const char * const ts_symbol_names[] = { [sym_expression_statement] = "expression_statement", [sym_if_statement] = "if_statement", [sym_else_clause] = "else_clause", + [sym_else_if_clause] = "else_if_clause", [sym_switch_statement] = "switch_statement", [sym_case_statement] = "case_statement", [sym_while_statement] = "while_statement", @@ -712,6 +716,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__field_declaration_declarator_repeat1] = "_field_declaration_declarator_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym__old_style_parameter_list_repeat1] = "_old_style_parameter_list_repeat1", + [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", [aux_sym_generic_expression_repeat1] = "generic_expression_repeat1", [aux_sym_gnu_asm_expression_repeat1] = "gnu_asm_expression_repeat1", @@ -989,6 +994,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_expression_statement] = sym_expression_statement, [sym_if_statement] = sym_if_statement, [sym_else_clause] = sym_else_clause, + [sym_else_if_clause] = sym_else_if_clause, [sym_switch_statement] = sym_switch_statement, [sym_case_statement] = sym_case_statement, [sym_while_statement] = sym_while_statement, @@ -1066,6 +1072,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__field_declaration_declarator_repeat1] = aux_sym__field_declaration_declarator_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym__old_style_parameter_list_repeat1] = aux_sym__old_style_parameter_list_repeat1, + [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, [aux_sym_generic_expression_repeat1] = aux_sym_generic_expression_repeat1, [aux_sym_gnu_asm_expression_repeat1] = aux_sym_gnu_asm_expression_repeat1, @@ -2122,6 +2129,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_else_if_clause] = { + .visible = true, + .named = true, + }, [sym_switch_statement] = { .visible = true, .named = true, @@ -2431,6 +2442,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_if_statement_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_case_statement_repeat1] = { .visible = false, .named = false, @@ -2636,80 +2651,85 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [54] = {.index = 83, .length = 1}, [55] = {.index = 84, .length = 3}, [56] = {.index = 87, .length = 1}, - [57] = {.index = 88, .length = 1}, - [58] = {.index = 89, .length = 1}, - [59] = {.index = 90, .length = 2}, - [60] = {.index = 92, .length = 1}, - [61] = {.index = 93, .length = 3}, - [62] = {.index = 96, .length = 3}, - [63] = {.index = 99, .length = 2}, - [64] = {.index = 101, .length = 3}, - [65] = {.index = 104, .length = 2}, - [66] = {.index = 106, .length = 5}, - [67] = {.index = 111, .length = 3}, - [68] = {.index = 114, .length = 5}, - [69] = {.index = 119, .length = 2}, - [70] = {.index = 121, .length = 2}, - [71] = {.index = 123, .length = 3}, - [72] = {.index = 126, .length = 2}, - [73] = {.index = 128, .length = 2}, - [74] = {.index = 130, .length = 1}, - [75] = {.index = 131, .length = 2}, - [76] = {.index = 133, .length = 2}, + [57] = {.index = 88, .length = 3}, + [58] = {.index = 91, .length = 1}, + [59] = {.index = 92, .length = 1}, + [60] = {.index = 93, .length = 1}, + [61] = {.index = 94, .length = 2}, + [62] = {.index = 96, .length = 1}, + [63] = {.index = 97, .length = 3}, + [64] = {.index = 100, .length = 3}, + [65] = {.index = 103, .length = 2}, + [66] = {.index = 105, .length = 3}, + [67] = {.index = 108, .length = 2}, + [68] = {.index = 110, .length = 5}, + [69] = {.index = 115, .length = 3}, + [70] = {.index = 118, .length = 5}, + [71] = {.index = 123, .length = 2}, + [72] = {.index = 125, .length = 2}, + [73] = {.index = 127, .length = 3}, + [74] = {.index = 130, .length = 2}, + [75] = {.index = 132, .length = 2}, + [76] = {.index = 134, .length = 1}, [77] = {.index = 135, .length = 2}, - [78] = {.index = 137, .length = 3}, - [79] = {.index = 140, .length = 2}, - [80] = {.index = 142, .length = 2}, + [78] = {.index = 137, .length = 2}, + [79] = {.index = 139, .length = 2}, + [80] = {.index = 141, .length = 3}, [81] = {.index = 144, .length = 2}, - [82] = {.index = 146, .length = 1}, - [83] = {.index = 147, .length = 2}, - [84] = {.index = 149, .length = 2}, - [85] = {.index = 151, .length = 4}, - [86] = {.index = 155, .length = 1}, - [87] = {.index = 156, .length = 2}, - [88] = {.index = 158, .length = 1}, - [89] = {.index = 159, .length = 1}, - [90] = {.index = 160, .length = 4}, - [91] = {.index = 164, .length = 4}, - [92] = {.index = 168, .length = 2}, - [93] = {.index = 170, .length = 2}, - [94] = {.index = 172, .length = 3}, - [95] = {.index = 175, .length = 5}, - [96] = {.index = 180, .length = 3}, - [97] = {.index = 183, .length = 2}, - [98] = {.index = 185, .length = 1}, - [100] = {.index = 186, .length = 2}, - [101] = {.index = 188, .length = 2}, - [102] = {.index = 190, .length = 2}, - [103] = {.index = 192, .length = 3}, - [104] = {.index = 195, .length = 2}, - [105] = {.index = 197, .length = 2}, - [106] = {.index = 199, .length = 2}, - [107] = {.index = 201, .length = 2}, - [108] = {.index = 203, .length = 3}, - [109] = {.index = 206, .length = 2}, - [110] = {.index = 208, .length = 1}, - [111] = {.index = 209, .length = 5}, - [112] = {.index = 214, .length = 2}, - [113] = {.index = 216, .length = 3}, - [114] = {.index = 219, .length = 2}, - [115] = {.index = 219, .length = 2}, - [116] = {.index = 221, .length = 3}, - [117] = {.index = 224, .length = 2}, - [118] = {.index = 226, .length = 1}, - [119] = {.index = 227, .length = 4}, - [120] = {.index = 231, .length = 3}, - [121] = {.index = 234, .length = 2}, + [82] = {.index = 146, .length = 2}, + [83] = {.index = 148, .length = 4}, + [84] = {.index = 152, .length = 2}, + [85] = {.index = 154, .length = 2}, + [86] = {.index = 156, .length = 1}, + [87] = {.index = 157, .length = 2}, + [88] = {.index = 159, .length = 2}, + [89] = {.index = 161, .length = 4}, + [90] = {.index = 165, .length = 1}, + [91] = {.index = 166, .length = 2}, + [92] = {.index = 168, .length = 1}, + [93] = {.index = 169, .length = 1}, + [94] = {.index = 170, .length = 4}, + [95] = {.index = 174, .length = 4}, + [96] = {.index = 178, .length = 2}, + [97] = {.index = 180, .length = 2}, + [98] = {.index = 182, .length = 3}, + [99] = {.index = 185, .length = 5}, + [100] = {.index = 190, .length = 3}, + [101] = {.index = 193, .length = 2}, + [102] = {.index = 195, .length = 1}, + [104] = {.index = 196, .length = 2}, + [105] = {.index = 198, .length = 2}, + [106] = {.index = 200, .length = 2}, + [107] = {.index = 202, .length = 3}, + [108] = {.index = 205, .length = 2}, + [109] = {.index = 207, .length = 2}, + [110] = {.index = 209, .length = 2}, + [111] = {.index = 211, .length = 2}, + [112] = {.index = 213, .length = 3}, + [113] = {.index = 216, .length = 2}, + [114] = {.index = 218, .length = 1}, + [115] = {.index = 219, .length = 5}, + [116] = {.index = 224, .length = 2}, + [117] = {.index = 226, .length = 3}, + [118] = {.index = 229, .length = 2}, + [119] = {.index = 229, .length = 2}, + [120] = {.index = 231, .length = 2}, + [121] = {.index = 233, .length = 3}, [122] = {.index = 236, .length = 2}, - [123] = {.index = 35, .length = 1}, - [124] = {.index = 238, .length = 5}, - [125] = {.index = 243, .length = 4}, - [126] = {.index = 247, .length = 2}, - [127] = {.index = 249, .length = 2}, - [128] = {.index = 251, .length = 2}, - [129] = {.index = 253, .length = 5}, - [130] = {.index = 258, .length = 2}, - [131] = {.index = 260, .length = 3}, + [123] = {.index = 238, .length = 1}, + [124] = {.index = 239, .length = 4}, + [125] = {.index = 243, .length = 3}, + [126] = {.index = 246, .length = 2}, + [127] = {.index = 248, .length = 2}, + [128] = {.index = 35, .length = 1}, + [129] = {.index = 250, .length = 5}, + [130] = {.index = 255, .length = 4}, + [131] = {.index = 259, .length = 2}, + [132] = {.index = 261, .length = 2}, + [133] = {.index = 263, .length = 2}, + [134] = {.index = 265, .length = 5}, + [135] = {.index = 270, .length = 2}, + [136] = {.index = 272, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2850,251 +2870,268 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 1}, {field_consequence, 2}, [87] = - {field_initializer, 0}, + {field_alternative, 0}, [88] = + {field_alternative, 3, .inherited = true}, + {field_condition, 1}, + {field_consequence, 2}, + [91] = + {field_initializer, 0}, + [92] = {field_type, 2}, - [89] = + [93] = {field_assembly_code, 2}, - [90] = + [94] = {field_name, 0}, {field_type, 2}, - [92] = + [96] = {field_declarator, 2}, - [93] = + [97] = {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [96] = + [100] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [99] = + [103] = {field_declarator, 0}, {field_value, 2}, - [101] = + [105] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [104] = + [108] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [106] = + [110] = {field_body, 3}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [111] = + [115] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [114] = + [118] = {field_body, 3}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [119] = + [123] = {field_argument, 0}, {field_index, 2}, - [121] = + [125] = {field_alternative, 3}, {field_condition, 0}, - [123] = + [127] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [126] = + [130] = {field_alternative, 3}, {field_condition, 1}, - [128] = + [132] = {field_alternative, 3}, {field_name, 1}, - [130] = + [134] = {field_size, 1}, - [131] = + [135] = {field_declarator, 3}, {field_type, 1}, - [133] = + [137] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [135] = + [139] = {field_name, 0}, {field_value, 2}, - [137] = + [141] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [140] = + [144] = {field_declarator, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [142] = + [146] = {field_body, 4}, {field_name, 3}, - [144] = + [148] = + {field_alternative, 3, .inherited = true}, + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 2}, + [152] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [154] = {field_body, 1}, {field_condition, 3}, - [146] = + [156] = {field_update, 2}, - [147] = + [157] = {field_initializer, 0}, {field_update, 2}, - [149] = + [159] = {field_condition, 1}, {field_initializer, 0}, - [151] = + [161] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [155] = + [165] = {field_operand, 1}, - [156] = + [166] = {field_assembly_code, 2}, {field_output_operands, 3}, - [158] = + [168] = {field_assembly_code, 3}, - [159] = + [169] = {field_declarator, 3}, - [160] = + [170] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [164] = + [174] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [168] = + [178] = {field_declarator, 0}, {field_size, 2}, - [170] = + [180] = {field_declarator, 1}, {field_declarator, 2}, - [172] = + [182] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [175] = + [185] = {field_body, 4}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [180] = + [190] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [183] = + [193] = {field_alternative, 4}, {field_condition, 1}, - [185] = + [195] = {field_size, 2}, - [186] = + [196] = {field_body, 2}, {field_filter, 1}, - [188] = + [198] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [190] = + [200] = {field_condition, 1}, {field_update, 3}, - [192] = + [202] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [195] = + [205] = {field_initializer, 0}, {field_update, 3}, - [197] = + [207] = {field_condition, 2}, {field_initializer, 0}, - [199] = + [209] = {field_member, 4}, {field_type, 2}, - [201] = + [211] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [203] = + [213] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [206] = + [216] = {field_assembly_code, 3}, {field_output_operands, 4}, - [208] = + [218] = {field_declarator, 4}, - [209] = + [219] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [214] = + [224] = {field_declarator, 0}, {field_size, 3}, - [216] = + [226] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [219] = + [229] = {field_designator, 0}, {field_value, 2}, - [221] = + [231] = + {field_condition, 2}, + {field_consequence, 3}, + [233] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [224] = + [236] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [226] = + [238] = {field_register, 1}, - [227] = + [239] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [231] = + [243] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [234] = + [246] = {field_constraint, 0}, {field_value, 2}, - [236] = + [248] = {field_register, 1}, {field_register, 2, .inherited = true}, - [238] = + [250] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [243] = + [255] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [247] = + [259] = {field_end, 3}, {field_start, 1}, - [249] = + [261] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [251] = + [263] = {field_label, 1}, {field_label, 2, .inherited = true}, - [253] = + [265] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [258] = + [270] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [260] = + [272] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3144,19 +3181,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [53] = { [3] = alias_sym_type_identifier, }, - [78] = { + [80] = { [1] = alias_sym_type_identifier, }, - [80] = { + [82] = { [3] = alias_sym_type_identifier, }, - [99] = { + [103] = { [1] = alias_sym_field_identifier, }, - [106] = { + [110] = { [4] = alias_sym_field_identifier, }, - [114] = { + [118] = { [0] = alias_sym_field_identifier, }, }; @@ -3170,54 +3207,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, - [5] = 4, - [6] = 4, - [7] = 4, - [8] = 2, - [9] = 4, - [10] = 2, + [4] = 2, + [5] = 5, + [6] = 5, + [7] = 2, + [8] = 5, + [9] = 5, + [10] = 5, [11] = 2, [12] = 12, - [13] = 12, - [14] = 12, - [15] = 15, + [13] = 13, + [14] = 14, + [15] = 13, [16] = 16, [17] = 12, - [18] = 18, + [18] = 12, [19] = 19, - [20] = 19, + [20] = 20, [21] = 21, [22] = 12, - [23] = 19, - [24] = 19, - [25] = 19, - [26] = 26, - [27] = 16, + [23] = 12, + [24] = 13, + [25] = 13, + [26] = 13, + [27] = 21, [28] = 28, - [29] = 28, - [30] = 30, + [29] = 29, + [30] = 29, [31] = 31, - [32] = 28, - [33] = 31, - [34] = 34, - [35] = 34, - [36] = 36, - [37] = 31, - [38] = 38, - [39] = 30, - [40] = 16, - [41] = 28, + [32] = 32, + [33] = 21, + [34] = 29, + [35] = 28, + [36] = 32, + [37] = 32, + [38] = 31, + [39] = 39, + [40] = 31, + [41] = 29, [42] = 31, - [43] = 31, - [44] = 30, - [45] = 34, - [46] = 30, - [47] = 16, - [48] = 34, + [43] = 29, + [44] = 31, + [45] = 32, + [46] = 46, + [47] = 32, + [48] = 21, [49] = 28, - [50] = 34, - [51] = 30, + [50] = 28, + [51] = 28, [52] = 52, [53] = 53, [54] = 54, @@ -3225,31 +3262,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 55, + [59] = 56, [60] = 58, - [61] = 57, - [62] = 56, - [63] = 54, + [61] = 54, + [62] = 57, + [63] = 55, [64] = 57, - [65] = 58, - [66] = 54, - [67] = 58, - [68] = 55, - [69] = 54, - [70] = 58, - [71] = 57, - [72] = 56, - [73] = 56, - [74] = 55, - [75] = 54, + [65] = 54, + [66] = 58, + [67] = 56, + [68] = 56, + [69] = 55, + [70] = 55, + [71] = 56, + [72] = 54, + [73] = 58, + [74] = 54, + [75] = 58, [76] = 55, - [77] = 56, + [77] = 57, [78] = 57, - [79] = 54, - [80] = 58, - [81] = 57, - [82] = 56, - [83] = 55, + [79] = 56, + [80] = 57, + [81] = 55, + [82] = 54, + [83] = 58, [84] = 84, [85] = 84, [86] = 84, @@ -3260,20 +3297,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [91] = 91, [92] = 92, [93] = 93, - [94] = 94, - [95] = 95, - [96] = 96, + [94] = 90, + [95] = 91, + [96] = 92, [97] = 97, [98] = 98, [99] = 99, [100] = 100, [101] = 101, [102] = 102, - [103] = 103, + [103] = 93, [104] = 104, - [105] = 96, + [105] = 105, [106] = 106, - [107] = 107, + [107] = 102, [108] = 108, [109] = 109, [110] = 110, @@ -3284,7 +3321,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [115] = 115, [116] = 116, [117] = 117, - [118] = 118, + [118] = 100, [119] = 119, [120] = 120, [121] = 121, @@ -3299,7 +3336,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [130] = 130, [131] = 131, [132] = 132, - [133] = 107, + [133] = 133, [134] = 134, [135] = 135, [136] = 136, @@ -3320,1477 +3357,1477 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [151] = 151, [152] = 152, [153] = 153, - [154] = 154, + [154] = 90, [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 160, + [160] = 90, [161] = 161, [162] = 162, [163] = 163, [164] = 164, - [165] = 165, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 90, - [172] = 128, - [173] = 115, - [174] = 98, - [175] = 91, - [176] = 121, - [177] = 101, - [178] = 99, - [179] = 122, - [180] = 110, - [181] = 120, - [182] = 109, - [183] = 119, - [184] = 139, - [185] = 111, - [186] = 124, - [187] = 140, - [188] = 112, - [189] = 113, - [190] = 141, - [191] = 142, - [192] = 125, - [193] = 117, - [194] = 116, - [195] = 126, - [196] = 118, - [197] = 102, - [198] = 114, - [199] = 108, - [200] = 127, - [201] = 96, - [202] = 106, - [203] = 131, - [204] = 130, - [205] = 129, - [206] = 123, - [207] = 132, - [208] = 135, - [209] = 100, - [210] = 134, - [211] = 136, - [212] = 92, - [213] = 107, - [214] = 137, - [215] = 138, - [216] = 93, - [217] = 94, - [218] = 95, - [219] = 97, - [220] = 103, - [221] = 104, - [222] = 157, - [223] = 168, - [224] = 144, - [225] = 145, - [226] = 146, - [227] = 167, - [228] = 152, - [229] = 165, - [230] = 90, - [231] = 147, - [232] = 169, - [233] = 164, - [234] = 161, - [235] = 149, - [236] = 156, - [237] = 160, - [238] = 238, - [239] = 166, - [240] = 238, - [241] = 159, - [242] = 155, - [243] = 90, - [244] = 90, - [245] = 153, - [246] = 170, - [247] = 151, - [248] = 143, - [249] = 163, - [250] = 150, - [251] = 148, - [252] = 162, - [253] = 154, + [165] = 92, + [166] = 92, + [167] = 91, + [168] = 92, + [169] = 91, + [170] = 90, + [171] = 171, + [172] = 172, + [173] = 91, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 105, + [191] = 128, + [192] = 100, + [193] = 93, + [194] = 119, + [195] = 149, + [196] = 123, + [197] = 150, + [198] = 151, + [199] = 99, + [200] = 140, + [201] = 148, + [202] = 147, + [203] = 146, + [204] = 102, + [205] = 113, + [206] = 111, + [207] = 110, + [208] = 109, + [209] = 108, + [210] = 112, + [211] = 98, + [212] = 97, + [213] = 114, + [214] = 101, + [215] = 93, + [216] = 104, + [217] = 106, + [218] = 115, + [219] = 152, + [220] = 135, + [221] = 120, + [222] = 145, + [223] = 144, + [224] = 143, + [225] = 142, + [226] = 121, + [227] = 122, + [228] = 141, + [229] = 124, + [230] = 125, + [231] = 126, + [232] = 139, + [233] = 127, + [234] = 117, + [235] = 129, + [236] = 116, + [237] = 130, + [238] = 131, + [239] = 132, + [240] = 133, + [241] = 134, + [242] = 136, + [243] = 93, + [244] = 137, + [245] = 138, + [246] = 187, + [247] = 247, + [248] = 181, + [249] = 177, + [250] = 182, + [251] = 185, + [252] = 180, + [253] = 189, [254] = 158, - [255] = 136, - [256] = 141, - [257] = 139, - [258] = 140, - [259] = 127, - [260] = 138, - [261] = 137, - [262] = 104, - [263] = 103, - [264] = 92, - [265] = 135, - [266] = 139, - [267] = 132, - [268] = 140, - [269] = 129, - [270] = 141, - [271] = 131, - [272] = 134, - [273] = 126, - [274] = 125, - [275] = 124, - [276] = 138, - [277] = 137, - [278] = 123, - [279] = 122, - [280] = 121, - [281] = 109, - [282] = 130, - [283] = 120, - [284] = 128, - [285] = 110, - [286] = 92, - [287] = 119, - [288] = 117, - [289] = 116, - [290] = 114, - [291] = 108, - [292] = 111, - [293] = 112, - [294] = 106, - [295] = 118, - [296] = 102, - [297] = 115, - [298] = 142, - [299] = 101, - [300] = 91, - [301] = 97, - [302] = 99, - [303] = 98, - [304] = 136, - [305] = 135, - [306] = 113, + [255] = 159, + [256] = 161, + [257] = 188, + [258] = 178, + [259] = 183, + [260] = 155, + [261] = 156, + [262] = 184, + [263] = 163, + [264] = 174, + [265] = 179, + [266] = 175, + [267] = 153, + [268] = 171, + [269] = 172, + [270] = 176, + [271] = 186, + [272] = 162, + [273] = 164, + [274] = 247, + [275] = 157, + [276] = 140, + [277] = 114, + [278] = 143, + [279] = 144, + [280] = 145, + [281] = 146, + [282] = 151, + [283] = 119, + [284] = 150, + [285] = 149, + [286] = 123, + [287] = 120, + [288] = 135, + [289] = 149, + [290] = 147, + [291] = 101, + [292] = 123, + [293] = 150, + [294] = 119, + [295] = 148, + [296] = 100, + [297] = 117, + [298] = 116, + [299] = 141, + [300] = 104, + [301] = 120, + [302] = 148, + [303] = 135, + [304] = 115, + [305] = 139, + [306] = 114, [307] = 112, - [308] = 113, - [309] = 100, - [310] = 99, - [311] = 132, - [312] = 98, - [313] = 129, - [314] = 127, - [315] = 100, - [316] = 126, - [317] = 125, - [318] = 124, - [319] = 134, - [320] = 107, - [321] = 111, - [322] = 110, - [323] = 93, - [324] = 109, - [325] = 131, - [326] = 94, - [327] = 95, - [328] = 97, - [329] = 115, - [330] = 123, - [331] = 122, - [332] = 103, - [333] = 104, - [334] = 118, - [335] = 96, - [336] = 121, - [337] = 109, - [338] = 120, - [339] = 96, - [340] = 110, - [341] = 104, - [342] = 111, - [343] = 103, - [344] = 112, - [345] = 113, - [346] = 119, - [347] = 117, - [348] = 128, - [349] = 130, - [350] = 97, - [351] = 130, - [352] = 131, - [353] = 98, - [354] = 95, - [355] = 91, - [356] = 101, - [357] = 94, - [358] = 102, - [359] = 139, - [360] = 140, - [361] = 141, - [362] = 142, - [363] = 118, - [364] = 115, - [365] = 116, - [366] = 93, - [367] = 114, - [368] = 108, - [369] = 106, - [370] = 138, - [371] = 142, - [372] = 107, - [373] = 137, - [374] = 95, - [375] = 94, - [376] = 93, - [377] = 102, - [378] = 92, - [379] = 128, - [380] = 101, - [381] = 91, - [382] = 136, - [383] = 134, - [384] = 135, - [385] = 132, - [386] = 99, - [387] = 100, - [388] = 106, - [389] = 108, - [390] = 114, - [391] = 116, - [392] = 117, - [393] = 119, - [394] = 120, - [395] = 121, - [396] = 122, - [397] = 123, - [398] = 124, - [399] = 125, + [308] = 151, + [309] = 108, + [310] = 105, + [311] = 102, + [312] = 99, + [313] = 106, + [314] = 138, + [315] = 113, + [316] = 140, + [317] = 147, + [318] = 137, + [319] = 136, + [320] = 111, + [321] = 121, + [322] = 146, + [323] = 110, + [324] = 152, + [325] = 122, + [326] = 134, + [327] = 117, + [328] = 116, + [329] = 97, + [330] = 124, + [331] = 125, + [332] = 140, + [333] = 126, + [334] = 98, + [335] = 133, + [336] = 127, + [337] = 128, + [338] = 129, + [339] = 130, + [340] = 131, + [341] = 145, + [342] = 132, + [343] = 133, + [344] = 134, + [345] = 136, + [346] = 137, + [347] = 138, + [348] = 139, + [349] = 141, + [350] = 142, + [351] = 143, + [352] = 144, + [353] = 145, + [354] = 132, + [355] = 144, + [356] = 131, + [357] = 143, + [358] = 142, + [359] = 130, + [360] = 120, + [361] = 135, + [362] = 141, + [363] = 152, + [364] = 139, + [365] = 138, + [366] = 137, + [367] = 136, + [368] = 129, + [369] = 128, + [370] = 134, + [371] = 127, + [372] = 126, + [373] = 133, + [374] = 125, + [375] = 124, + [376] = 122, + [377] = 97, + [378] = 98, + [379] = 109, + [380] = 110, + [381] = 132, + [382] = 111, + [383] = 113, + [384] = 131, + [385] = 146, + [386] = 121, + [387] = 130, + [388] = 147, + [389] = 148, + [390] = 109, + [391] = 115, + [392] = 129, + [393] = 128, + [394] = 113, + [395] = 152, + [396] = 121, + [397] = 111, + [398] = 127, + [399] = 110, [400] = 126, - [401] = 127, - [402] = 129, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 148, - [408] = 408, - [409] = 409, - [410] = 149, - [411] = 411, - [412] = 150, - [413] = 143, - [414] = 403, - [415] = 415, - [416] = 411, - [417] = 408, - [418] = 159, - [419] = 151, - [420] = 155, - [421] = 144, - [422] = 157, - [423] = 409, - [424] = 166, - [425] = 169, - [426] = 168, - [427] = 167, - [428] = 403, - [429] = 415, - [430] = 170, - [431] = 165, - [432] = 411, - [433] = 164, - [434] = 161, - [435] = 405, - [436] = 156, - [437] = 406, - [438] = 149, - [439] = 415, - [440] = 170, - [441] = 404, - [442] = 163, - [443] = 409, - [444] = 160, - [445] = 162, - [446] = 160, - [447] = 158, - [448] = 404, - [449] = 404, - [450] = 154, - [451] = 153, - [452] = 148, - [453] = 150, - [454] = 411, - [455] = 415, - [456] = 162, - [457] = 403, - [458] = 408, - [459] = 408, - [460] = 143, - [461] = 415, - [462] = 403, - [463] = 411, - [464] = 147, - [465] = 152, - [466] = 415, - [467] = 146, - [468] = 144, - [469] = 145, - [470] = 411, - [471] = 147, - [472] = 408, - [473] = 409, - [474] = 406, - [475] = 169, - [476] = 145, - [477] = 168, - [478] = 167, - [479] = 238, - [480] = 159, - [481] = 158, - [482] = 146, - [483] = 151, - [484] = 405, - [485] = 406, - [486] = 166, - [487] = 405, - [488] = 409, - [489] = 165, - [490] = 152, - [491] = 164, - [492] = 161, - [493] = 156, - [494] = 405, - [495] = 406, - [496] = 163, - [497] = 406, - [498] = 153, - [499] = 409, - [500] = 403, - [501] = 405, - [502] = 154, - [503] = 404, - [504] = 155, - [505] = 157, - [506] = 408, - [507] = 149, - [508] = 151, - [509] = 238, - [510] = 165, - [511] = 511, - [512] = 162, - [513] = 166, - [514] = 147, - [515] = 156, - [516] = 153, - [517] = 517, - [518] = 169, - [519] = 163, - [520] = 158, - [521] = 157, - [522] = 159, - [523] = 154, - [524] = 143, - [525] = 150, - [526] = 160, - [527] = 148, + [401] = 125, + [402] = 109, + [403] = 99, + [404] = 122, + [405] = 102, + [406] = 106, + [407] = 105, + [408] = 104, + [409] = 106, + [410] = 108, + [411] = 105, + [412] = 112, + [413] = 142, + [414] = 124, + [415] = 101, + [416] = 115, + [417] = 99, + [418] = 98, + [419] = 101, + [420] = 97, + [421] = 108, + [422] = 114, + [423] = 151, + [424] = 150, + [425] = 104, + [426] = 116, + [427] = 112, + [428] = 117, + [429] = 100, + [430] = 123, + [431] = 119, + [432] = 149, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 435, + [438] = 438, + [439] = 439, + [440] = 182, + [441] = 441, + [442] = 184, + [443] = 185, + [444] = 153, + [445] = 164, + [446] = 446, + [447] = 187, + [448] = 176, + [449] = 439, + [450] = 436, + [451] = 451, + [452] = 446, + [453] = 162, + [454] = 454, + [455] = 441, + [456] = 247, + [457] = 156, + [458] = 434, + [459] = 157, + [460] = 454, + [461] = 436, + [462] = 435, + [463] = 186, + [464] = 176, + [465] = 172, + [466] = 438, + [467] = 163, + [468] = 438, + [469] = 179, + [470] = 441, + [471] = 174, + [472] = 446, + [473] = 435, + [474] = 441, + [475] = 438, + [476] = 436, + [477] = 454, + [478] = 441, + [479] = 439, + [480] = 451, + [481] = 435, + [482] = 163, + [483] = 446, + [484] = 436, + [485] = 434, + [486] = 175, + [487] = 454, + [488] = 436, + [489] = 446, + [490] = 454, + [491] = 454, + [492] = 451, + [493] = 451, + [494] = 434, + [495] = 438, + [496] = 171, + [497] = 441, + [498] = 434, + [499] = 446, + [500] = 183, + [501] = 451, + [502] = 188, + [503] = 439, + [504] = 186, + [505] = 189, + [506] = 178, + [507] = 180, + [508] = 177, + [509] = 438, + [510] = 181, + [511] = 435, + [512] = 172, + [513] = 178, + [514] = 155, + [515] = 157, + [516] = 434, + [517] = 156, + [518] = 184, + [519] = 433, + [520] = 153, + [521] = 171, + [522] = 162, + [523] = 433, + [524] = 161, + [525] = 159, + [526] = 158, + [527] = 433, [528] = 155, - [529] = 146, - [530] = 144, - [531] = 145, - [532] = 161, - [533] = 167, - [534] = 168, - [535] = 152, - [536] = 164, - [537] = 537, - [538] = 538, - [539] = 537, - [540] = 538, - [541] = 538, - [542] = 538, - [543] = 538, - [544] = 537, - [545] = 537, - [546] = 537, - [547] = 538, - [548] = 537, - [549] = 537, - [550] = 538, - [551] = 537, - [552] = 538, - [553] = 553, - [554] = 238, - [555] = 238, - [556] = 556, - [557] = 238, - [558] = 238, - [559] = 90, - [560] = 560, - [561] = 560, - [562] = 562, - [563] = 560, - [564] = 560, - [565] = 560, - [566] = 560, - [567] = 560, - [568] = 560, - [569] = 560, - [570] = 560, - [571] = 571, - [572] = 560, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, + [529] = 439, + [530] = 433, + [531] = 451, + [532] = 181, + [533] = 177, + [534] = 180, + [535] = 188, + [536] = 183, + [537] = 439, + [538] = 175, + [539] = 179, + [540] = 187, + [541] = 185, + [542] = 182, + [543] = 161, + [544] = 159, + [545] = 158, + [546] = 174, + [547] = 189, + [548] = 164, + [549] = 184, + [550] = 171, + [551] = 247, + [552] = 176, + [553] = 185, + [554] = 178, + [555] = 161, + [556] = 180, + [557] = 177, + [558] = 189, + [559] = 155, + [560] = 188, + [561] = 174, + [562] = 181, + [563] = 159, + [564] = 183, + [565] = 158, + [566] = 164, + [567] = 179, + [568] = 162, + [569] = 175, + [570] = 570, + [571] = 182, + [572] = 572, + [573] = 172, + [574] = 156, + [575] = 157, + [576] = 186, + [577] = 187, + [578] = 153, [579] = 579, - [580] = 580, - [581] = 581, + [580] = 579, + [581] = 579, [582] = 582, - [583] = 583, - [584] = 584, - [585] = 584, - [586] = 586, - [587] = 587, - [588] = 587, - [589] = 586, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 591, - [594] = 592, - [595] = 591, - [596] = 592, - [597] = 592, - [598] = 591, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 600, - [603] = 603, - [604] = 604, + [583] = 579, + [584] = 582, + [585] = 582, + [586] = 579, + [587] = 582, + [588] = 582, + [589] = 582, + [590] = 582, + [591] = 579, + [592] = 582, + [593] = 579, + [594] = 579, + [595] = 595, + [596] = 247, + [597] = 247, + [598] = 598, + [599] = 90, + [600] = 247, + [601] = 91, + [602] = 92, + [603] = 93, + [604] = 247, [605] = 605, - [606] = 600, - [607] = 600, - [608] = 608, - [609] = 609, - [610] = 609, - [611] = 609, - [612] = 609, - [613] = 613, - [614] = 613, - [615] = 615, - [616] = 601, + [606] = 605, + [607] = 605, + [608] = 605, + [609] = 605, + [610] = 610, + [611] = 605, + [612] = 605, + [613] = 605, + [614] = 605, + [615] = 605, + [616] = 605, [617] = 617, [618] = 618, - [619] = 618, + [619] = 619, [620] = 620, - [621] = 618, - [622] = 618, - [623] = 620, - [624] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, [625] = 625, - [626] = 625, - [627] = 618, + [626] = 626, + [627] = 627, [628] = 628, - [629] = 618, - [630] = 630, - [631] = 618, - [632] = 632, - [633] = 625, - [634] = 634, + [629] = 629, + [630] = 629, + [631] = 631, + [632] = 631, + [633] = 633, + [634] = 633, [635] = 635, [636] = 636, [637] = 637, - [638] = 625, - [639] = 639, - [640] = 625, - [641] = 641, - [642] = 642, - [643] = 625, - [644] = 618, - [645] = 625, - [646] = 625, - [647] = 620, - [648] = 620, + [638] = 636, + [639] = 637, + [640] = 636, + [641] = 636, + [642] = 637, + [643] = 637, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 647, [649] = 649, - [650] = 650, + [650] = 646, [651] = 651, [652] = 652, [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, + [654] = 647, + [655] = 646, + [656] = 647, + [657] = 646, [658] = 658, - [659] = 659, - [660] = 601, - [661] = 655, + [659] = 658, + [660] = 660, + [661] = 653, [662] = 662, [663] = 663, [664] = 664, [665] = 665, [666] = 666, [667] = 667, - [668] = 601, - [669] = 669, + [668] = 668, + [669] = 666, [670] = 670, - [671] = 671, + [671] = 668, [672] = 672, - [673] = 673, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, + [673] = 663, + [674] = 666, + [675] = 668, + [676] = 663, + [677] = 663, [678] = 678, [679] = 679, - [680] = 680, - [681] = 678, - [682] = 682, - [683] = 670, + [680] = 663, + [681] = 663, + [682] = 668, + [683] = 668, [684] = 684, [685] = 685, - [686] = 676, - [687] = 687, + [686] = 666, + [687] = 666, [688] = 688, - [689] = 689, - [690] = 670, - [691] = 691, - [692] = 692, + [689] = 663, + [690] = 668, + [691] = 668, + [692] = 663, [693] = 693, - [694] = 678, - [695] = 676, + [694] = 668, + [695] = 695, [696] = 696, - [697] = 674, + [697] = 697, [698] = 698, [699] = 699, - [700] = 687, - [701] = 675, - [702] = 677, - [703] = 679, - [704] = 678, - [705] = 680, - [706] = 669, - [707] = 670, - [708] = 692, + [700] = 700, + [701] = 653, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 653, + [708] = 708, [709] = 709, - [710] = 682, - [711] = 711, - [712] = 684, - [713] = 692, - [714] = 688, - [715] = 692, - [716] = 696, - [717] = 674, + [710] = 710, + [711] = 697, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, [718] = 718, - [719] = 670, - [720] = 675, - [721] = 677, - [722] = 678, - [723] = 679, - [724] = 698, - [725] = 680, - [726] = 669, - [727] = 682, - [728] = 698, - [729] = 679, - [730] = 674, - [731] = 684, - [732] = 696, - [733] = 688, - [734] = 684, - [735] = 682, - [736] = 669, - [737] = 680, - [738] = 679, - [739] = 677, - [740] = 688, - [741] = 675, - [742] = 677, - [743] = 679, - [744] = 680, - [745] = 669, - [746] = 696, - [747] = 682, - [748] = 674, - [749] = 698, - [750] = 684, - [751] = 688, - [752] = 699, - [753] = 753, - [754] = 677, - [755] = 692, - [756] = 679, - [757] = 687, - [758] = 680, - [759] = 693, - [760] = 669, - [761] = 685, - [762] = 682, - [763] = 691, - [764] = 684, - [765] = 688, - [766] = 766, - [767] = 677, - [768] = 680, - [769] = 669, - [770] = 682, - [771] = 684, - [772] = 696, - [773] = 688, - [774] = 678, - [775] = 696, - [776] = 696, - [777] = 674, - [778] = 698, - [779] = 676, - [780] = 691, - [781] = 678, - [782] = 711, - [783] = 670, - [784] = 698, - [785] = 692, - [786] = 674, - [787] = 698, - [788] = 711, - [789] = 789, - [790] = 711, - [791] = 692, - [792] = 670, - [793] = 687, - [794] = 678, - [795] = 698, - [796] = 691, - [797] = 676, - [798] = 691, - [799] = 676, - [800] = 674, - [801] = 696, - [802] = 688, - [803] = 711, - [804] = 684, - [805] = 692, - [806] = 682, - [807] = 691, - [808] = 676, - [809] = 670, - [810] = 669, - [811] = 676, - [812] = 680, - [813] = 689, - [814] = 711, - [815] = 679, - [816] = 766, - [817] = 689, - [818] = 677, - [819] = 691, - [820] = 691, - [821] = 571, - [822] = 822, - [823] = 822, - [824] = 824, - [825] = 825, - [826] = 822, - [827] = 827, - [828] = 822, - [829] = 822, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 715, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 714, + [731] = 731, + [732] = 732, + [733] = 728, + [734] = 734, + [735] = 735, + [736] = 722, + [737] = 737, + [738] = 734, + [739] = 719, + [740] = 716, + [741] = 720, + [742] = 719, + [743] = 721, + [744] = 715, + [745] = 724, + [746] = 720, + [747] = 725, + [748] = 726, + [749] = 727, + [750] = 729, + [751] = 751, + [752] = 721, + [753] = 728, + [754] = 734, + [755] = 715, + [756] = 724, + [757] = 725, + [758] = 714, + [759] = 735, + [760] = 760, + [761] = 737, + [762] = 735, + [763] = 737, + [764] = 734, + [765] = 729, + [766] = 728, + [767] = 767, + [768] = 722, + [769] = 769, + [770] = 726, + [771] = 727, + [772] = 718, + [773] = 767, + [774] = 727, + [775] = 726, + [776] = 725, + [777] = 724, + [778] = 721, + [779] = 767, + [780] = 780, + [781] = 719, + [782] = 720, + [783] = 767, + [784] = 720, + [785] = 767, + [786] = 721, + [787] = 722, + [788] = 729, + [789] = 737, + [790] = 735, + [791] = 728, + [792] = 718, + [793] = 722, + [794] = 719, + [795] = 720, + [796] = 715, + [797] = 719, + [798] = 721, + [799] = 714, + [800] = 715, + [801] = 724, + [802] = 725, + [803] = 729, + [804] = 751, + [805] = 726, + [806] = 727, + [807] = 714, + [808] = 808, + [809] = 728, + [810] = 718, + [811] = 718, + [812] = 751, + [813] = 722, + [814] = 735, + [815] = 731, + [816] = 724, + [817] = 780, + [818] = 719, + [819] = 819, + [820] = 725, + [821] = 720, + [822] = 721, + [823] = 714, + [824] = 715, + [825] = 729, + [826] = 724, + [827] = 727, + [828] = 725, + [829] = 726, + [830] = 737, + [831] = 808, + [832] = 727, + [833] = 729, + [834] = 714, + [835] = 751, + [836] = 726, + [837] = 725, + [838] = 724, + [839] = 718, [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 553, - [847] = 843, - [848] = 556, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 849, - [853] = 851, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, + [841] = 715, + [842] = 722, + [843] = 721, + [844] = 840, + [845] = 720, + [846] = 737, + [847] = 840, + [848] = 719, + [849] = 726, + [850] = 735, + [851] = 767, + [852] = 727, + [853] = 728, + [854] = 718, + [855] = 735, + [856] = 729, + [857] = 737, [858] = 858, - [859] = 859, - [860] = 851, - [861] = 861, - [862] = 862, - [863] = 863, + [859] = 735, + [860] = 737, + [861] = 728, + [862] = 718, + [863] = 722, [864] = 864, - [865] = 865, - [866] = 866, - [867] = 855, - [868] = 851, + [865] = 714, + [866] = 617, + [867] = 867, + [868] = 868, [869] = 869, - [870] = 870, - [871] = 849, - [872] = 872, - [873] = 851, - [874] = 855, - [875] = 855, - [876] = 854, - [877] = 854, - [878] = 854, - [879] = 849, - [880] = 855, - [881] = 854, + [870] = 868, + [871] = 871, + [872] = 868, + [873] = 868, + [874] = 868, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, [882] = 882, [883] = 883, [884] = 884, - [885] = 849, + [885] = 885, [886] = 886, [887] = 887, [888] = 888, - [889] = 889, - [890] = 845, - [891] = 891, - [892] = 892, + [889] = 598, + [890] = 890, + [891] = 595, + [892] = 890, [893] = 893, [894] = 894, [895] = 895, - [896] = 830, + [896] = 896, [897] = 897, [898] = 898, [899] = 899, - [900] = 900, - [901] = 901, + [900] = 898, + [901] = 897, [902] = 902, - [903] = 825, - [904] = 827, - [905] = 824, - [906] = 830, - [907] = 830, - [908] = 908, - [909] = 830, - [910] = 845, - [911] = 911, - [912] = 911, - [913] = 911, + [903] = 898, + [904] = 897, + [905] = 899, + [906] = 906, + [907] = 906, + [908] = 899, + [909] = 909, + [910] = 898, + [911] = 906, + [912] = 912, + [913] = 897, [914] = 914, - [915] = 914, - [916] = 832, - [917] = 911, - [918] = 831, - [919] = 914, - [920] = 914, - [921] = 914, - [922] = 911, + [915] = 906, + [916] = 916, + [917] = 906, + [918] = 918, + [919] = 898, + [920] = 920, + [921] = 921, + [922] = 897, [923] = 923, [924] = 924, - [925] = 923, + [925] = 925, [926] = 926, - [927] = 923, + [927] = 899, [928] = 928, - [929] = 929, + [929] = 899, [930] = 930, [931] = 931, [932] = 932, [933] = 933, - [934] = 923, - [935] = 923, - [936] = 926, + [934] = 934, + [935] = 935, + [936] = 936, [937] = 937, - [938] = 923, - [939] = 556, + [938] = 938, + [939] = 939, [940] = 940, - [941] = 553, - [942] = 942, + [941] = 941, + [942] = 893, [943] = 943, - [944] = 944, + [944] = 875, [945] = 945, [946] = 946, [947] = 947, - [948] = 948, - [949] = 830, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, + [948] = 871, + [949] = 875, + [950] = 867, + [951] = 869, + [952] = 875, + [953] = 893, [954] = 954, - [955] = 955, - [956] = 956, - [957] = 942, - [958] = 901, + [955] = 875, + [956] = 876, + [957] = 957, + [958] = 877, [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 940, - [964] = 897, - [965] = 965, - [966] = 966, - [967] = 967, + [960] = 957, + [961] = 959, + [962] = 957, + [963] = 957, + [964] = 959, + [965] = 959, + [966] = 959, + [967] = 957, [968] = 968, [969] = 969, - [970] = 895, - [971] = 954, - [972] = 953, - [973] = 952, + [970] = 970, + [971] = 969, + [972] = 972, + [973] = 973, [974] = 974, - [975] = 951, - [976] = 948, - [977] = 947, - [978] = 946, - [979] = 945, - [980] = 944, - [981] = 892, - [982] = 943, - [983] = 983, + [975] = 975, + [976] = 969, + [977] = 977, + [978] = 969, + [979] = 969, + [980] = 970, + [981] = 981, + [982] = 982, + [983] = 969, [984] = 984, [985] = 985, [986] = 986, - [987] = 943, - [988] = 944, - [989] = 989, - [990] = 946, + [987] = 987, + [988] = 988, + [989] = 595, + [990] = 990, [991] = 991, - [992] = 992, - [993] = 951, - [994] = 952, - [995] = 953, - [996] = 902, - [997] = 954, + [992] = 598, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 875, [998] = 998, - [999] = 945, + [999] = 999, [1000] = 1000, - [1001] = 889, - [1002] = 887, - [1003] = 983, - [1004] = 942, - [1005] = 947, + [1001] = 1001, + [1002] = 1002, + [1003] = 937, + [1004] = 1004, + [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1009, - [1010] = 1010, + [1009] = 999, + [1010] = 932, [1011] = 1011, [1012] = 1012, - [1013] = 1013, - [1014] = 1014, + [1013] = 993, + [1014] = 984, [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 891, - [1019] = 1019, + [1016] = 933, + [1017] = 994, + [1018] = 995, + [1019] = 998, [1020] = 1020, - [1021] = 899, + [1021] = 947, [1022] = 1022, - [1023] = 1023, - [1024] = 1024, - [1025] = 1025, - [1026] = 1026, + [1023] = 996, + [1024] = 986, + [1025] = 985, + [1026] = 987, [1027] = 1027, - [1028] = 1028, + [1028] = 988, [1029] = 1029, [1030] = 1030, - [1031] = 1031, - [1032] = 940, - [1033] = 948, + [1031] = 991, + [1032] = 1032, + [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 900, + [1039] = 999, [1040] = 1040, - [1041] = 1041, - [1042] = 1042, - [1043] = 835, + [1041] = 995, + [1042] = 940, + [1043] = 946, [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 858, - [1048] = 1048, - [1049] = 1049, - [1050] = 856, + [1045] = 994, + [1046] = 984, + [1047] = 993, + [1048] = 991, + [1049] = 988, + [1050] = 1050, [1051] = 1051, - [1052] = 841, - [1053] = 861, - [1054] = 834, - [1055] = 883, - [1056] = 838, - [1057] = 865, - [1058] = 864, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 987, + [1056] = 1056, + [1057] = 986, + [1058] = 1058, [1059] = 1059, - [1060] = 859, + [1060] = 998, [1061] = 1061, [1062] = 1062, - [1063] = 833, - [1064] = 866, - [1065] = 837, - [1066] = 166, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, [1067] = 1067, - [1068] = 157, + [1068] = 1068, [1069] = 1069, - [1070] = 155, - [1071] = 870, - [1072] = 872, - [1073] = 884, - [1074] = 843, - [1075] = 882, - [1076] = 842, - [1077] = 857, - [1078] = 840, - [1079] = 886, - [1080] = 850, - [1081] = 839, + [1070] = 1070, + [1071] = 939, + [1072] = 943, + [1073] = 996, + [1074] = 1074, + [1075] = 1075, + [1076] = 934, + [1077] = 985, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 938, [1082] = 1082, - [1083] = 151, - [1084] = 869, - [1085] = 159, - [1086] = 149, - [1087] = 836, - [1088] = 983, + [1083] = 1083, + [1084] = 1084, + [1085] = 1020, + [1086] = 1086, + [1087] = 1087, + [1088] = 912, [1089] = 1089, - [1090] = 1090, - [1091] = 1089, - [1092] = 1089, - [1093] = 1089, - [1094] = 1089, - [1095] = 159, - [1096] = 891, - [1097] = 1059, - [1098] = 953, - [1099] = 954, - [1100] = 902, - [1101] = 940, - [1102] = 942, - [1103] = 155, - [1104] = 1104, - [1105] = 1044, - [1106] = 1082, - [1107] = 1061, - [1108] = 1062, - [1109] = 1045, - [1110] = 1067, - [1111] = 1069, - [1112] = 1112, - [1113] = 1113, - [1114] = 149, - [1115] = 1048, - [1116] = 1051, - [1117] = 952, - [1118] = 151, - [1119] = 945, - [1120] = 951, + [1090] = 156, + [1091] = 157, + [1092] = 178, + [1093] = 171, + [1094] = 930, + [1095] = 924, + [1096] = 902, + [1097] = 885, + [1098] = 886, + [1099] = 895, + [1100] = 1100, + [1101] = 1101, + [1102] = 890, + [1103] = 1103, + [1104] = 916, + [1105] = 882, + [1106] = 883, + [1107] = 923, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 153, + [1112] = 928, + [1113] = 184, + [1114] = 1114, + [1115] = 914, + [1116] = 1020, + [1117] = 894, + [1118] = 884, + [1119] = 1119, + [1120] = 896, [1121] = 1121, - [1122] = 1122, - [1123] = 1049, - [1124] = 1046, - [1125] = 157, - [1126] = 166, - [1127] = 887, - [1128] = 943, - [1129] = 889, - [1130] = 899, - [1131] = 944, - [1132] = 900, - [1133] = 948, - [1134] = 947, - [1135] = 946, - [1136] = 831, - [1137] = 832, - [1138] = 983, - [1139] = 1051, - [1140] = 1061, - [1141] = 157, - [1142] = 155, - [1143] = 155, - [1144] = 1046, - [1145] = 1069, - [1146] = 1067, - [1147] = 1046, - [1148] = 1048, - [1149] = 1049, - [1150] = 1048, - [1151] = 1062, - [1152] = 1152, - [1153] = 1153, - [1154] = 149, - [1155] = 159, - [1156] = 151, - [1157] = 1152, - [1158] = 1069, - [1159] = 1059, - [1160] = 157, - [1161] = 166, - [1162] = 1082, - [1163] = 1163, - [1164] = 1049, - [1165] = 1152, - [1166] = 1166, - [1167] = 1061, - [1168] = 1059, - [1169] = 1152, - [1170] = 1044, - [1171] = 1152, - [1172] = 1045, - [1173] = 151, - [1174] = 159, - [1175] = 1051, - [1176] = 1067, - [1177] = 166, - [1178] = 1045, - [1179] = 1044, - [1180] = 1062, - [1181] = 1082, - [1182] = 149, - [1183] = 141, - [1184] = 139, - [1185] = 98, - [1186] = 91, - [1187] = 101, - [1188] = 102, - [1189] = 118, - [1190] = 142, - [1191] = 115, - [1192] = 140, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 944, - [1203] = 945, - [1204] = 946, - [1205] = 947, - [1206] = 948, - [1207] = 953, - [1208] = 942, - [1209] = 943, - [1210] = 940, - [1211] = 952, - [1212] = 951, - [1213] = 954, - [1214] = 951, - [1215] = 944, - [1216] = 1216, - [1217] = 954, - [1218] = 946, - [1219] = 91, - [1220] = 953, - [1221] = 1221, - [1222] = 940, - [1223] = 945, - [1224] = 943, - [1225] = 952, - [1226] = 98, - [1227] = 139, - [1228] = 140, - [1229] = 947, - [1230] = 1221, - [1231] = 101, - [1232] = 1232, - [1233] = 1233, - [1234] = 1221, - [1235] = 115, - [1236] = 118, - [1237] = 102, - [1238] = 948, - [1239] = 142, - [1240] = 1221, - [1241] = 1221, - [1242] = 942, - [1243] = 141, - [1244] = 946, + [1122] = 880, + [1123] = 887, + [1124] = 920, + [1125] = 1125, + [1126] = 909, + [1127] = 921, + [1128] = 879, + [1129] = 926, + [1130] = 881, + [1131] = 878, + [1132] = 1132, + [1133] = 925, + [1134] = 1134, + [1135] = 1135, + [1136] = 1134, + [1137] = 1134, + [1138] = 1134, + [1139] = 1134, + [1140] = 995, + [1141] = 934, + [1142] = 986, + [1143] = 987, + [1144] = 1103, + [1145] = 1100, + [1146] = 1146, + [1147] = 1110, + [1148] = 1089, + [1149] = 1109, + [1150] = 1114, + [1151] = 988, + [1152] = 1119, + [1153] = 991, + [1154] = 1154, + [1155] = 993, + [1156] = 984, + [1157] = 994, + [1158] = 985, + [1159] = 1108, + [1160] = 1125, + [1161] = 1101, + [1162] = 998, + [1163] = 1132, + [1164] = 1164, + [1165] = 1165, + [1166] = 938, + [1167] = 999, + [1168] = 178, + [1169] = 943, + [1170] = 939, + [1171] = 1171, + [1172] = 946, + [1173] = 940, + [1174] = 157, + [1175] = 156, + [1176] = 184, + [1177] = 153, + [1178] = 1121, + [1179] = 996, + [1180] = 171, + [1181] = 877, + [1182] = 876, + [1183] = 1020, + [1184] = 1132, + [1185] = 1109, + [1186] = 1110, + [1187] = 1108, + [1188] = 1101, + [1189] = 1100, + [1190] = 1108, + [1191] = 1114, + [1192] = 1192, + [1193] = 171, + [1194] = 1101, + [1195] = 184, + [1196] = 156, + [1197] = 1103, + [1198] = 1110, + [1199] = 1100, + [1200] = 1089, + [1201] = 1089, + [1202] = 1114, + [1203] = 1203, + [1204] = 1203, + [1205] = 1109, + [1206] = 1121, + [1207] = 157, + [1208] = 1203, + [1209] = 157, + [1210] = 1103, + [1211] = 1119, + [1212] = 1212, + [1213] = 1203, + [1214] = 156, + [1215] = 178, + [1216] = 153, + [1217] = 171, + [1218] = 1121, + [1219] = 178, + [1220] = 1125, + [1221] = 1132, + [1222] = 1119, + [1223] = 1223, + [1224] = 153, + [1225] = 184, + [1226] = 1125, + [1227] = 1203, + [1228] = 97, + [1229] = 98, + [1230] = 147, + [1231] = 146, + [1232] = 148, + [1233] = 113, + [1234] = 140, + [1235] = 111, + [1236] = 110, + [1237] = 109, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, [1245] = 1245, - [1246] = 1246, - [1247] = 942, - [1248] = 1248, - [1249] = 940, - [1250] = 951, - [1251] = 952, - [1252] = 954, - [1253] = 953, - [1254] = 948, + [1246] = 996, + [1247] = 998, + [1248] = 985, + [1249] = 986, + [1250] = 987, + [1251] = 988, + [1252] = 991, + [1253] = 993, + [1254] = 984, [1255] = 1255, - [1256] = 947, - [1257] = 943, - [1258] = 1201, - [1259] = 944, - [1260] = 945, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, + [1256] = 994, + [1257] = 995, + [1258] = 999, + [1259] = 986, + [1260] = 995, + [1261] = 97, + [1262] = 110, + [1263] = 111, + [1264] = 999, + [1265] = 994, + [1266] = 984, + [1267] = 996, + [1268] = 991, + [1269] = 109, + [1270] = 993, + [1271] = 998, [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1277, - [1280] = 1278, - [1281] = 1281, - [1282] = 1276, - [1283] = 1275, - [1284] = 953, + [1273] = 113, + [1274] = 1272, + [1275] = 987, + [1276] = 1272, + [1277] = 985, + [1278] = 988, + [1279] = 146, + [1280] = 1272, + [1281] = 147, + [1282] = 98, + [1283] = 148, + [1284] = 1284, [1285] = 1285, - [1286] = 1286, - [1287] = 1287, + [1286] = 140, + [1287] = 1272, [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 954, - [1293] = 1293, - [1294] = 1285, - [1295] = 1295, + [1289] = 984, + [1290] = 991, + [1291] = 999, + [1292] = 1255, + [1293] = 996, + [1294] = 1294, + [1295] = 985, [1296] = 1296, - [1297] = 1295, - [1298] = 1298, - [1299] = 1299, + [1297] = 1297, + [1298] = 993, + [1299] = 994, [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1296, - [1305] = 1296, + [1301] = 995, + [1302] = 998, + [1303] = 986, + [1304] = 987, + [1305] = 988, [1306] = 1306, [1307] = 1307, - [1308] = 952, + [1308] = 1308, [1309] = 1309, [1310] = 1310, - [1311] = 1286, - [1312] = 1285, - [1313] = 1286, - [1314] = 951, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, [1315] = 1315, [1316] = 1316, [1317] = 1317, [1318] = 1318, - [1319] = 948, - [1320] = 1296, - [1321] = 947, - [1322] = 946, - [1323] = 945, - [1324] = 1201, - [1325] = 1298, - [1326] = 1306, - [1327] = 1288, - [1328] = 1328, - [1329] = 1298, - [1330] = 944, - [1331] = 1296, - [1332] = 1296, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1323, + [1325] = 1320, + [1326] = 1326, + [1327] = 1322, + [1328] = 1321, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, [1333] = 1333, - [1334] = 1317, + [1334] = 1330, [1335] = 1335, - [1336] = 1287, - [1337] = 943, - [1338] = 1296, - [1339] = 1298, - [1340] = 1287, - [1341] = 1341, - [1342] = 1286, - [1343] = 1287, - [1344] = 1298, - [1345] = 942, - [1346] = 1287, - [1347] = 1285, - [1348] = 1286, - [1349] = 1285, - [1350] = 1288, - [1351] = 1351, - [1352] = 940, - [1353] = 1296, + [1336] = 1336, + [1337] = 1337, + [1338] = 1330, + [1339] = 1337, + [1340] = 1332, + [1341] = 1330, + [1342] = 1342, + [1343] = 985, + [1344] = 1337, + [1345] = 998, + [1346] = 986, + [1347] = 1337, + [1348] = 987, + [1349] = 1349, + [1350] = 988, + [1351] = 991, + [1352] = 1330, + [1353] = 993, [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1357, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, + [1355] = 984, + [1356] = 994, + [1357] = 995, + [1358] = 1337, + [1359] = 1349, + [1360] = 999, + [1361] = 1349, + [1362] = 996, + [1363] = 1349, + [1364] = 1333, [1365] = 1365, - [1366] = 1366, - [1367] = 1358, + [1366] = 1255, + [1367] = 1331, [1368] = 1368, [1369] = 1369, - [1370] = 1357, - [1371] = 1357, + [1370] = 1333, + [1371] = 1371, [1372] = 1372, - [1373] = 1373, - [1374] = 1372, + [1373] = 1368, + [1374] = 1374, [1375] = 1375, [1376] = 1376, - [1377] = 1357, - [1378] = 1378, - [1379] = 1379, + [1377] = 1377, + [1378] = 1349, + [1379] = 1349, [1380] = 1380, [1381] = 1381, - [1382] = 1357, - [1383] = 908, - [1384] = 1384, - [1385] = 1373, - [1386] = 1113, - [1387] = 1387, - [1388] = 1388, - [1389] = 1090, - [1390] = 1153, - [1391] = 1163, - [1392] = 1166, - [1393] = 1393, + [1382] = 1382, + [1383] = 1333, + [1384] = 1381, + [1385] = 1385, + [1386] = 1349, + [1387] = 1376, + [1388] = 1381, + [1389] = 1333, + [1390] = 1390, + [1391] = 1381, + [1392] = 1349, + [1393] = 1376, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1397, + [1397] = 1381, [1398] = 1398, [1399] = 1399, [1400] = 1400, [1401] = 1401, [1402] = 1402, - [1403] = 1006, + [1403] = 1403, [1404] = 1404, - [1405] = 1401, + [1405] = 1405, [1406] = 1406, [1407] = 1407, - [1408] = 1036, - [1409] = 1401, - [1410] = 1401, + [1408] = 1403, + [1409] = 1409, + [1410] = 1410, [1411] = 1411, - [1412] = 1401, - [1413] = 1413, - [1414] = 1402, + [1412] = 1412, + [1413] = 1403, + [1414] = 1406, [1415] = 1415, - [1416] = 1416, + [1416] = 1399, [1417] = 1417, [1418] = 1418, - [1419] = 1418, - [1420] = 1416, - [1421] = 1416, - [1422] = 1416, - [1423] = 1417, - [1424] = 1415, - [1425] = 1416, - [1426] = 1416, - [1427] = 1415, + [1419] = 1403, + [1420] = 1420, + [1421] = 954, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1404, + [1426] = 1403, + [1427] = 1403, [1428] = 1428, - [1429] = 1416, - [1430] = 1417, - [1431] = 1417, - [1432] = 1417, - [1433] = 1418, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1437, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1135, + [1434] = 1154, + [1435] = 1212, + [1436] = 1192, + [1437] = 1223, + [1438] = 1438, [1439] = 1439, [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1437, + [1444] = 1444, [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 1436, + [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1446, + [1451] = 1445, [1452] = 1452, - [1453] = 1453, - [1454] = 1436, - [1455] = 1455, - [1456] = 1437, - [1457] = 1457, - [1458] = 1458, - [1459] = 1436, + [1453] = 1445, + [1454] = 1445, + [1455] = 1059, + [1456] = 1456, + [1457] = 1445, + [1458] = 1084, + [1459] = 1459, [1460] = 1460, - [1461] = 1461, - [1462] = 886, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, + [1461] = 1459, + [1462] = 1462, + [1463] = 1459, + [1464] = 1460, + [1465] = 1462, [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 1458, - [1477] = 1436, - [1478] = 1434, + [1467] = 1459, + [1468] = 1459, + [1469] = 1466, + [1470] = 1466, + [1471] = 1446, + [1472] = 1466, + [1473] = 1459, + [1474] = 1462, + [1475] = 1460, + [1476] = 1466, + [1477] = 1477, + [1478] = 1459, [1479] = 1479, [1480] = 1480, - [1481] = 1479, + [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1465, + [1484] = 1484, [1485] = 1485, [1486] = 1486, - [1487] = 1482, + [1487] = 1487, [1488] = 1488, - [1489] = 1449, - [1490] = 1483, + [1489] = 1489, + [1490] = 1490, [1491] = 1491, - [1492] = 1491, - [1493] = 1488, - [1494] = 1486, - [1495] = 1485, - [1496] = 1496, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1482, [1497] = 1497, - [1498] = 1036, - [1499] = 1496, - [1500] = 1500, - [1501] = 1496, - [1502] = 886, - [1503] = 1503, - [1504] = 1000, - [1505] = 1006, - [1506] = 1496, - [1507] = 1025, - [1508] = 1022, - [1509] = 1273, - [1510] = 1271, - [1511] = 1267, - [1512] = 1497, + [1498] = 1498, + [1499] = 1482, + [1500] = 1497, + [1501] = 1501, + [1502] = 1502, + [1503] = 912, + [1504] = 1504, + [1505] = 1505, + [1506] = 1483, + [1507] = 1480, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, [1513] = 1513, - [1514] = 1038, - [1515] = 1014, - [1516] = 1450, - [1517] = 989, - [1518] = 1027, - [1519] = 1503, - [1520] = 1496, - [1521] = 1503, - [1522] = 1522, - [1523] = 1497, - [1524] = 1471, - [1525] = 1470, - [1526] = 1469, - [1527] = 1468, - [1528] = 1467, - [1529] = 1466, - [1530] = 1435, - [1531] = 1264, - [1532] = 1464, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1514, + [1518] = 1518, + [1519] = 1508, + [1520] = 1515, + [1521] = 1482, + [1522] = 1482, + [1523] = 1509, + [1524] = 1510, + [1525] = 1497, + [1526] = 1497, + [1527] = 1479, + [1528] = 1528, + [1529] = 1511, + [1530] = 1512, + [1531] = 1531, + [1532] = 1532, [1533] = 1533, [1534] = 1534, - [1535] = 1463, - [1536] = 1461, - [1537] = 1460, - [1538] = 1538, + [1535] = 1494, + [1536] = 1536, + [1537] = 1537, + [1538] = 1513, [1539] = 1539, - [1540] = 1017, - [1541] = 1497, + [1540] = 1540, + [1541] = 1541, [1542] = 1542, - [1543] = 1497, - [1544] = 1503, - [1545] = 1522, - [1546] = 1474, - [1547] = 1475, - [1548] = 1548, + [1543] = 1504, + [1544] = 1307, + [1545] = 1068, + [1546] = 1484, + [1547] = 1547, + [1548] = 1070, [1549] = 1549, - [1550] = 1549, - [1551] = 1549, + [1550] = 1079, + [1551] = 1080, [1552] = 1552, - [1553] = 1553, - [1554] = 1549, - [1555] = 1549, - [1556] = 1090, - [1557] = 1557, - [1558] = 1557, - [1559] = 1559, - [1560] = 1557, - [1561] = 1559, - [1562] = 1559, - [1563] = 1559, - [1564] = 1557, - [1565] = 1559, - [1566] = 1557, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, + [1553] = 1502, + [1554] = 1554, + [1555] = 1547, + [1556] = 1087, + [1557] = 1086, + [1558] = 1306, + [1559] = 1554, + [1560] = 1560, + [1561] = 1084, + [1562] = 1560, + [1563] = 1505, + [1564] = 1547, + [1565] = 1501, + [1566] = 1566, + [1567] = 1492, + [1568] = 1547, + [1569] = 1554, + [1570] = 1554, [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1572, - [1575] = 1575, - [1576] = 1572, - [1577] = 1572, - [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1581, - [1582] = 1582, + [1572] = 1491, + [1573] = 1554, + [1574] = 1552, + [1575] = 1560, + [1576] = 1539, + [1577] = 1547, + [1578] = 1540, + [1579] = 1481, + [1580] = 1490, + [1581] = 912, + [1582] = 1489, [1583] = 1583, - [1584] = 1584, - [1585] = 1583, - [1586] = 1586, + [1584] = 1488, + [1585] = 1487, + [1586] = 1309, [1587] = 1587, - [1588] = 1588, - [1589] = 1589, - [1590] = 1590, - [1591] = 1584, - [1592] = 1583, + [1588] = 1038, + [1589] = 1059, + [1590] = 1311, + [1591] = 1560, + [1592] = 1036, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1583, - [1597] = 1583, - [1598] = 1583, - [1599] = 1584, - [1600] = 1600, - [1601] = 1584, - [1602] = 1602, - [1603] = 1583, - [1604] = 1584, - [1605] = 1605, - [1606] = 1606, - [1607] = 1607, - [1608] = 1608, - [1609] = 1607, - [1610] = 1610, - [1611] = 1611, + [1596] = 1593, + [1597] = 1593, + [1598] = 1598, + [1599] = 1593, + [1600] = 1593, + [1601] = 1601, + [1602] = 1601, + [1603] = 1603, + [1604] = 1135, + [1605] = 1603, + [1606] = 1601, + [1607] = 1603, + [1608] = 1601, + [1609] = 1603, + [1610] = 1603, + [1611] = 1601, [1612] = 1612, [1613] = 1613, [1614] = 1614, [1615] = 1615, [1616] = 1616, [1617] = 1617, - [1618] = 1607, + [1618] = 1618, [1619] = 1619, - [1620] = 1607, - [1621] = 1607, - [1622] = 1622, - [1623] = 1623, - [1624] = 1624, + [1620] = 1620, + [1621] = 1621, + [1622] = 1620, + [1623] = 1620, + [1624] = 1620, [1625] = 1625, [1626] = 1626, [1627] = 1627, @@ -4798,97 +4835,97 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1629] = 1629, [1630] = 1630, [1631] = 1631, - [1632] = 1632, + [1632] = 1629, [1633] = 1633, - [1634] = 1632, - [1635] = 1635, + [1634] = 1634, + [1635] = 1629, [1636] = 1636, [1637] = 1637, - [1638] = 1638, - [1639] = 1632, - [1640] = 1632, - [1641] = 1641, + [1638] = 1628, + [1639] = 1628, + [1640] = 1629, + [1641] = 1628, [1642] = 1642, - [1643] = 1643, - [1644] = 1644, + [1643] = 1628, + [1644] = 1629, [1645] = 1645, - [1646] = 1632, - [1647] = 1647, + [1646] = 1629, + [1647] = 1629, [1648] = 1648, [1649] = 1649, [1650] = 1650, [1651] = 1651, - [1652] = 1650, + [1652] = 1652, [1653] = 1653, [1654] = 1654, [1655] = 1655, [1656] = 1656, [1657] = 1657, - [1658] = 1650, + [1658] = 1658, [1659] = 1659, - [1660] = 1649, - [1661] = 1650, - [1662] = 1649, - [1663] = 1654, - [1664] = 1654, - [1665] = 1649, - [1666] = 1650, - [1667] = 1654, - [1668] = 1653, - [1669] = 1654, - [1670] = 1670, - [1671] = 1649, - [1672] = 1657, + [1660] = 1660, + [1661] = 1655, + [1662] = 1655, + [1663] = 1663, + [1664] = 1664, + [1665] = 1655, + [1666] = 1666, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 1655, + [1671] = 1671, + [1672] = 1672, [1673] = 1673, [1674] = 1674, [1675] = 1675, [1676] = 1676, [1677] = 1677, - [1678] = 1673, + [1678] = 1678, [1679] = 1679, [1680] = 1680, - [1681] = 1681, + [1681] = 1679, [1682] = 1682, [1683] = 1683, [1684] = 1684, - [1685] = 1685, + [1685] = 1679, [1686] = 1686, - [1687] = 1680, + [1687] = 1679, [1688] = 1688, - [1689] = 1673, - [1690] = 1685, - [1691] = 1680, - [1692] = 1692, - [1693] = 1685, - [1694] = 1685, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 1679, + [1693] = 1693, + [1694] = 1694, [1695] = 1695, [1696] = 1696, - [1697] = 1685, + [1697] = 1695, [1698] = 1698, - [1699] = 1680, + [1699] = 1695, [1700] = 1700, - [1701] = 1701, + [1701] = 1694, [1702] = 1702, [1703] = 1703, - [1704] = 1673, - [1705] = 1705, + [1704] = 1702, + [1705] = 1695, [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1673, - [1710] = 1710, - [1711] = 1680, - [1712] = 1712, - [1713] = 1713, + [1707] = 1695, + [1708] = 1702, + [1709] = 1694, + [1710] = 1696, + [1711] = 1702, + [1712] = 1694, + [1713] = 1694, [1714] = 1714, - [1715] = 1715, - [1716] = 1716, + [1715] = 1703, + [1716] = 1702, [1717] = 1717, [1718] = 1718, [1719] = 1719, [1720] = 1720, [1721] = 1721, - [1722] = 1722, + [1722] = 1720, [1723] = 1723, [1724] = 1724, [1725] = 1725, @@ -4900,695 +4937,758 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1731] = 1731, [1732] = 1732, [1733] = 1733, - [1734] = 1734, + [1734] = 1720, [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1676, + [1736] = 1720, + [1737] = 1725, + [1738] = 1721, [1739] = 1739, [1740] = 1740, [1741] = 1741, - [1742] = 1742, + [1742] = 1725, [1743] = 1743, [1744] = 1744, - [1745] = 1740, - [1746] = 1746, - [1747] = 1740, - [1748] = 1746, - [1749] = 1749, + [1745] = 1745, + [1746] = 1725, + [1747] = 1721, + [1748] = 1748, + [1749] = 1721, [1750] = 1750, [1751] = 1751, - [1752] = 1740, - [1753] = 1753, - [1754] = 1753, - [1755] = 1755, - [1756] = 1753, - [1757] = 1753, + [1752] = 1721, + [1753] = 1720, + [1754] = 1754, + [1755] = 1725, + [1756] = 1756, + [1757] = 1757, [1758] = 1758, - [1759] = 1692, - [1760] = 1753, + [1759] = 1759, + [1760] = 1760, [1761] = 1761, [1762] = 1762, - [1763] = 1753, + [1763] = 1763, [1764] = 1764, [1765] = 1765, - [1766] = 1677, - [1767] = 1740, + [1766] = 1766, + [1767] = 1767, [1768] = 1768, - [1769] = 1753, + [1769] = 1769, [1770] = 1770, [1771] = 1771, - [1772] = 1740, + [1772] = 1772, [1773] = 1773, [1774] = 1774, - [1775] = 1749, + [1775] = 1775, [1776] = 1776, [1777] = 1777, [1778] = 1778, [1779] = 1779, [1780] = 1780, [1781] = 1781, - [1782] = 1740, + [1782] = 1782, [1783] = 1783, [1784] = 1784, [1785] = 1785, - [1786] = 1786, + [1786] = 1783, [1787] = 1787, - [1788] = 1788, + [1788] = 1783, [1789] = 1789, - [1790] = 1790, + [1790] = 1785, [1791] = 1791, - [1792] = 1792, + [1792] = 1783, [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, + [1794] = 1785, + [1795] = 1741, + [1796] = 1739, [1797] = 1797, [1798] = 1798, [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1735, + [1800] = 1799, + [1801] = 1785, + [1802] = 1802, [1803] = 1803, - [1804] = 1804, + [1804] = 1783, [1805] = 1805, - [1806] = 1806, + [1806] = 1750, [1807] = 1807, - [1808] = 1807, - [1809] = 1804, - [1810] = 1810, + [1808] = 1808, + [1809] = 1809, + [1810] = 1783, [1811] = 1811, [1812] = 1812, - [1813] = 1813, - [1814] = 1813, + [1813] = 1785, + [1814] = 1814, [1815] = 1815, [1816] = 1816, [1817] = 1817, - [1818] = 1817, + [1818] = 1818, [1819] = 1819, [1820] = 1820, - [1821] = 1821, - [1822] = 1822, + [1821] = 1785, + [1822] = 1785, [1823] = 1823, [1824] = 1824, - [1825] = 1820, - [1826] = 1807, - [1827] = 1827, - [1828] = 1807, - [1829] = 1777, + [1825] = 1825, + [1826] = 1814, + [1827] = 1783, + [1828] = 1828, + [1829] = 1829, [1830] = 1830, - [1831] = 1816, + [1831] = 1831, [1832] = 1832, [1833] = 1833, - [1834] = 1817, - [1835] = 1804, + [1834] = 1834, + [1835] = 1835, [1836] = 1836, - [1837] = 1816, + [1837] = 1837, [1838] = 1838, - [1839] = 1820, - [1840] = 1807, + [1839] = 1839, + [1840] = 1840, [1841] = 1841, - [1842] = 1805, - [1843] = 1817, + [1842] = 1759, + [1843] = 1843, [1844] = 1844, - [1845] = 1816, + [1845] = 1845, [1846] = 1846, - [1847] = 1807, + [1847] = 1847, [1848] = 1848, - [1849] = 1820, - [1850] = 1850, - [1851] = 1813, + [1849] = 1849, + [1850] = 1849, + [1851] = 1851, [1852] = 1852, - [1853] = 1817, - [1854] = 1854, - [1855] = 1813, - [1856] = 1805, - [1857] = 1821, - [1858] = 1820, - [1859] = 1821, - [1860] = 1819, + [1853] = 1853, + [1854] = 1849, + [1855] = 1855, + [1856] = 1856, + [1857] = 1857, + [1858] = 1855, + [1859] = 1859, + [1860] = 1855, [1861] = 1861, - [1862] = 1819, - [1863] = 1813, - [1864] = 1864, + [1862] = 1862, + [1863] = 1853, + [1864] = 1861, [1865] = 1865, - [1866] = 1807, - [1867] = 1867, - [1868] = 1868, - [1869] = 1807, - [1870] = 1805, - [1871] = 1821, - [1872] = 1819, - [1873] = 1807, - [1874] = 1816, - [1875] = 1875, - [1876] = 1805, - [1877] = 1804, - [1878] = 1817, + [1866] = 1866, + [1867] = 1853, + [1868] = 1853, + [1869] = 1869, + [1870] = 1870, + [1871] = 1871, + [1872] = 1872, + [1873] = 1873, + [1874] = 1874, + [1875] = 1873, + [1876] = 1876, + [1877] = 1877, + [1878] = 1853, [1879] = 1879, - [1880] = 1880, - [1881] = 1881, + [1880] = 1859, + [1881] = 1872, [1882] = 1882, - [1883] = 1882, - [1884] = 1884, + [1883] = 1879, + [1884] = 1853, [1885] = 1885, [1886] = 1886, - [1887] = 1887, + [1887] = 1855, [1888] = 1888, - [1889] = 1882, - [1890] = 1881, - [1891] = 1886, - [1892] = 1892, + [1889] = 1859, + [1890] = 1890, + [1891] = 1861, + [1892] = 1853, [1893] = 1893, [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1885, - [1904] = 1904, - [1905] = 1905, - [1906] = 1879, - [1907] = 1902, - [1908] = 1902, - [1909] = 1909, - [1910] = 1899, + [1895] = 1857, + [1896] = 1879, + [1897] = 1853, + [1898] = 1853, + [1899] = 1857, + [1900] = 1879, + [1901] = 1861, + [1902] = 1857, + [1903] = 1855, + [1904] = 1873, + [1905] = 1872, + [1906] = 1859, + [1907] = 1907, + [1908] = 1816, + [1909] = 1849, + [1910] = 1910, [1911] = 1911, - [1912] = 1885, - [1913] = 1880, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, + [1912] = 1873, + [1913] = 1913, + [1914] = 1859, + [1915] = 1872, + [1916] = 1849, [1917] = 1917, - [1918] = 1879, - [1919] = 1919, - [1920] = 1885, - [1921] = 1902, - [1922] = 1879, - [1923] = 1899, + [1918] = 1918, + [1919] = 1861, + [1920] = 1920, + [1921] = 1921, + [1922] = 1857, + [1923] = 1855, [1924] = 1924, - [1925] = 1924, + [1925] = 1925, [1926] = 1926, - [1927] = 1900, + [1927] = 1927, [1928] = 1928, - [1929] = 1896, - [1930] = 1882, + [1929] = 1929, + [1930] = 1930, [1931] = 1931, [1932] = 1932, [1933] = 1933, [1934] = 1934, - [1935] = 1899, + [1935] = 1935, [1936] = 1936, - [1937] = 1892, + [1937] = 1937, [1938] = 1938, - [1939] = 1915, - [1940] = 1881, - [1941] = 1881, - [1942] = 1888, - [1943] = 1892, - [1944] = 1885, - [1945] = 1902, - [1946] = 1879, - [1947] = 1882, - [1948] = 1899, - [1949] = 1900, - [1950] = 1892, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1930, + [1943] = 1924, + [1944] = 1944, + [1945] = 1931, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, + [1950] = 1950, [1951] = 1951, [1952] = 1952, - [1953] = 1953, - [1954] = 1892, + [1953] = 1750, + [1954] = 1954, [1955] = 1955, - [1956] = 1956, - [1957] = 1884, + [1956] = 1937, + [1957] = 1924, [1958] = 1958, - [1959] = 1900, - [1960] = 1881, - [1961] = 1882, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, [1962] = 1962, - [1963] = 1924, - [1964] = 1900, + [1963] = 1963, + [1964] = 1925, [1965] = 1965, [1966] = 1966, [1967] = 1967, [1968] = 1968, - [1969] = 1896, + [1969] = 1966, [1970] = 1970, [1971] = 1971, - [1972] = 1896, - [1973] = 1677, - [1974] = 1974, + [1972] = 1963, + [1973] = 1959, + [1974] = 1960, [1975] = 1975, - [1976] = 1879, - [1977] = 1977, - [1978] = 1926, + [1976] = 1961, + [1977] = 1968, + [1978] = 1978, [1979] = 1979, - [1980] = 1880, - [1981] = 1884, - [1982] = 1953, - [1983] = 1983, + [1980] = 1980, + [1981] = 1925, + [1982] = 1982, + [1983] = 1927, [1984] = 1984, - [1985] = 1892, - [1986] = 1899, - [1987] = 1887, + [1985] = 1985, + [1986] = 1986, + [1987] = 1971, [1988] = 1988, - [1989] = 1988, - [1990] = 1893, - [1991] = 1896, - [1992] = 1938, - [1993] = 1900, - [1994] = 1955, - [1995] = 1899, - [1996] = 1881, - [1997] = 1879, - [1998] = 1928, - [1999] = 1902, + [1989] = 1989, + [1990] = 1990, + [1991] = 1937, + [1992] = 1992, + [1993] = 1993, + [1994] = 1940, + [1995] = 1930, + [1996] = 1961, + [1997] = 1997, + [1998] = 1998, + [1999] = 1960, [2000] = 1931, - [2001] = 1897, - [2002] = 1900, - [2003] = 1926, - [2004] = 1977, - [2005] = 1902, - [2006] = 1885, - [2007] = 1983, - [2008] = 1885, - [2009] = 1882, - [2010] = 1881, - [2011] = 1901, - [2012] = 1892, - [2013] = 2013, - [2014] = 1914, - [2015] = 1915, - [2016] = 2016, - [2017] = 1955, - [2018] = 1915, - [2019] = 2019, - [2020] = 1955, - [2021] = 2021, - [2022] = 2022, - [2023] = 2023, - [2024] = 2024, + [2001] = 2001, + [2002] = 1967, + [2003] = 1998, + [2004] = 1925, + [2005] = 1968, + [2006] = 1967, + [2007] = 2007, + [2008] = 1966, + [2009] = 1931, + [2010] = 1924, + [2011] = 1930, + [2012] = 1927, + [2013] = 1925, + [2014] = 2014, + [2015] = 1975, + [2016] = 1968, + [2017] = 1967, + [2018] = 1975, + [2019] = 1966, + [2020] = 1931, + [2021] = 1924, + [2022] = 1930, + [2023] = 1927, + [2024] = 1927, [2025] = 2025, - [2026] = 2026, + [2026] = 1925, [2027] = 2027, - [2028] = 2028, - [2029] = 2029, + [2028] = 1963, + [2029] = 1968, [2030] = 2030, - [2031] = 2027, - [2032] = 2032, - [2033] = 2026, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 2030, - [2043] = 2043, - [2044] = 2037, - [2045] = 2030, - [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 2038, - [2050] = 2050, - [2051] = 2026, - [2052] = 2048, - [2053] = 2039, - [2054] = 2030, - [2055] = 2035, - [2056] = 2046, - [2057] = 2057, - [2058] = 2047, - [2059] = 2038, - [2060] = 2060, - [2061] = 2039, - [2062] = 2048, - [2063] = 2037, - [2064] = 2064, - [2065] = 2065, - [2066] = 2030, - [2067] = 2046, - [2068] = 2038, - [2069] = 2027, - [2070] = 2039, - [2071] = 2048, - [2072] = 2037, - [2073] = 2047, - [2074] = 2034, - [2075] = 2035, - [2076] = 2046, - [2077] = 2040, - [2078] = 2040, - [2079] = 2041, - [2080] = 2030, - [2081] = 2046, + [2031] = 1967, + [2032] = 1966, + [2033] = 1962, + [2034] = 1965, + [2035] = 1966, + [2036] = 1967, + [2037] = 1931, + [2038] = 1968, + [2039] = 1924, + [2040] = 1930, + [2041] = 1959, + [2042] = 1927, + [2043] = 1980, + [2044] = 2044, + [2045] = 1971, + [2046] = 2001, + [2047] = 1960, + [2048] = 1927, + [2049] = 1989, + [2050] = 1975, + [2051] = 1985, + [2052] = 1925, + [2053] = 1933, + [2054] = 1949, + [2055] = 1992, + [2056] = 1930, + [2057] = 1924, + [2058] = 2058, + [2059] = 1931, + [2060] = 1978, + [2061] = 2007, + [2062] = 1975, + [2063] = 1963, + [2064] = 1966, + [2065] = 1967, + [2066] = 1968, + [2067] = 1993, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 2068, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, [2082] = 2082, [2083] = 2083, - [2084] = 2084, - [2085] = 2035, + [2084] = 2069, + [2085] = 2085, [2086] = 2086, - [2087] = 2087, - [2088] = 2038, - [2089] = 2038, - [2090] = 2047, - [2091] = 2091, + [2087] = 2086, + [2088] = 2082, + [2089] = 2089, + [2090] = 2090, + [2091] = 2080, [2092] = 2092, - [2093] = 2026, - [2094] = 2094, - [2095] = 2095, + [2093] = 2086, + [2094] = 2082, + [2095] = 2074, [2096] = 2096, - [2097] = 2039, - [2098] = 2026, - [2099] = 2048, - [2100] = 2037, - [2101] = 2034, - [2102] = 2102, - [2103] = 2035, - [2104] = 2026, - [2105] = 2035, - [2106] = 2037, - [2107] = 2040, - [2108] = 2026, - [2109] = 2039, - [2110] = 2035, - [2111] = 2027, - [2112] = 2035, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2086, + [2101] = 2070, + [2102] = 2068, + [2103] = 2080, + [2104] = 2082, + [2105] = 2074, + [2106] = 2106, + [2107] = 2107, + [2108] = 2097, + [2109] = 2109, + [2110] = 2110, + [2111] = 2069, + [2112] = 2099, [2113] = 2113, - [2114] = 2027, - [2115] = 2035, - [2116] = 2116, - [2117] = 2026, - [2118] = 2027, - [2119] = 2040, - [2120] = 2120, - [2121] = 2040, - [2122] = 2047, - [2123] = 2026, - [2124] = 2124, - [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, + [2114] = 2114, + [2115] = 2115, + [2116] = 2086, + [2117] = 2080, + [2118] = 2109, + [2119] = 2107, + [2120] = 2109, + [2121] = 2082, + [2122] = 2097, + [2123] = 2089, + [2124] = 2115, + [2125] = 2107, + [2126] = 2097, + [2127] = 2099, + [2128] = 2109, + [2129] = 2081, [2130] = 2130, - [2131] = 2131, - [2132] = 2132, - [2133] = 2131, - [2134] = 2134, - [2135] = 2135, - [2136] = 2136, - [2137] = 1267, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, + [2131] = 2114, + [2132] = 2107, + [2133] = 2133, + [2134] = 2099, + [2135] = 2115, + [2136] = 2070, + [2137] = 2089, + [2138] = 2069, + [2139] = 2099, + [2140] = 2086, + [2141] = 2069, [2142] = 2142, - [2143] = 2142, - [2144] = 2144, - [2145] = 2140, - [2146] = 2131, - [2147] = 2141, - [2148] = 2148, - [2149] = 2125, - [2150] = 2150, - [2151] = 2138, + [2143] = 2143, + [2144] = 2070, + [2145] = 2080, + [2146] = 2115, + [2147] = 2109, + [2148] = 2070, + [2149] = 2082, + [2150] = 2107, + [2151] = 2151, [2152] = 2152, - [2153] = 2139, - [2154] = 2141, + [2153] = 2153, + [2154] = 2107, [2155] = 2155, - [2156] = 2142, - [2157] = 2157, - [2158] = 2138, - [2159] = 2159, - [2160] = 2160, - [2161] = 2131, - [2162] = 2162, - [2163] = 2163, - [2164] = 2139, - [2165] = 2135, - [2166] = 2166, - [2167] = 2130, - [2168] = 2138, - [2169] = 2141, - [2170] = 2127, - [2171] = 2131, - [2172] = 2172, - [2173] = 2173, - [2174] = 2138, - [2175] = 2141, - [2176] = 2129, - [2177] = 2131, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, + [2156] = 2097, + [2157] = 2109, + [2158] = 2081, + [2159] = 2068, + [2160] = 2070, + [2161] = 2099, + [2162] = 2074, + [2163] = 2068, + [2164] = 2069, + [2165] = 2070, + [2166] = 2089, + [2167] = 2115, + [2168] = 2068, + [2169] = 2068, + [2170] = 2170, + [2171] = 2070, + [2172] = 2089, + [2173] = 2068, + [2174] = 2068, + [2175] = 2175, + [2176] = 2089, + [2177] = 2177, + [2178] = 2074, + [2179] = 2070, + [2180] = 2074, [2181] = 2181, - [2182] = 2131, - [2183] = 2132, + [2182] = 2182, + [2183] = 2183, [2184] = 2184, [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 2181, + [2188] = 2188, [2189] = 2189, - [2190] = 2150, + [2190] = 2190, [2191] = 2191, - [2192] = 832, + [2192] = 2184, [2193] = 2193, - [2194] = 2194, - [2195] = 2139, + [2194] = 2182, + [2195] = 2191, [2196] = 2196, - [2197] = 2197, + [2197] = 2181, [2198] = 2198, - [2199] = 2199, - [2200] = 2142, - [2201] = 2186, - [2202] = 2131, - [2203] = 2152, - [2204] = 2204, - [2205] = 2135, + [2199] = 2181, + [2200] = 2200, + [2201] = 2201, + [2202] = 2184, + [2203] = 2193, + [2204] = 2184, + [2205] = 2186, [2206] = 2206, - [2207] = 2140, + [2207] = 2188, [2208] = 2208, [2209] = 2209, [2210] = 2210, [2211] = 2211, - [2212] = 2212, + [2212] = 2193, [2213] = 2213, - [2214] = 2141, - [2215] = 2185, + [2214] = 2198, + [2215] = 2215, [2216] = 2216, - [2217] = 2217, - [2218] = 2184, - [2219] = 2219, - [2220] = 2220, - [2221] = 2139, - [2222] = 2157, + [2217] = 877, + [2218] = 2210, + [2219] = 2184, + [2220] = 2186, + [2221] = 2221, + [2222] = 2193, [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, + [2224] = 2223, + [2225] = 2184, + [2226] = 2186, [2227] = 2227, - [2228] = 2228, - [2229] = 2228, - [2230] = 2224, - [2231] = 2144, - [2232] = 2142, + [2228] = 2193, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, [2233] = 2233, [2234] = 2234, - [2235] = 2138, + [2235] = 2183, [2236] = 2236, - [2237] = 2237, - [2238] = 2132, + [2237] = 2189, + [2238] = 2193, [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, + [2240] = 2200, + [2241] = 2191, + [2242] = 2208, [2243] = 2243, [2244] = 2244, - [2245] = 2163, - [2246] = 2246, - [2247] = 2191, - [2248] = 2187, - [2249] = 2194, - [2250] = 2162, - [2251] = 2186, - [2252] = 2159, - [2253] = 831, - [2254] = 2185, + [2245] = 2185, + [2246] = 2191, + [2247] = 2211, + [2248] = 2248, + [2249] = 2188, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 2239, [2255] = 2255, - [2256] = 2184, - [2257] = 2148, - [2258] = 2191, + [2256] = 2210, + [2257] = 2257, + [2258] = 2258, [2259] = 2259, [2260] = 2260, [2261] = 2261, - [2262] = 2130, - [2263] = 2132, - [2264] = 2125, - [2265] = 2144, - [2266] = 2155, - [2267] = 2179, - [2268] = 2180, + [2262] = 2198, + [2263] = 2263, + [2264] = 2186, + [2265] = 2265, + [2266] = 2266, + [2267] = 2182, + [2268] = 2268, [2269] = 2269, - [2270] = 2126, + [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 2155, - [2274] = 2142, - [2275] = 2150, - [2276] = 2181, + [2273] = 2273, + [2274] = 2211, + [2275] = 2275, + [2276] = 2276, [2277] = 2277, - [2278] = 2278, - [2279] = 2141, + [2278] = 2216, + [2279] = 2184, [2280] = 2280, - [2281] = 2127, - [2282] = 2152, - [2283] = 2283, - [2284] = 2284, - [2285] = 2129, - [2286] = 2286, - [2287] = 2277, - [2288] = 2228, - [2289] = 2148, - [2290] = 2144, - [2291] = 2132, + [2281] = 2186, + [2282] = 2251, + [2283] = 2188, + [2284] = 2188, + [2285] = 2216, + [2286] = 2259, + [2287] = 2287, + [2288] = 2288, + [2289] = 2208, + [2290] = 1307, + [2291] = 2291, [2292] = 2292, - [2293] = 2129, - [2294] = 2260, - [2295] = 2138, - [2296] = 2130, - [2297] = 2194, - [2298] = 2179, - [2299] = 2180, - [2300] = 2142, - [2301] = 2144, - [2302] = 2138, - [2303] = 2139, - [2304] = 2162, - [2305] = 2194, - [2306] = 2181, - [2307] = 2219, - [2308] = 2163, - [2309] = 2309, + [2293] = 2293, + [2294] = 2234, + [2295] = 2261, + [2296] = 2271, + [2297] = 2229, + [2298] = 2261, + [2299] = 2299, + [2300] = 2186, + [2301] = 2301, + [2302] = 2288, + [2303] = 2182, + [2304] = 2196, + [2305] = 2185, + [2306] = 2292, + [2307] = 2307, + [2308] = 2288, + [2309] = 2191, [2310] = 2310, - [2311] = 1273, - [2312] = 2152, + [2311] = 2311, + [2312] = 2200, [2313] = 2313, - [2314] = 2314, - [2315] = 2150, - [2316] = 2140, - [2317] = 2228, - [2318] = 2162, - [2319] = 2144, - [2320] = 2163, - [2321] = 2141, - [2322] = 2322, - [2323] = 2323, - [2324] = 1264, - [2325] = 2325, - [2326] = 2326, - [2327] = 2179, - [2328] = 2180, - [2329] = 2135, - [2330] = 2330, + [2314] = 2198, + [2315] = 2315, + [2316] = 2316, + [2317] = 2208, + [2318] = 2184, + [2319] = 2307, + [2320] = 2196, + [2321] = 2230, + [2322] = 2231, + [2323] = 2299, + [2324] = 2324, + [2325] = 2234, + [2326] = 2229, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2239, [2331] = 2331, - [2332] = 2135, - [2333] = 2181, - [2334] = 2334, - [2335] = 2335, - [2336] = 2148, - [2337] = 2125, - [2338] = 2191, - [2339] = 2125, - [2340] = 2340, - [2341] = 2187, - [2342] = 2148, - [2343] = 2150, - [2344] = 2152, - [2345] = 2186, - [2346] = 2139, - [2347] = 2157, - [2348] = 2179, + [2332] = 2182, + [2333] = 2333, + [2334] = 2191, + [2335] = 2251, + [2336] = 2336, + [2337] = 2185, + [2338] = 2211, + [2339] = 2215, + [2340] = 2198, + [2341] = 2191, + [2342] = 2280, + [2343] = 2184, + [2344] = 2210, + [2345] = 2229, + [2346] = 2346, + [2347] = 2347, + [2348] = 2181, [2349] = 2349, - [2350] = 2185, - [2351] = 2187, - [2352] = 2179, - [2353] = 2179, - [2354] = 2179, - [2355] = 2138, - [2356] = 2184, - [2357] = 2194, - [2358] = 2358, - [2359] = 2359, - [2360] = 2313, - [2361] = 2361, - [2362] = 2362, - [2363] = 2284, - [2364] = 2162, - [2365] = 2163, - [2366] = 2241, - [2367] = 2139, - [2368] = 2325, + [2350] = 2271, + [2351] = 2351, + [2352] = 2352, + [2353] = 2234, + [2354] = 2216, + [2355] = 2230, + [2356] = 2231, + [2357] = 2357, + [2358] = 2229, + [2359] = 2234, + [2360] = 2210, + [2361] = 2223, + [2362] = 2211, + [2363] = 2239, + [2364] = 2209, + [2365] = 2198, + [2366] = 2366, + [2367] = 2293, + [2368] = 2368, [2369] = 2369, [2370] = 2370, - [2371] = 2217, - [2372] = 2135, - [2373] = 2373, - [2374] = 2141, - [2375] = 2130, - [2376] = 2242, - [2377] = 2140, - [2378] = 2280, + [2371] = 1306, + [2372] = 2372, + [2373] = 2186, + [2374] = 2280, + [2375] = 2292, + [2376] = 2251, + [2377] = 2377, + [2378] = 2223, [2379] = 2379, - [2380] = 2132, - [2381] = 2199, - [2382] = 2382, - [2383] = 2155, - [2384] = 2313, - [2385] = 2385, - [2386] = 2386, - [2387] = 2217, + [2380] = 2275, + [2381] = 2287, + [2382] = 2183, + [2383] = 2183, + [2384] = 2384, + [2385] = 2261, + [2386] = 2230, + [2387] = 2231, [2388] = 2388, - [2389] = 2126, - [2390] = 2390, - [2391] = 2132, - [2392] = 2392, - [2393] = 2393, - [2394] = 2142, - [2395] = 2217, + [2389] = 2209, + [2390] = 2288, + [2391] = 2183, + [2392] = 2239, + [2393] = 2188, + [2394] = 2394, + [2395] = 2292, [2396] = 2396, - [2397] = 1271, - [2398] = 2132, - [2399] = 2334, - [2400] = 2400, - [2401] = 2401, - [2402] = 2155, - [2403] = 2217, - [2404] = 2131, + [2397] = 2196, + [2398] = 2398, + [2399] = 2399, + [2400] = 2287, + [2401] = 2307, + [2402] = 2402, + [2403] = 2189, + [2404] = 2287, [2405] = 2405, [2406] = 2406, - [2407] = 2407, - [2408] = 2313, - [2409] = 2409, - [2410] = 2286, - [2411] = 2129, - [2412] = 2126, - [2413] = 2313, - [2414] = 2127, - [2415] = 2180, - [2416] = 2313, - [2417] = 2246, - [2418] = 2127, - [2419] = 2283, - [2420] = 2420, - [2421] = 2179, - [2422] = 2278, + [2407] = 2230, + [2408] = 2408, + [2409] = 2189, + [2410] = 2216, + [2411] = 2230, + [2412] = 2230, + [2413] = 2230, + [2414] = 2414, + [2415] = 2415, + [2416] = 2416, + [2417] = 2193, + [2418] = 2193, + [2419] = 2276, + [2420] = 2255, + [2421] = 2280, + [2422] = 2187, + [2423] = 2208, + [2424] = 2424, + [2425] = 2425, + [2426] = 2191, + [2427] = 2427, + [2428] = 2428, + [2429] = 2208, + [2430] = 2351, + [2431] = 876, + [2432] = 2432, + [2433] = 2433, + [2434] = 2251, + [2435] = 2435, + [2436] = 2188, + [2437] = 2437, + [2438] = 2438, + [2439] = 2208, + [2440] = 2248, + [2441] = 2252, + [2442] = 2271, + [2443] = 2437, + [2444] = 2223, + [2445] = 2276, + [2446] = 2446, + [2447] = 2181, + [2448] = 2351, + [2449] = 2449, + [2450] = 2450, + [2451] = 2451, + [2452] = 2271, + [2453] = 2189, + [2454] = 2188, + [2455] = 2455, + [2456] = 2209, + [2457] = 2351, + [2458] = 2251, + [2459] = 1309, + [2460] = 2201, + [2461] = 2271, + [2462] = 2193, + [2463] = 2463, + [2464] = 2464, + [2465] = 2213, + [2466] = 2351, + [2467] = 2185, + [2468] = 2468, + [2469] = 2469, + [2470] = 2307, + [2471] = 2276, + [2472] = 2261, + [2473] = 1311, + [2474] = 2208, + [2475] = 2231, + [2476] = 2276, + [2477] = 2477, + [2478] = 2273, + [2479] = 2276, + [2480] = 2424, + [2481] = 2230, + [2482] = 2227, + [2483] = 2186, + [2484] = 2484, + [2485] = 2236, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -9401,19 +9501,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(127); END_STATE(); case 17: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(71) END_STATE(); case 18: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(71) if (lookahead == '\r') SKIP(17) if (lookahead == 'U') ADVANCE(135); if (lookahead == 'u') ADVANCE(127); END_STATE(); case 19: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(70) END_STATE(); case 20: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(70) if (lookahead == '\r') SKIP(19) if (lookahead == 'U') ADVANCE(135); if (lookahead == 'u') ADVANCE(127); @@ -9455,13 +9555,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(127); END_STATE(); case 29: - if (lookahead == '\n') SKIP(31) + if (lookahead == '\n') SKIP(59) END_STATE(); case 30: - if (lookahead == '\n') SKIP(31) + if (lookahead == '\n') SKIP(59) if (lookahead == '\r') SKIP(29) + if (lookahead == 'U') ADVANCE(135); + if (lookahead == 'u') ADVANCE(127); END_STATE(); case 31: + if (lookahead == '\n') SKIP(33) + END_STATE(); + case 32: + if (lookahead == '\n') SKIP(33) + if (lookahead == '\r') SKIP(31) + END_STATE(); + case 33: if (lookahead == '\n') ADVANCE(150); if (lookahead == '!') ADVANCE(82); if (lookahead == '%') ADVANCE(229); @@ -9474,20 +9583,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(247); if (lookahead == '=') ADVANCE(83); if (lookahead == '>') ADVANCE(243); - if (lookahead == '\\') SKIP(30) + if (lookahead == '\\') SKIP(32) if (lookahead == '^') ADVANCE(235); if (lookahead == '|') ADVANCE(234); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(31) - END_STATE(); - case 32: - if (lookahead == '\n') SKIP(59) - END_STATE(); - case 33: - if (lookahead == '\n') SKIP(59) - if (lookahead == '\r') SKIP(32) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); + lookahead == ' ') SKIP(33) END_STATE(); case 34: if (lookahead == '\n') SKIP(69) @@ -9508,26 +9608,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(127); END_STATE(); case 38: - if (lookahead == '\n') SKIP(67) - if (lookahead == '"') ADVANCE(312); - if (lookahead == '/') ADVANCE(313); - if (lookahead == '\\') ADVANCE(39); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(316); - if (lookahead != 0) ADVANCE(317); - END_STATE(); - case 39: - if (lookahead == '\n') ADVANCE(319); - if (lookahead == '\r') ADVANCE(318); - if (lookahead == 'U') ADVANCE(136); - if (lookahead == 'u') ADVANCE(128); - if (lookahead == 'x') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); - if (lookahead != 0) ADVANCE(318); - END_STATE(); - case 40: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(44); + if (lookahead == '\r') ADVANCE(42); if (lookahead == '(') ADVANCE(145); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); @@ -9535,25 +9617,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); - case 41: + case 39: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(44); + if (lookahead == '\r') ADVANCE(42); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); - case 42: + case 40: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(43); + if (lookahead == '\r') ADVANCE(41); if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(74); if (lookahead == '\\') SKIP(47) if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(73) END_STATE(); - case 43: + case 41: if (lookahead == '\n') ADVANCE(143); if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(74); @@ -9561,7 +9643,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(73) END_STATE(); - case 44: + case 42: if (lookahead == '\n') ADVANCE(143); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); @@ -9569,6 +9651,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); + case 43: + if (lookahead == '\n') SKIP(67) + if (lookahead == '"') ADVANCE(312); + if (lookahead == '/') ADVANCE(313); + if (lookahead == '\\') ADVANCE(44); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(316); + if (lookahead != 0) ADVANCE(317); + END_STATE(); + case 44: + if (lookahead == '\n') ADVANCE(319); + if (lookahead == '\r') ADVANCE(318); + if (lookahead == 'U') ADVANCE(136); + if (lookahead == 'u') ADVANCE(128); + if (lookahead == 'x') ADVANCE(124); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (lookahead != 0) ADVANCE(318); + END_STATE(); case 45: if (lookahead == '\n') SKIP(72) if (lookahead == '\'') ADVANCE(303); @@ -9838,7 +9938,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(285); if (lookahead == 'L') ADVANCE(333); if (lookahead == 'U') ADVANCE(334); - if (lookahead == '\\') ADVANCE(33); + if (lookahead == '\\') ADVANCE(30); if (lookahead == 'u') ADVANCE(332); if (lookahead == '~') ADVANCE(214); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10047,7 +10147,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 67: if (lookahead == '"') ADVANCE(312); if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '\\') ADVANCE(44); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(67) END_STATE(); @@ -10077,7 +10177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); if (lookahead == '/') ADVANCE(74); if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(18); + if (lookahead == '\\') ADVANCE(20); if (lookahead == '}') ADVANCE(257); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) @@ -10087,14 +10187,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); if (lookahead == '/') ADVANCE(74); if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(20); + if (lookahead == '\\') ADVANCE(18); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71) END_STATE(); case 72: if (lookahead == '\'') ADVANCE(303); if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '\\') ADVANCE(44); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72) END_STATE(); @@ -11614,7 +11714,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 307: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '\\') ADVANCE(44); END_STATE(); case 308: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -11680,7 +11780,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 319: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '\\') ADVANCE(44); END_STATE(); case 320: ACCEPT_TOKEN(sym_escape_sequence); @@ -13462,12 +13562,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 58}, [14] = {.lex_state = 58}, [15] = {.lex_state = 58}, - [16] = {.lex_state = 55}, + [16] = {.lex_state = 58}, [17] = {.lex_state = 58}, [18] = {.lex_state = 58}, [19] = {.lex_state = 58}, [20] = {.lex_state = 58}, - [21] = {.lex_state = 58}, + [21] = {.lex_state = 55}, [22] = {.lex_state = 58}, [23] = {.lex_state = 58}, [24] = {.lex_state = 58}, @@ -13482,19 +13582,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 140}, [34] = {.lex_state = 140}, [35] = {.lex_state = 140}, - [36] = {.lex_state = 57}, + [36] = {.lex_state = 140}, [37] = {.lex_state = 140}, - [38] = {.lex_state = 57}, - [39] = {.lex_state = 140}, + [38] = {.lex_state = 140}, + [39] = {.lex_state = 57}, [40] = {.lex_state = 140}, [41] = {.lex_state = 140}, [42] = {.lex_state = 140}, [43] = {.lex_state = 140}, [44] = {.lex_state = 140}, [45] = {.lex_state = 140}, - [46] = {.lex_state = 140}, - [47] = {.lex_state = 57}, - [48] = {.lex_state = 140}, + [46] = {.lex_state = 57}, + [47] = {.lex_state = 140}, + [48] = {.lex_state = 57}, [49] = {.lex_state = 140}, [50] = {.lex_state = 140}, [51] = {.lex_state = 140}, @@ -13510,21 +13610,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 58}, [62] = {.lex_state = 58}, [63] = {.lex_state = 58}, - [64] = {.lex_state = 57}, + [64] = {.lex_state = 140}, [65] = {.lex_state = 140}, [66] = {.lex_state = 57}, - [67] = {.lex_state = 57}, - [68] = {.lex_state = 57}, + [67] = {.lex_state = 140}, + [68] = {.lex_state = 140}, [69] = {.lex_state = 140}, - [70] = {.lex_state = 140}, - [71] = {.lex_state = 140}, + [70] = {.lex_state = 57}, + [71] = {.lex_state = 57}, [72] = {.lex_state = 57}, [73] = {.lex_state = 140}, [74] = {.lex_state = 140}, [75] = {.lex_state = 140}, [76] = {.lex_state = 140}, [77] = {.lex_state = 140}, - [78] = {.lex_state = 140}, + [78] = {.lex_state = 57}, [79] = {.lex_state = 140}, [80] = {.lex_state = 140}, [81] = {.lex_state = 140}, @@ -13540,16 +13640,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [91] = {.lex_state = 55}, [92] = {.lex_state = 55}, [93] = {.lex_state = 55}, - [94] = {.lex_state = 55}, - [95] = {.lex_state = 55}, - [96] = {.lex_state = 140}, + [94] = {.lex_state = 58}, + [95] = {.lex_state = 58}, + [96] = {.lex_state = 58}, [97] = {.lex_state = 55}, [98] = {.lex_state = 55}, [99] = {.lex_state = 55}, - [100] = {.lex_state = 55}, + [100] = {.lex_state = 140}, [101] = {.lex_state = 55}, [102] = {.lex_state = 55}, - [103] = {.lex_state = 55}, + [103] = {.lex_state = 58}, [104] = {.lex_state = 55}, [105] = {.lex_state = 55}, [106] = {.lex_state = 55}, @@ -13600,46 +13700,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 55}, [152] = {.lex_state = 55}, [153] = {.lex_state = 55}, - [154] = {.lex_state = 55}, + [154] = {.lex_state = 57}, [155] = {.lex_state = 55}, [156] = {.lex_state = 55}, [157] = {.lex_state = 55}, [158] = {.lex_state = 55}, [159] = {.lex_state = 55}, - [160] = {.lex_state = 55}, + [160] = {.lex_state = 140}, [161] = {.lex_state = 55}, [162] = {.lex_state = 55}, [163] = {.lex_state = 55}, [164] = {.lex_state = 55}, - [165] = {.lex_state = 55}, - [166] = {.lex_state = 55}, - [167] = {.lex_state = 55}, - [168] = {.lex_state = 55}, - [169] = {.lex_state = 55}, - [170] = {.lex_state = 55}, - [171] = {.lex_state = 58}, - [172] = {.lex_state = 58}, - [173] = {.lex_state = 58}, - [174] = {.lex_state = 58}, - [175] = {.lex_state = 58}, - [176] = {.lex_state = 58}, - [177] = {.lex_state = 58}, - [178] = {.lex_state = 58}, - [179] = {.lex_state = 58}, - [180] = {.lex_state = 58}, - [181] = {.lex_state = 58}, - [182] = {.lex_state = 58}, - [183] = {.lex_state = 58}, - [184] = {.lex_state = 58}, - [185] = {.lex_state = 58}, - [186] = {.lex_state = 58}, - [187] = {.lex_state = 58}, - [188] = {.lex_state = 58}, - [189] = {.lex_state = 58}, + [165] = {.lex_state = 140}, + [166] = {.lex_state = 140}, + [167] = {.lex_state = 140}, + [168] = {.lex_state = 57}, + [169] = {.lex_state = 57}, + [170] = {.lex_state = 140}, + [171] = {.lex_state = 55}, + [172] = {.lex_state = 55}, + [173] = {.lex_state = 140}, + [174] = {.lex_state = 55}, + [175] = {.lex_state = 55}, + [176] = {.lex_state = 55}, + [177] = {.lex_state = 55}, + [178] = {.lex_state = 55}, + [179] = {.lex_state = 55}, + [180] = {.lex_state = 55}, + [181] = {.lex_state = 55}, + [182] = {.lex_state = 55}, + [183] = {.lex_state = 55}, + [184] = {.lex_state = 55}, + [185] = {.lex_state = 55}, + [186] = {.lex_state = 55}, + [187] = {.lex_state = 55}, + [188] = {.lex_state = 55}, + [189] = {.lex_state = 55}, [190] = {.lex_state = 58}, [191] = {.lex_state = 58}, [192] = {.lex_state = 58}, - [193] = {.lex_state = 58}, + [193] = {.lex_state = 140}, [194] = {.lex_state = 58}, [195] = {.lex_state = 58}, [196] = {.lex_state = 58}, @@ -13661,7 +13761,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 58}, [213] = {.lex_state = 58}, [214] = {.lex_state = 58}, - [215] = {.lex_state = 58}, + [215] = {.lex_state = 140}, [216] = {.lex_state = 58}, [217] = {.lex_state = 58}, [218] = {.lex_state = 58}, @@ -13676,7 +13776,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [227] = {.lex_state = 58}, [228] = {.lex_state = 58}, [229] = {.lex_state = 58}, - [230] = {.lex_state = 140}, + [230] = {.lex_state = 58}, [231] = {.lex_state = 58}, [232] = {.lex_state = 58}, [233] = {.lex_state = 58}, @@ -13684,16 +13784,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [235] = {.lex_state = 58}, [236] = {.lex_state = 58}, [237] = {.lex_state = 58}, - [238] = {.lex_state = 53}, + [238] = {.lex_state = 58}, [239] = {.lex_state = 58}, - [240] = {.lex_state = 53}, + [240] = {.lex_state = 58}, [241] = {.lex_state = 58}, [242] = {.lex_state = 58}, - [243] = {.lex_state = 140}, - [244] = {.lex_state = 57}, + [243] = {.lex_state = 57}, + [244] = {.lex_state = 58}, [245] = {.lex_state = 58}, [246] = {.lex_state = 58}, - [247] = {.lex_state = 58}, + [247] = {.lex_state = 53}, [248] = {.lex_state = 58}, [249] = {.lex_state = 58}, [250] = {.lex_state = 58}, @@ -13701,208 +13801,208 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [252] = {.lex_state = 58}, [253] = {.lex_state = 58}, [254] = {.lex_state = 58}, - [255] = {.lex_state = 140}, - [256] = {.lex_state = 140}, - [257] = {.lex_state = 140}, - [258] = {.lex_state = 140}, - [259] = {.lex_state = 140}, - [260] = {.lex_state = 140}, - [261] = {.lex_state = 140}, - [262] = {.lex_state = 140}, - [263] = {.lex_state = 140}, - [264] = {.lex_state = 140}, - [265] = {.lex_state = 140}, - [266] = {.lex_state = 140}, - [267] = {.lex_state = 140}, - [268] = {.lex_state = 140}, - [269] = {.lex_state = 140}, - [270] = {.lex_state = 140}, - [271] = {.lex_state = 140}, - [272] = {.lex_state = 140}, - [273] = {.lex_state = 140}, - [274] = {.lex_state = 140}, - [275] = {.lex_state = 140}, - [276] = {.lex_state = 140}, + [255] = {.lex_state = 58}, + [256] = {.lex_state = 58}, + [257] = {.lex_state = 58}, + [258] = {.lex_state = 58}, + [259] = {.lex_state = 58}, + [260] = {.lex_state = 58}, + [261] = {.lex_state = 58}, + [262] = {.lex_state = 58}, + [263] = {.lex_state = 58}, + [264] = {.lex_state = 58}, + [265] = {.lex_state = 58}, + [266] = {.lex_state = 58}, + [267] = {.lex_state = 58}, + [268] = {.lex_state = 58}, + [269] = {.lex_state = 58}, + [270] = {.lex_state = 58}, + [271] = {.lex_state = 58}, + [272] = {.lex_state = 58}, + [273] = {.lex_state = 58}, + [274] = {.lex_state = 53}, + [275] = {.lex_state = 58}, + [276] = {.lex_state = 57}, [277] = {.lex_state = 140}, [278] = {.lex_state = 140}, [279] = {.lex_state = 140}, [280] = {.lex_state = 140}, [281] = {.lex_state = 140}, - [282] = {.lex_state = 140}, + [282] = {.lex_state = 57}, [283] = {.lex_state = 140}, - [284] = {.lex_state = 140}, + [284] = {.lex_state = 57}, [285] = {.lex_state = 140}, - [286] = {.lex_state = 140}, + [286] = {.lex_state = 57}, [287] = {.lex_state = 140}, [288] = {.lex_state = 140}, - [289] = {.lex_state = 140}, + [289] = {.lex_state = 57}, [290] = {.lex_state = 140}, - [291] = {.lex_state = 140}, + [291] = {.lex_state = 57}, [292] = {.lex_state = 140}, [293] = {.lex_state = 140}, - [294] = {.lex_state = 140}, + [294] = {.lex_state = 57}, [295] = {.lex_state = 140}, - [296] = {.lex_state = 140}, - [297] = {.lex_state = 140}, - [298] = {.lex_state = 140}, + [296] = {.lex_state = 57}, + [297] = {.lex_state = 57}, + [298] = {.lex_state = 57}, [299] = {.lex_state = 140}, - [300] = {.lex_state = 140}, + [300] = {.lex_state = 57}, [301] = {.lex_state = 140}, [302] = {.lex_state = 140}, [303] = {.lex_state = 140}, - [304] = {.lex_state = 140}, + [304] = {.lex_state = 57}, [305] = {.lex_state = 140}, - [306] = {.lex_state = 140}, - [307] = {.lex_state = 140}, + [306] = {.lex_state = 57}, + [307] = {.lex_state = 57}, [308] = {.lex_state = 140}, - [309] = {.lex_state = 140}, - [310] = {.lex_state = 140}, - [311] = {.lex_state = 140}, - [312] = {.lex_state = 140}, - [313] = {.lex_state = 140}, + [309] = {.lex_state = 57}, + [310] = {.lex_state = 57}, + [311] = {.lex_state = 57}, + [312] = {.lex_state = 57}, + [313] = {.lex_state = 57}, [314] = {.lex_state = 140}, [315] = {.lex_state = 140}, [316] = {.lex_state = 140}, [317] = {.lex_state = 140}, [318] = {.lex_state = 140}, - [319] = {.lex_state = 57}, - [320] = {.lex_state = 57}, - [321] = {.lex_state = 140}, + [319] = {.lex_state = 140}, + [320] = {.lex_state = 140}, + [321] = {.lex_state = 57}, [322] = {.lex_state = 140}, - [323] = {.lex_state = 57}, + [323] = {.lex_state = 140}, [324] = {.lex_state = 140}, - [325] = {.lex_state = 140}, - [326] = {.lex_state = 57}, - [327] = {.lex_state = 57}, - [328] = {.lex_state = 57}, + [325] = {.lex_state = 57}, + [326] = {.lex_state = 140}, + [327] = {.lex_state = 140}, + [328] = {.lex_state = 140}, [329] = {.lex_state = 140}, - [330] = {.lex_state = 140}, - [331] = {.lex_state = 140}, - [332] = {.lex_state = 57}, + [330] = {.lex_state = 57}, + [331] = {.lex_state = 57}, + [332] = {.lex_state = 140}, [333] = {.lex_state = 57}, [334] = {.lex_state = 140}, - [335] = {.lex_state = 57}, - [336] = {.lex_state = 140}, + [335] = {.lex_state = 140}, + [336] = {.lex_state = 57}, [337] = {.lex_state = 57}, - [338] = {.lex_state = 140}, - [339] = {.lex_state = 140}, + [338] = {.lex_state = 57}, + [339] = {.lex_state = 57}, [340] = {.lex_state = 57}, [341] = {.lex_state = 140}, [342] = {.lex_state = 57}, - [343] = {.lex_state = 140}, + [343] = {.lex_state = 57}, [344] = {.lex_state = 57}, [345] = {.lex_state = 57}, - [346] = {.lex_state = 140}, - [347] = {.lex_state = 140}, + [346] = {.lex_state = 57}, + [347] = {.lex_state = 57}, [348] = {.lex_state = 57}, [349] = {.lex_state = 57}, - [350] = {.lex_state = 140}, - [351] = {.lex_state = 140}, + [350] = {.lex_state = 57}, + [351] = {.lex_state = 57}, [352] = {.lex_state = 57}, [353] = {.lex_state = 57}, [354] = {.lex_state = 140}, - [355] = {.lex_state = 57}, - [356] = {.lex_state = 57}, + [355] = {.lex_state = 140}, + [356] = {.lex_state = 140}, [357] = {.lex_state = 140}, - [358] = {.lex_state = 57}, - [359] = {.lex_state = 57}, + [358] = {.lex_state = 140}, + [359] = {.lex_state = 140}, [360] = {.lex_state = 57}, [361] = {.lex_state = 57}, - [362] = {.lex_state = 57}, + [362] = {.lex_state = 140}, [363] = {.lex_state = 57}, - [364] = {.lex_state = 57}, + [364] = {.lex_state = 140}, [365] = {.lex_state = 140}, [366] = {.lex_state = 140}, [367] = {.lex_state = 140}, [368] = {.lex_state = 140}, [369] = {.lex_state = 140}, - [370] = {.lex_state = 57}, + [370] = {.lex_state = 140}, [371] = {.lex_state = 140}, [372] = {.lex_state = 140}, - [373] = {.lex_state = 57}, + [373] = {.lex_state = 140}, [374] = {.lex_state = 140}, [375] = {.lex_state = 140}, [376] = {.lex_state = 140}, - [377] = {.lex_state = 140}, + [377] = {.lex_state = 57}, [378] = {.lex_state = 57}, - [379] = {.lex_state = 140}, - [380] = {.lex_state = 140}, + [379] = {.lex_state = 57}, + [380] = {.lex_state = 57}, [381] = {.lex_state = 140}, [382] = {.lex_state = 57}, - [383] = {.lex_state = 140}, - [384] = {.lex_state = 57}, + [383] = {.lex_state = 57}, + [384] = {.lex_state = 140}, [385] = {.lex_state = 57}, - [386] = {.lex_state = 57}, - [387] = {.lex_state = 57}, + [386] = {.lex_state = 140}, + [387] = {.lex_state = 140}, [388] = {.lex_state = 57}, [389] = {.lex_state = 57}, - [390] = {.lex_state = 57}, - [391] = {.lex_state = 57}, - [392] = {.lex_state = 57}, - [393] = {.lex_state = 57}, - [394] = {.lex_state = 57}, - [395] = {.lex_state = 57}, - [396] = {.lex_state = 57}, - [397] = {.lex_state = 57}, - [398] = {.lex_state = 57}, - [399] = {.lex_state = 57}, - [400] = {.lex_state = 57}, - [401] = {.lex_state = 57}, - [402] = {.lex_state = 57}, + [390] = {.lex_state = 140}, + [391] = {.lex_state = 140}, + [392] = {.lex_state = 140}, + [393] = {.lex_state = 140}, + [394] = {.lex_state = 140}, + [395] = {.lex_state = 140}, + [396] = {.lex_state = 140}, + [397] = {.lex_state = 140}, + [398] = {.lex_state = 140}, + [399] = {.lex_state = 140}, + [400] = {.lex_state = 140}, + [401] = {.lex_state = 140}, + [402] = {.lex_state = 140}, [403] = {.lex_state = 140}, [404] = {.lex_state = 140}, [405] = {.lex_state = 140}, [406] = {.lex_state = 140}, - [407] = {.lex_state = 57}, + [407] = {.lex_state = 140}, [408] = {.lex_state = 140}, [409] = {.lex_state = 140}, - [410] = {.lex_state = 57}, + [410] = {.lex_state = 140}, [411] = {.lex_state = 140}, - [412] = {.lex_state = 57}, - [413] = {.lex_state = 57}, + [412] = {.lex_state = 140}, + [413] = {.lex_state = 140}, [414] = {.lex_state = 140}, [415] = {.lex_state = 140}, [416] = {.lex_state = 140}, [417] = {.lex_state = 140}, - [418] = {.lex_state = 57}, - [419] = {.lex_state = 57}, - [420] = {.lex_state = 57}, - [421] = {.lex_state = 57}, - [422] = {.lex_state = 57}, + [418] = {.lex_state = 140}, + [419] = {.lex_state = 140}, + [420] = {.lex_state = 140}, + [421] = {.lex_state = 140}, + [422] = {.lex_state = 140}, [423] = {.lex_state = 140}, - [424] = {.lex_state = 57}, - [425] = {.lex_state = 57}, - [426] = {.lex_state = 57}, - [427] = {.lex_state = 57}, + [424] = {.lex_state = 140}, + [425] = {.lex_state = 140}, + [426] = {.lex_state = 140}, + [427] = {.lex_state = 140}, [428] = {.lex_state = 140}, [429] = {.lex_state = 140}, [430] = {.lex_state = 140}, - [431] = {.lex_state = 57}, + [431] = {.lex_state = 140}, [432] = {.lex_state = 140}, - [433] = {.lex_state = 57}, - [434] = {.lex_state = 57}, + [433] = {.lex_state = 140}, + [434] = {.lex_state = 140}, [435] = {.lex_state = 140}, - [436] = {.lex_state = 57}, + [436] = {.lex_state = 140}, [437] = {.lex_state = 140}, [438] = {.lex_state = 140}, [439] = {.lex_state = 140}, - [440] = {.lex_state = 57}, + [440] = {.lex_state = 140}, [441] = {.lex_state = 140}, - [442] = {.lex_state = 57}, + [442] = {.lex_state = 140}, [443] = {.lex_state = 140}, [444] = {.lex_state = 140}, - [445] = {.lex_state = 57}, - [446] = {.lex_state = 57}, - [447] = {.lex_state = 57}, - [448] = {.lex_state = 140}, + [445] = {.lex_state = 140}, + [446] = {.lex_state = 140}, + [447] = {.lex_state = 140}, + [448] = {.lex_state = 57}, [449] = {.lex_state = 140}, - [450] = {.lex_state = 57}, - [451] = {.lex_state = 57}, + [450] = {.lex_state = 140}, + [451] = {.lex_state = 140}, [452] = {.lex_state = 140}, [453] = {.lex_state = 140}, [454] = {.lex_state = 140}, [455] = {.lex_state = 140}, - [456] = {.lex_state = 140}, + [456] = {.lex_state = 54}, [457] = {.lex_state = 140}, [458] = {.lex_state = 140}, [459] = {.lex_state = 140}, @@ -13911,13 +14011,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [462] = {.lex_state = 140}, [463] = {.lex_state = 140}, [464] = {.lex_state = 140}, - [465] = {.lex_state = 57}, + [465] = {.lex_state = 140}, [466] = {.lex_state = 140}, - [467] = {.lex_state = 57}, + [467] = {.lex_state = 140}, [468] = {.lex_state = 140}, - [469] = {.lex_state = 57}, + [469] = {.lex_state = 140}, [470] = {.lex_state = 140}, - [471] = {.lex_state = 57}, + [471] = {.lex_state = 140}, [472] = {.lex_state = 140}, [473] = {.lex_state = 140}, [474] = {.lex_state = 140}, @@ -13925,10 +14025,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [476] = {.lex_state = 140}, [477] = {.lex_state = 140}, [478] = {.lex_state = 140}, - [479] = {.lex_state = 54}, + [479] = {.lex_state = 140}, [480] = {.lex_state = 140}, [481] = {.lex_state = 140}, - [482] = {.lex_state = 140}, + [482] = {.lex_state = 57}, [483] = {.lex_state = 140}, [484] = {.lex_state = 140}, [485] = {.lex_state = 140}, @@ -13950,76 +14050,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [501] = {.lex_state = 140}, [502] = {.lex_state = 140}, [503] = {.lex_state = 140}, - [504] = {.lex_state = 140}, + [504] = {.lex_state = 57}, [505] = {.lex_state = 140}, [506] = {.lex_state = 140}, [507] = {.lex_state = 140}, [508] = {.lex_state = 140}, - [509] = {.lex_state = 53}, + [509] = {.lex_state = 140}, [510] = {.lex_state = 140}, [511] = {.lex_state = 140}, - [512] = {.lex_state = 140}, - [513] = {.lex_state = 140}, + [512] = {.lex_state = 57}, + [513] = {.lex_state = 57}, [514] = {.lex_state = 140}, - [515] = {.lex_state = 140}, + [515] = {.lex_state = 57}, [516] = {.lex_state = 140}, - [517] = {.lex_state = 140}, - [518] = {.lex_state = 140}, + [517] = {.lex_state = 57}, + [518] = {.lex_state = 57}, [519] = {.lex_state = 140}, - [520] = {.lex_state = 140}, - [521] = {.lex_state = 140}, - [522] = {.lex_state = 140}, + [520] = {.lex_state = 57}, + [521] = {.lex_state = 57}, + [522] = {.lex_state = 57}, [523] = {.lex_state = 140}, - [524] = {.lex_state = 140}, - [525] = {.lex_state = 140}, - [526] = {.lex_state = 140}, + [524] = {.lex_state = 57}, + [525] = {.lex_state = 57}, + [526] = {.lex_state = 57}, [527] = {.lex_state = 140}, - [528] = {.lex_state = 140}, + [528] = {.lex_state = 57}, [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 = 140}, - [536] = {.lex_state = 140}, + [532] = {.lex_state = 57}, + [533] = {.lex_state = 57}, + [534] = {.lex_state = 57}, + [535] = {.lex_state = 57}, + [536] = {.lex_state = 57}, [537] = {.lex_state = 140}, - [538] = {.lex_state = 140}, - [539] = {.lex_state = 140}, - [540] = {.lex_state = 140}, - [541] = {.lex_state = 140}, - [542] = {.lex_state = 140}, + [538] = {.lex_state = 57}, + [539] = {.lex_state = 57}, + [540] = {.lex_state = 57}, + [541] = {.lex_state = 57}, + [542] = {.lex_state = 57}, [543] = {.lex_state = 140}, [544] = {.lex_state = 140}, [545] = {.lex_state = 140}, - [546] = {.lex_state = 140}, - [547] = {.lex_state = 140}, - [548] = {.lex_state = 140}, + [546] = {.lex_state = 57}, + [547] = {.lex_state = 57}, + [548] = {.lex_state = 57}, [549] = {.lex_state = 140}, [550] = {.lex_state = 140}, - [551] = {.lex_state = 140}, + [551] = {.lex_state = 53}, [552] = {.lex_state = 140}, [553] = {.lex_state = 140}, - [554] = {.lex_state = 53}, - [555] = {.lex_state = 53}, + [554] = {.lex_state = 140}, + [555] = {.lex_state = 140}, [556] = {.lex_state = 140}, - [557] = {.lex_state = 54}, - [558] = {.lex_state = 53}, + [557] = {.lex_state = 140}, + [558] = {.lex_state = 140}, [559] = {.lex_state = 140}, - [560] = {.lex_state = 60}, - [561] = {.lex_state = 60}, + [560] = {.lex_state = 140}, + [561] = {.lex_state = 140}, [562] = {.lex_state = 140}, - [563] = {.lex_state = 60}, - [564] = {.lex_state = 60}, - [565] = {.lex_state = 60}, - [566] = {.lex_state = 60}, - [567] = {.lex_state = 60}, - [568] = {.lex_state = 60}, - [569] = {.lex_state = 60}, - [570] = {.lex_state = 60}, - [571] = {.lex_state = 60}, - [572] = {.lex_state = 60}, - [573] = {.lex_state = 64}, + [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}, @@ -14037,34 +14137,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [588] = {.lex_state = 140}, [589] = {.lex_state = 140}, [590] = {.lex_state = 140}, - [591] = {.lex_state = 64}, - [592] = {.lex_state = 64}, - [593] = {.lex_state = 64}, - [594] = {.lex_state = 64}, - [595] = {.lex_state = 64}, - [596] = {.lex_state = 64}, - [597] = {.lex_state = 64}, - [598] = {.lex_state = 64}, - [599] = {.lex_state = 64}, - [600] = {.lex_state = 65}, - [601] = {.lex_state = 64}, - [602] = {.lex_state = 65}, - [603] = {.lex_state = 65}, - [604] = {.lex_state = 65}, - [605] = {.lex_state = 65}, - [606] = {.lex_state = 65}, - [607] = {.lex_state = 65}, - [608] = {.lex_state = 65}, - [609] = {.lex_state = 65}, - [610] = {.lex_state = 65}, - [611] = {.lex_state = 65}, - [612] = {.lex_state = 65}, - [613] = {.lex_state = 140}, - [614] = {.lex_state = 140}, - [615] = {.lex_state = 140}, - [616] = {.lex_state = 65}, - [617] = {.lex_state = 140}, - [618] = {.lex_state = 140}, + [591] = {.lex_state = 140}, + [592] = {.lex_state = 140}, + [593] = {.lex_state = 140}, + [594] = {.lex_state = 140}, + [595] = {.lex_state = 140}, + [596] = {.lex_state = 53}, + [597] = {.lex_state = 53}, + [598] = {.lex_state = 140}, + [599] = {.lex_state = 140}, + [600] = {.lex_state = 54}, + [601] = {.lex_state = 140}, + [602] = {.lex_state = 140}, + [603] = {.lex_state = 140}, + [604] = {.lex_state = 53}, + [605] = {.lex_state = 60}, + [606] = {.lex_state = 60}, + [607] = {.lex_state = 60}, + [608] = {.lex_state = 60}, + [609] = {.lex_state = 60}, + [610] = {.lex_state = 140}, + [611] = {.lex_state = 60}, + [612] = {.lex_state = 60}, + [613] = {.lex_state = 60}, + [614] = {.lex_state = 60}, + [615] = {.lex_state = 60}, + [616] = {.lex_state = 60}, + [617] = {.lex_state = 60}, + [618] = {.lex_state = 64}, [619] = {.lex_state = 140}, [620] = {.lex_state = 140}, [621] = {.lex_state = 140}, @@ -14082,39 +14182,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [633] = {.lex_state = 140}, [634] = {.lex_state = 140}, [635] = {.lex_state = 140}, - [636] = {.lex_state = 140}, - [637] = {.lex_state = 140}, - [638] = {.lex_state = 140}, - [639] = {.lex_state = 140}, - [640] = {.lex_state = 140}, - [641] = {.lex_state = 140}, - [642] = {.lex_state = 140}, - [643] = {.lex_state = 140}, - [644] = {.lex_state = 140}, - [645] = {.lex_state = 140}, - [646] = {.lex_state = 140}, - [647] = {.lex_state = 140}, - [648] = {.lex_state = 140}, - [649] = {.lex_state = 140}, - [650] = {.lex_state = 70}, - [651] = {.lex_state = 140}, - [652] = {.lex_state = 140}, - [653] = {.lex_state = 140}, - [654] = {.lex_state = 140}, - [655] = {.lex_state = 140}, - [656] = {.lex_state = 140}, - [657] = {.lex_state = 140}, - [658] = {.lex_state = 71}, + [636] = {.lex_state = 64}, + [637] = {.lex_state = 64}, + [638] = {.lex_state = 64}, + [639] = {.lex_state = 64}, + [640] = {.lex_state = 64}, + [641] = {.lex_state = 64}, + [642] = {.lex_state = 64}, + [643] = {.lex_state = 64}, + [644] = {.lex_state = 64}, + [645] = {.lex_state = 65}, + [646] = {.lex_state = 65}, + [647] = {.lex_state = 65}, + [648] = {.lex_state = 65}, + [649] = {.lex_state = 65}, + [650] = {.lex_state = 65}, + [651] = {.lex_state = 65}, + [652] = {.lex_state = 65}, + [653] = {.lex_state = 64}, + [654] = {.lex_state = 65}, + [655] = {.lex_state = 65}, + [656] = {.lex_state = 65}, + [657] = {.lex_state = 65}, + [658] = {.lex_state = 140}, [659] = {.lex_state = 140}, - [660] = {.lex_state = 70}, - [661] = {.lex_state = 140}, + [660] = {.lex_state = 140}, + [661] = {.lex_state = 65}, [662] = {.lex_state = 140}, [663] = {.lex_state = 140}, [664] = {.lex_state = 140}, - [665] = {.lex_state = 71}, + [665] = {.lex_state = 140}, [666] = {.lex_state = 140}, - [667] = {.lex_state = 70}, - [668] = {.lex_state = 71}, + [667] = {.lex_state = 140}, + [668] = {.lex_state = 140}, [669] = {.lex_state = 140}, [670] = {.lex_state = 140}, [671] = {.lex_state = 140}, @@ -14144,22 +14244,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [695] = {.lex_state = 140}, [696] = {.lex_state = 140}, [697] = {.lex_state = 140}, - [698] = {.lex_state = 140}, + [698] = {.lex_state = 71}, [699] = {.lex_state = 140}, [700] = {.lex_state = 140}, - [701] = {.lex_state = 140}, + [701] = {.lex_state = 71}, [702] = {.lex_state = 140}, [703] = {.lex_state = 140}, [704] = {.lex_state = 140}, [705] = {.lex_state = 140}, [706] = {.lex_state = 140}, - [707] = {.lex_state = 140}, - [708] = {.lex_state = 140}, - [709] = {.lex_state = 140}, + [707] = {.lex_state = 70}, + [708] = {.lex_state = 70}, + [709] = {.lex_state = 70}, [710] = {.lex_state = 140}, [711] = {.lex_state = 140}, [712] = {.lex_state = 140}, - [713] = {.lex_state = 140}, + [713] = {.lex_state = 71}, [714] = {.lex_state = 140}, [715] = {.lex_state = 140}, [716] = {.lex_state = 140}, @@ -14267,206 +14367,206 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [818] = {.lex_state = 140}, [819] = {.lex_state = 140}, [820] = {.lex_state = 140}, - [821] = {.lex_state = 60}, - [822] = {.lex_state = 64}, - [823] = {.lex_state = 64}, - [824] = {.lex_state = 60}, - [825] = {.lex_state = 60}, - [826] = {.lex_state = 64}, - [827] = {.lex_state = 60}, - [828] = {.lex_state = 64}, - [829] = {.lex_state = 64}, - [830] = {.lex_state = 60}, - [831] = {.lex_state = 60}, - [832] = {.lex_state = 60}, - [833] = {.lex_state = 62}, - [834] = {.lex_state = 62}, - [835] = {.lex_state = 62}, - [836] = {.lex_state = 62}, - [837] = {.lex_state = 62}, - [838] = {.lex_state = 62}, - [839] = {.lex_state = 62}, - [840] = {.lex_state = 62}, - [841] = {.lex_state = 62}, - [842] = {.lex_state = 62}, - [843] = {.lex_state = 62}, - [844] = {.lex_state = 64}, - [845] = {.lex_state = 60}, + [821] = {.lex_state = 140}, + [822] = {.lex_state = 140}, + [823] = {.lex_state = 140}, + [824] = {.lex_state = 140}, + [825] = {.lex_state = 140}, + [826] = {.lex_state = 140}, + [827] = {.lex_state = 140}, + [828] = {.lex_state = 140}, + [829] = {.lex_state = 140}, + [830] = {.lex_state = 140}, + [831] = {.lex_state = 140}, + [832] = {.lex_state = 140}, + [833] = {.lex_state = 140}, + [834] = {.lex_state = 140}, + [835] = {.lex_state = 140}, + [836] = {.lex_state = 140}, + [837] = {.lex_state = 140}, + [838] = {.lex_state = 140}, + [839] = {.lex_state = 140}, + [840] = {.lex_state = 140}, + [841] = {.lex_state = 140}, + [842] = {.lex_state = 140}, + [843] = {.lex_state = 140}, + [844] = {.lex_state = 140}, + [845] = {.lex_state = 140}, [846] = {.lex_state = 140}, [847] = {.lex_state = 140}, [848] = {.lex_state = 140}, - [849] = {.lex_state = 64}, - [850] = {.lex_state = 62}, - [851] = {.lex_state = 64}, - [852] = {.lex_state = 64}, - [853] = {.lex_state = 64}, - [854] = {.lex_state = 64}, - [855] = {.lex_state = 64}, - [856] = {.lex_state = 62}, - [857] = {.lex_state = 62}, - [858] = {.lex_state = 62}, - [859] = {.lex_state = 62}, - [860] = {.lex_state = 64}, - [861] = {.lex_state = 62}, - [862] = {.lex_state = 64}, - [863] = {.lex_state = 64}, - [864] = {.lex_state = 62}, - [865] = {.lex_state = 62}, - [866] = {.lex_state = 62}, - [867] = {.lex_state = 64}, + [849] = {.lex_state = 140}, + [850] = {.lex_state = 140}, + [851] = {.lex_state = 140}, + [852] = {.lex_state = 140}, + [853] = {.lex_state = 140}, + [854] = {.lex_state = 140}, + [855] = {.lex_state = 140}, + [856] = {.lex_state = 140}, + [857] = {.lex_state = 140}, + [858] = {.lex_state = 140}, + [859] = {.lex_state = 140}, + [860] = {.lex_state = 140}, + [861] = {.lex_state = 140}, + [862] = {.lex_state = 140}, + [863] = {.lex_state = 140}, + [864] = {.lex_state = 140}, + [865] = {.lex_state = 140}, + [866] = {.lex_state = 60}, + [867] = {.lex_state = 60}, [868] = {.lex_state = 64}, - [869] = {.lex_state = 62}, - [870] = {.lex_state = 62}, - [871] = {.lex_state = 64}, - [872] = {.lex_state = 62}, + [869] = {.lex_state = 60}, + [870] = {.lex_state = 64}, + [871] = {.lex_state = 60}, + [872] = {.lex_state = 64}, [873] = {.lex_state = 64}, [874] = {.lex_state = 64}, - [875] = {.lex_state = 64}, - [876] = {.lex_state = 64}, - [877] = {.lex_state = 64}, - [878] = {.lex_state = 64}, - [879] = {.lex_state = 64}, - [880] = {.lex_state = 64}, - [881] = {.lex_state = 64}, + [875] = {.lex_state = 60}, + [876] = {.lex_state = 60}, + [877] = {.lex_state = 60}, + [878] = {.lex_state = 62}, + [879] = {.lex_state = 62}, + [880] = {.lex_state = 62}, + [881] = {.lex_state = 62}, [882] = {.lex_state = 62}, [883] = {.lex_state = 62}, [884] = {.lex_state = 62}, - [885] = {.lex_state = 64}, + [885] = {.lex_state = 62}, [886] = {.lex_state = 62}, [887] = {.lex_state = 62}, [888] = {.lex_state = 64}, - [889] = {.lex_state = 62}, - [890] = {.lex_state = 60}, - [891] = {.lex_state = 62}, - [892] = {.lex_state = 63}, - [893] = {.lex_state = 64}, - [894] = {.lex_state = 64}, - [895] = {.lex_state = 63}, - [896] = {.lex_state = 60}, - [897] = {.lex_state = 63}, + [889] = {.lex_state = 140}, + [890] = {.lex_state = 62}, + [891] = {.lex_state = 140}, + [892] = {.lex_state = 140}, + [893] = {.lex_state = 60}, + [894] = {.lex_state = 62}, + [895] = {.lex_state = 62}, + [896] = {.lex_state = 62}, + [897] = {.lex_state = 64}, [898] = {.lex_state = 64}, - [899] = {.lex_state = 62}, - [900] = {.lex_state = 62}, - [901] = {.lex_state = 63}, + [899] = {.lex_state = 64}, + [900] = {.lex_state = 64}, + [901] = {.lex_state = 64}, [902] = {.lex_state = 62}, - [903] = {.lex_state = 61}, - [904] = {.lex_state = 61}, - [905] = {.lex_state = 61}, - [906] = {.lex_state = 60}, - [907] = {.lex_state = 61}, - [908] = {.lex_state = 140}, - [909] = {.lex_state = 61}, - [910] = {.lex_state = 61}, + [903] = {.lex_state = 64}, + [904] = {.lex_state = 64}, + [905] = {.lex_state = 64}, + [906] = {.lex_state = 64}, + [907] = {.lex_state = 64}, + [908] = {.lex_state = 64}, + [909] = {.lex_state = 62}, + [910] = {.lex_state = 64}, [911] = {.lex_state = 64}, - [912] = {.lex_state = 64}, + [912] = {.lex_state = 62}, [913] = {.lex_state = 64}, - [914] = {.lex_state = 64}, + [914] = {.lex_state = 62}, [915] = {.lex_state = 64}, - [916] = {.lex_state = 61}, + [916] = {.lex_state = 62}, [917] = {.lex_state = 64}, - [918] = {.lex_state = 61}, + [918] = {.lex_state = 64}, [919] = {.lex_state = 64}, - [920] = {.lex_state = 64}, - [921] = {.lex_state = 64}, + [920] = {.lex_state = 62}, + [921] = {.lex_state = 62}, [922] = {.lex_state = 64}, - [923] = {.lex_state = 60}, - [924] = {.lex_state = 64}, - [925] = {.lex_state = 60}, - [926] = {.lex_state = 140}, - [927] = {.lex_state = 60}, - [928] = {.lex_state = 60}, + [923] = {.lex_state = 62}, + [924] = {.lex_state = 62}, + [925] = {.lex_state = 62}, + [926] = {.lex_state = 62}, + [927] = {.lex_state = 64}, + [928] = {.lex_state = 62}, [929] = {.lex_state = 64}, - [930] = {.lex_state = 64}, + [930] = {.lex_state = 62}, [931] = {.lex_state = 64}, - [932] = {.lex_state = 64}, - [933] = {.lex_state = 64}, - [934] = {.lex_state = 60}, - [935] = {.lex_state = 60}, + [932] = {.lex_state = 63}, + [933] = {.lex_state = 63}, + [934] = {.lex_state = 62}, + [935] = {.lex_state = 64}, [936] = {.lex_state = 64}, - [937] = {.lex_state = 64}, - [938] = {.lex_state = 60}, - [939] = {.lex_state = 64}, + [937] = {.lex_state = 63}, + [938] = {.lex_state = 62}, + [939] = {.lex_state = 62}, [940] = {.lex_state = 62}, [941] = {.lex_state = 64}, - [942] = {.lex_state = 62}, + [942] = {.lex_state = 60}, [943] = {.lex_state = 62}, - [944] = {.lex_state = 62}, - [945] = {.lex_state = 62}, + [944] = {.lex_state = 60}, + [945] = {.lex_state = 64}, [946] = {.lex_state = 62}, - [947] = {.lex_state = 62}, - [948] = {.lex_state = 62}, + [947] = {.lex_state = 63}, + [948] = {.lex_state = 61}, [949] = {.lex_state = 60}, - [950] = {.lex_state = 64}, - [951] = {.lex_state = 62}, - [952] = {.lex_state = 62}, - [953] = {.lex_state = 62}, - [954] = {.lex_state = 62}, - [955] = {.lex_state = 64}, - [956] = {.lex_state = 64}, + [950] = {.lex_state = 61}, + [951] = {.lex_state = 61}, + [952] = {.lex_state = 61}, + [953] = {.lex_state = 61}, + [954] = {.lex_state = 140}, + [955] = {.lex_state = 61}, + [956] = {.lex_state = 61}, [957] = {.lex_state = 64}, - [958] = {.lex_state = 66}, + [958] = {.lex_state = 61}, [959] = {.lex_state = 64}, [960] = {.lex_state = 64}, [961] = {.lex_state = 64}, [962] = {.lex_state = 64}, [963] = {.lex_state = 64}, - [964] = {.lex_state = 66}, + [964] = {.lex_state = 64}, [965] = {.lex_state = 64}, [966] = {.lex_state = 64}, [967] = {.lex_state = 64}, [968] = {.lex_state = 64}, - [969] = {.lex_state = 64}, - [970] = {.lex_state = 66}, - [971] = {.lex_state = 64}, + [969] = {.lex_state = 60}, + [970] = {.lex_state = 64}, + [971] = {.lex_state = 60}, [972] = {.lex_state = 64}, [973] = {.lex_state = 64}, [974] = {.lex_state = 64}, [975] = {.lex_state = 64}, - [976] = {.lex_state = 64}, - [977] = {.lex_state = 64}, - [978] = {.lex_state = 64}, - [979] = {.lex_state = 64}, - [980] = {.lex_state = 64}, - [981] = {.lex_state = 66}, + [976] = {.lex_state = 60}, + [977] = {.lex_state = 60}, + [978] = {.lex_state = 60}, + [979] = {.lex_state = 60}, + [980] = {.lex_state = 140}, + [981] = {.lex_state = 64}, [982] = {.lex_state = 64}, - [983] = {.lex_state = 62}, - [984] = {.lex_state = 64}, - [985] = {.lex_state = 64}, - [986] = {.lex_state = 64}, - [987] = {.lex_state = 66}, - [988] = {.lex_state = 66}, + [983] = {.lex_state = 60}, + [984] = {.lex_state = 62}, + [985] = {.lex_state = 62}, + [986] = {.lex_state = 62}, + [987] = {.lex_state = 62}, + [988] = {.lex_state = 62}, [989] = {.lex_state = 64}, - [990] = {.lex_state = 66}, - [991] = {.lex_state = 64}, + [990] = {.lex_state = 64}, + [991] = {.lex_state = 62}, [992] = {.lex_state = 64}, - [993] = {.lex_state = 66}, - [994] = {.lex_state = 66}, - [995] = {.lex_state = 66}, - [996] = {.lex_state = 66}, - [997] = {.lex_state = 66}, - [998] = {.lex_state = 64}, - [999] = {.lex_state = 66}, + [993] = {.lex_state = 62}, + [994] = {.lex_state = 62}, + [995] = {.lex_state = 62}, + [996] = {.lex_state = 62}, + [997] = {.lex_state = 60}, + [998] = {.lex_state = 62}, + [999] = {.lex_state = 62}, [1000] = {.lex_state = 64}, - [1001] = {.lex_state = 66}, - [1002] = {.lex_state = 66}, - [1003] = {.lex_state = 64}, - [1004] = {.lex_state = 66}, - [1005] = {.lex_state = 66}, + [1001] = {.lex_state = 64}, + [1002] = {.lex_state = 64}, + [1003] = {.lex_state = 66}, + [1004] = {.lex_state = 64}, + [1005] = {.lex_state = 64}, [1006] = {.lex_state = 64}, [1007] = {.lex_state = 64}, [1008] = {.lex_state = 64}, [1009] = {.lex_state = 64}, - [1010] = {.lex_state = 64}, + [1010] = {.lex_state = 66}, [1011] = {.lex_state = 64}, [1012] = {.lex_state = 64}, [1013] = {.lex_state = 64}, [1014] = {.lex_state = 64}, [1015] = {.lex_state = 64}, - [1016] = {.lex_state = 64}, + [1016] = {.lex_state = 66}, [1017] = {.lex_state = 64}, - [1018] = {.lex_state = 66}, + [1018] = {.lex_state = 64}, [1019] = {.lex_state = 64}, - [1020] = {.lex_state = 64}, + [1020] = {.lex_state = 62}, [1021] = {.lex_state = 66}, [1022] = {.lex_state = 64}, [1023] = {.lex_state = 64}, @@ -14478,8 +14578,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1029] = {.lex_state = 64}, [1030] = {.lex_state = 64}, [1031] = {.lex_state = 64}, - [1032] = {.lex_state = 66}, - [1033] = {.lex_state = 66}, + [1032] = {.lex_state = 64}, + [1033] = {.lex_state = 64}, [1034] = {.lex_state = 64}, [1035] = {.lex_state = 64}, [1036] = {.lex_state = 64}, @@ -14487,31 +14587,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1038] = {.lex_state = 64}, [1039] = {.lex_state = 66}, [1040] = {.lex_state = 64}, - [1041] = {.lex_state = 64}, - [1042] = {.lex_state = 64}, + [1041] = {.lex_state = 66}, + [1042] = {.lex_state = 66}, [1043] = {.lex_state = 66}, [1044] = {.lex_state = 64}, - [1045] = {.lex_state = 64}, - [1046] = {.lex_state = 64}, + [1045] = {.lex_state = 66}, + [1046] = {.lex_state = 66}, [1047] = {.lex_state = 66}, - [1048] = {.lex_state = 64}, - [1049] = {.lex_state = 64}, - [1050] = {.lex_state = 66}, + [1048] = {.lex_state = 66}, + [1049] = {.lex_state = 66}, + [1050] = {.lex_state = 64}, [1051] = {.lex_state = 64}, - [1052] = {.lex_state = 66}, - [1053] = {.lex_state = 66}, - [1054] = {.lex_state = 66}, + [1052] = {.lex_state = 64}, + [1053] = {.lex_state = 64}, + [1054] = {.lex_state = 64}, [1055] = {.lex_state = 66}, - [1056] = {.lex_state = 66}, + [1056] = {.lex_state = 64}, [1057] = {.lex_state = 66}, - [1058] = {.lex_state = 66}, + [1058] = {.lex_state = 64}, [1059] = {.lex_state = 64}, [1060] = {.lex_state = 66}, [1061] = {.lex_state = 64}, [1062] = {.lex_state = 64}, - [1063] = {.lex_state = 66}, - [1064] = {.lex_state = 66}, - [1065] = {.lex_state = 66}, + [1063] = {.lex_state = 64}, + [1064] = {.lex_state = 64}, + [1065] = {.lex_state = 64}, [1066] = {.lex_state = 64}, [1067] = {.lex_state = 64}, [1068] = {.lex_state = 64}, @@ -14520,308 +14620,308 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1071] = {.lex_state = 66}, [1072] = {.lex_state = 66}, [1073] = {.lex_state = 66}, - [1074] = {.lex_state = 66}, - [1075] = {.lex_state = 66}, + [1074] = {.lex_state = 64}, + [1075] = {.lex_state = 64}, [1076] = {.lex_state = 66}, [1077] = {.lex_state = 66}, - [1078] = {.lex_state = 66}, - [1079] = {.lex_state = 66}, - [1080] = {.lex_state = 66}, + [1078] = {.lex_state = 64}, + [1079] = {.lex_state = 64}, + [1080] = {.lex_state = 64}, [1081] = {.lex_state = 66}, [1082] = {.lex_state = 64}, [1083] = {.lex_state = 64}, - [1084] = {.lex_state = 66}, + [1084] = {.lex_state = 64}, [1085] = {.lex_state = 64}, [1086] = {.lex_state = 64}, - [1087] = {.lex_state = 66}, + [1087] = {.lex_state = 64}, [1088] = {.lex_state = 66}, [1089] = {.lex_state = 64}, [1090] = {.lex_state = 64}, [1091] = {.lex_state = 64}, [1092] = {.lex_state = 64}, [1093] = {.lex_state = 64}, - [1094] = {.lex_state = 64}, - [1095] = {.lex_state = 65}, - [1096] = {.lex_state = 60}, - [1097] = {.lex_state = 65}, - [1098] = {.lex_state = 60}, - [1099] = {.lex_state = 60}, - [1100] = {.lex_state = 60}, - [1101] = {.lex_state = 60}, - [1102] = {.lex_state = 60}, - [1103] = {.lex_state = 65}, - [1104] = {.lex_state = 64}, - [1105] = {.lex_state = 65}, - [1106] = {.lex_state = 65}, - [1107] = {.lex_state = 65}, - [1108] = {.lex_state = 65}, - [1109] = {.lex_state = 65}, - [1110] = {.lex_state = 65}, - [1111] = {.lex_state = 65}, - [1112] = {.lex_state = 64}, + [1094] = {.lex_state = 66}, + [1095] = {.lex_state = 66}, + [1096] = {.lex_state = 66}, + [1097] = {.lex_state = 66}, + [1098] = {.lex_state = 66}, + [1099] = {.lex_state = 66}, + [1100] = {.lex_state = 64}, + [1101] = {.lex_state = 64}, + [1102] = {.lex_state = 66}, + [1103] = {.lex_state = 64}, + [1104] = {.lex_state = 66}, + [1105] = {.lex_state = 66}, + [1106] = {.lex_state = 66}, + [1107] = {.lex_state = 66}, + [1108] = {.lex_state = 64}, + [1109] = {.lex_state = 64}, + [1110] = {.lex_state = 64}, + [1111] = {.lex_state = 64}, + [1112] = {.lex_state = 66}, [1113] = {.lex_state = 64}, - [1114] = {.lex_state = 65}, - [1115] = {.lex_state = 65}, - [1116] = {.lex_state = 65}, - [1117] = {.lex_state = 60}, - [1118] = {.lex_state = 65}, - [1119] = {.lex_state = 60}, - [1120] = {.lex_state = 60}, + [1114] = {.lex_state = 64}, + [1115] = {.lex_state = 66}, + [1116] = {.lex_state = 66}, + [1117] = {.lex_state = 66}, + [1118] = {.lex_state = 66}, + [1119] = {.lex_state = 64}, + [1120] = {.lex_state = 66}, [1121] = {.lex_state = 64}, - [1122] = {.lex_state = 64}, - [1123] = {.lex_state = 65}, - [1124] = {.lex_state = 65}, - [1125] = {.lex_state = 65}, - [1126] = {.lex_state = 65}, - [1127] = {.lex_state = 60}, - [1128] = {.lex_state = 60}, - [1129] = {.lex_state = 60}, - [1130] = {.lex_state = 60}, - [1131] = {.lex_state = 60}, - [1132] = {.lex_state = 60}, - [1133] = {.lex_state = 60}, - [1134] = {.lex_state = 60}, - [1135] = {.lex_state = 60}, + [1122] = {.lex_state = 66}, + [1123] = {.lex_state = 66}, + [1124] = {.lex_state = 66}, + [1125] = {.lex_state = 64}, + [1126] = {.lex_state = 66}, + [1127] = {.lex_state = 66}, + [1128] = {.lex_state = 66}, + [1129] = {.lex_state = 66}, + [1130] = {.lex_state = 66}, + [1131] = {.lex_state = 66}, + [1132] = {.lex_state = 64}, + [1133] = {.lex_state = 66}, + [1134] = {.lex_state = 64}, + [1135] = {.lex_state = 64}, [1136] = {.lex_state = 64}, [1137] = {.lex_state = 64}, - [1138] = {.lex_state = 60}, - [1139] = {.lex_state = 71}, - [1140] = {.lex_state = 71}, - [1141] = {.lex_state = 70}, - [1142] = {.lex_state = 70}, - [1143] = {.lex_state = 71}, - [1144] = {.lex_state = 71}, - [1145] = {.lex_state = 70}, - [1146] = {.lex_state = 70}, - [1147] = {.lex_state = 70}, - [1148] = {.lex_state = 71}, - [1149] = {.lex_state = 71}, - [1150] = {.lex_state = 70}, - [1151] = {.lex_state = 70}, - [1152] = {.lex_state = 60}, - [1153] = {.lex_state = 64}, - [1154] = {.lex_state = 71}, - [1155] = {.lex_state = 71}, - [1156] = {.lex_state = 71}, + [1138] = {.lex_state = 64}, + [1139] = {.lex_state = 64}, + [1140] = {.lex_state = 60}, + [1141] = {.lex_state = 60}, + [1142] = {.lex_state = 60}, + [1143] = {.lex_state = 60}, + [1144] = {.lex_state = 65}, + [1145] = {.lex_state = 65}, + [1146] = {.lex_state = 64}, + [1147] = {.lex_state = 65}, + [1148] = {.lex_state = 65}, + [1149] = {.lex_state = 65}, + [1150] = {.lex_state = 65}, + [1151] = {.lex_state = 60}, + [1152] = {.lex_state = 65}, + [1153] = {.lex_state = 60}, + [1154] = {.lex_state = 64}, + [1155] = {.lex_state = 60}, + [1156] = {.lex_state = 60}, [1157] = {.lex_state = 60}, - [1158] = {.lex_state = 71}, - [1159] = {.lex_state = 71}, - [1160] = {.lex_state = 71}, - [1161] = {.lex_state = 70}, - [1162] = {.lex_state = 70}, - [1163] = {.lex_state = 64}, - [1164] = {.lex_state = 70}, - [1165] = {.lex_state = 60}, - [1166] = {.lex_state = 64}, - [1167] = {.lex_state = 70}, - [1168] = {.lex_state = 70}, + [1158] = {.lex_state = 60}, + [1159] = {.lex_state = 65}, + [1160] = {.lex_state = 65}, + [1161] = {.lex_state = 65}, + [1162] = {.lex_state = 60}, + [1163] = {.lex_state = 65}, + [1164] = {.lex_state = 64}, + [1165] = {.lex_state = 64}, + [1166] = {.lex_state = 60}, + [1167] = {.lex_state = 60}, + [1168] = {.lex_state = 65}, [1169] = {.lex_state = 60}, - [1170] = {.lex_state = 71}, - [1171] = {.lex_state = 60}, - [1172] = {.lex_state = 71}, - [1173] = {.lex_state = 70}, - [1174] = {.lex_state = 70}, - [1175] = {.lex_state = 70}, - [1176] = {.lex_state = 71}, - [1177] = {.lex_state = 71}, - [1178] = {.lex_state = 70}, - [1179] = {.lex_state = 70}, - [1180] = {.lex_state = 71}, - [1181] = {.lex_state = 71}, - [1182] = {.lex_state = 70}, - [1183] = {.lex_state = 140}, - [1184] = {.lex_state = 140}, - [1185] = {.lex_state = 140}, - [1186] = {.lex_state = 140}, - [1187] = {.lex_state = 140}, - [1188] = {.lex_state = 140}, - [1189] = {.lex_state = 140}, - [1190] = {.lex_state = 140}, - [1191] = {.lex_state = 140}, - [1192] = {.lex_state = 140}, - [1193] = {.lex_state = 64}, - [1194] = {.lex_state = 64}, - [1195] = {.lex_state = 64}, - [1196] = {.lex_state = 64}, - [1197] = {.lex_state = 64}, - [1198] = {.lex_state = 64}, - [1199] = {.lex_state = 64}, - [1200] = {.lex_state = 64}, - [1201] = {.lex_state = 62}, - [1202] = {.lex_state = 62}, - [1203] = {.lex_state = 62}, - [1204] = {.lex_state = 62}, - [1205] = {.lex_state = 62}, - [1206] = {.lex_state = 62}, - [1207] = {.lex_state = 62}, - [1208] = {.lex_state = 62}, - [1209] = {.lex_state = 62}, - [1210] = {.lex_state = 62}, - [1211] = {.lex_state = 62}, - [1212] = {.lex_state = 62}, - [1213] = {.lex_state = 62}, - [1214] = {.lex_state = 64}, - [1215] = {.lex_state = 64}, - [1216] = {.lex_state = 64}, - [1217] = {.lex_state = 64}, - [1218] = {.lex_state = 64}, - [1219] = {.lex_state = 64}, - [1220] = {.lex_state = 64}, - [1221] = {.lex_state = 64}, - [1222] = {.lex_state = 64}, + [1170] = {.lex_state = 60}, + [1171] = {.lex_state = 64}, + [1172] = {.lex_state = 60}, + [1173] = {.lex_state = 60}, + [1174] = {.lex_state = 65}, + [1175] = {.lex_state = 65}, + [1176] = {.lex_state = 65}, + [1177] = {.lex_state = 65}, + [1178] = {.lex_state = 65}, + [1179] = {.lex_state = 60}, + [1180] = {.lex_state = 65}, + [1181] = {.lex_state = 64}, + [1182] = {.lex_state = 64}, + [1183] = {.lex_state = 60}, + [1184] = {.lex_state = 70}, + [1185] = {.lex_state = 70}, + [1186] = {.lex_state = 70}, + [1187] = {.lex_state = 71}, + [1188] = {.lex_state = 70}, + [1189] = {.lex_state = 70}, + [1190] = {.lex_state = 70}, + [1191] = {.lex_state = 70}, + [1192] = {.lex_state = 64}, + [1193] = {.lex_state = 70}, + [1194] = {.lex_state = 71}, + [1195] = {.lex_state = 71}, + [1196] = {.lex_state = 71}, + [1197] = {.lex_state = 70}, + [1198] = {.lex_state = 71}, + [1199] = {.lex_state = 71}, + [1200] = {.lex_state = 70}, + [1201] = {.lex_state = 71}, + [1202] = {.lex_state = 71}, + [1203] = {.lex_state = 60}, + [1204] = {.lex_state = 60}, + [1205] = {.lex_state = 71}, + [1206] = {.lex_state = 71}, + [1207] = {.lex_state = 71}, + [1208] = {.lex_state = 60}, + [1209] = {.lex_state = 70}, + [1210] = {.lex_state = 71}, + [1211] = {.lex_state = 70}, + [1212] = {.lex_state = 64}, + [1213] = {.lex_state = 60}, + [1214] = {.lex_state = 70}, + [1215] = {.lex_state = 71}, + [1216] = {.lex_state = 71}, + [1217] = {.lex_state = 71}, + [1218] = {.lex_state = 70}, + [1219] = {.lex_state = 70}, + [1220] = {.lex_state = 70}, + [1221] = {.lex_state = 71}, + [1222] = {.lex_state = 71}, [1223] = {.lex_state = 64}, - [1224] = {.lex_state = 64}, - [1225] = {.lex_state = 64}, - [1226] = {.lex_state = 64}, - [1227] = {.lex_state = 64}, - [1228] = {.lex_state = 64}, - [1229] = {.lex_state = 64}, - [1230] = {.lex_state = 64}, - [1231] = {.lex_state = 64}, - [1232] = {.lex_state = 64}, - [1233] = {.lex_state = 64}, - [1234] = {.lex_state = 64}, - [1235] = {.lex_state = 64}, - [1236] = {.lex_state = 64}, - [1237] = {.lex_state = 64}, + [1224] = {.lex_state = 70}, + [1225] = {.lex_state = 70}, + [1226] = {.lex_state = 71}, + [1227] = {.lex_state = 60}, + [1228] = {.lex_state = 140}, + [1229] = {.lex_state = 140}, + [1230] = {.lex_state = 140}, + [1231] = {.lex_state = 140}, + [1232] = {.lex_state = 140}, + [1233] = {.lex_state = 140}, + [1234] = {.lex_state = 140}, + [1235] = {.lex_state = 140}, + [1236] = {.lex_state = 140}, + [1237] = {.lex_state = 140}, [1238] = {.lex_state = 64}, [1239] = {.lex_state = 64}, [1240] = {.lex_state = 64}, [1241] = {.lex_state = 64}, [1242] = {.lex_state = 64}, [1243] = {.lex_state = 64}, - [1244] = {.lex_state = 66}, + [1244] = {.lex_state = 64}, [1245] = {.lex_state = 64}, - [1246] = {.lex_state = 64}, - [1247] = {.lex_state = 66}, - [1248] = {.lex_state = 64}, - [1249] = {.lex_state = 66}, - [1250] = {.lex_state = 66}, - [1251] = {.lex_state = 66}, - [1252] = {.lex_state = 66}, - [1253] = {.lex_state = 66}, - [1254] = {.lex_state = 66}, - [1255] = {.lex_state = 64}, - [1256] = {.lex_state = 66}, - [1257] = {.lex_state = 66}, - [1258] = {.lex_state = 66}, - [1259] = {.lex_state = 66}, - [1260] = {.lex_state = 66}, + [1246] = {.lex_state = 62}, + [1247] = {.lex_state = 62}, + [1248] = {.lex_state = 62}, + [1249] = {.lex_state = 62}, + [1250] = {.lex_state = 62}, + [1251] = {.lex_state = 62}, + [1252] = {.lex_state = 62}, + [1253] = {.lex_state = 62}, + [1254] = {.lex_state = 62}, + [1255] = {.lex_state = 62}, + [1256] = {.lex_state = 62}, + [1257] = {.lex_state = 62}, + [1258] = {.lex_state = 62}, + [1259] = {.lex_state = 64}, + [1260] = {.lex_state = 64}, [1261] = {.lex_state = 64}, [1262] = {.lex_state = 64}, [1263] = {.lex_state = 64}, - [1264] = {.lex_state = 65}, + [1264] = {.lex_state = 64}, [1265] = {.lex_state = 64}, [1266] = {.lex_state = 64}, - [1267] = {.lex_state = 65}, + [1267] = {.lex_state = 64}, [1268] = {.lex_state = 64}, [1269] = {.lex_state = 64}, [1270] = {.lex_state = 64}, - [1271] = {.lex_state = 65}, + [1271] = {.lex_state = 64}, [1272] = {.lex_state = 64}, - [1273] = {.lex_state = 65}, - [1274] = {.lex_state = 60}, - [1275] = {.lex_state = 60}, - [1276] = {.lex_state = 60}, - [1277] = {.lex_state = 60}, - [1278] = {.lex_state = 60}, - [1279] = {.lex_state = 60}, - [1280] = {.lex_state = 60}, + [1273] = {.lex_state = 64}, + [1274] = {.lex_state = 64}, + [1275] = {.lex_state = 64}, + [1276] = {.lex_state = 64}, + [1277] = {.lex_state = 64}, + [1278] = {.lex_state = 64}, + [1279] = {.lex_state = 64}, + [1280] = {.lex_state = 64}, [1281] = {.lex_state = 64}, - [1282] = {.lex_state = 60}, - [1283] = {.lex_state = 60}, - [1284] = {.lex_state = 60}, - [1285] = {.lex_state = 60}, - [1286] = {.lex_state = 60}, + [1282] = {.lex_state = 64}, + [1283] = {.lex_state = 64}, + [1284] = {.lex_state = 64}, + [1285] = {.lex_state = 64}, + [1286] = {.lex_state = 64}, [1287] = {.lex_state = 64}, - [1288] = {.lex_state = 60}, - [1289] = {.lex_state = 60}, - [1290] = {.lex_state = 60}, - [1291] = {.lex_state = 60}, - [1292] = {.lex_state = 60}, - [1293] = {.lex_state = 60}, - [1294] = {.lex_state = 60}, - [1295] = {.lex_state = 64}, - [1296] = {.lex_state = 60}, + [1288] = {.lex_state = 64}, + [1289] = {.lex_state = 66}, + [1290] = {.lex_state = 66}, + [1291] = {.lex_state = 66}, + [1292] = {.lex_state = 66}, + [1293] = {.lex_state = 66}, + [1294] = {.lex_state = 64}, + [1295] = {.lex_state = 66}, + [1296] = {.lex_state = 64}, [1297] = {.lex_state = 64}, - [1298] = {.lex_state = 64}, - [1299] = {.lex_state = 60}, - [1300] = {.lex_state = 60}, - [1301] = {.lex_state = 60}, - [1302] = {.lex_state = 60}, - [1303] = {.lex_state = 60}, - [1304] = {.lex_state = 60}, - [1305] = {.lex_state = 60}, - [1306] = {.lex_state = 64}, - [1307] = {.lex_state = 60}, - [1308] = {.lex_state = 60}, - [1309] = {.lex_state = 64}, - [1310] = {.lex_state = 60}, - [1311] = {.lex_state = 60}, - [1312] = {.lex_state = 60}, - [1313] = {.lex_state = 60}, - [1314] = {.lex_state = 60}, - [1315] = {.lex_state = 60}, + [1298] = {.lex_state = 66}, + [1299] = {.lex_state = 66}, + [1300] = {.lex_state = 64}, + [1301] = {.lex_state = 66}, + [1302] = {.lex_state = 66}, + [1303] = {.lex_state = 66}, + [1304] = {.lex_state = 66}, + [1305] = {.lex_state = 66}, + [1306] = {.lex_state = 65}, + [1307] = {.lex_state = 65}, + [1308] = {.lex_state = 64}, + [1309] = {.lex_state = 65}, + [1310] = {.lex_state = 64}, + [1311] = {.lex_state = 65}, + [1312] = {.lex_state = 64}, + [1313] = {.lex_state = 64}, + [1314] = {.lex_state = 64}, + [1315] = {.lex_state = 64}, [1316] = {.lex_state = 60}, [1317] = {.lex_state = 64}, - [1318] = {.lex_state = 60}, - [1319] = {.lex_state = 60}, + [1318] = {.lex_state = 64}, + [1319] = {.lex_state = 64}, [1320] = {.lex_state = 60}, [1321] = {.lex_state = 60}, [1322] = {.lex_state = 60}, [1323] = {.lex_state = 60}, [1324] = {.lex_state = 60}, - [1325] = {.lex_state = 64}, + [1325] = {.lex_state = 60}, [1326] = {.lex_state = 64}, [1327] = {.lex_state = 60}, [1328] = {.lex_state = 60}, - [1329] = {.lex_state = 64}, - [1330] = {.lex_state = 60}, - [1331] = {.lex_state = 60}, - [1332] = {.lex_state = 60}, - [1333] = {.lex_state = 64}, + [1329] = {.lex_state = 60}, + [1330] = {.lex_state = 64}, + [1331] = {.lex_state = 64}, + [1332] = {.lex_state = 64}, + [1333] = {.lex_state = 60}, [1334] = {.lex_state = 64}, [1335] = {.lex_state = 60}, - [1336] = {.lex_state = 64}, - [1337] = {.lex_state = 60}, - [1338] = {.lex_state = 60}, + [1336] = {.lex_state = 60}, + [1337] = {.lex_state = 64}, + [1338] = {.lex_state = 64}, [1339] = {.lex_state = 64}, [1340] = {.lex_state = 64}, - [1341] = {.lex_state = 60}, + [1341] = {.lex_state = 64}, [1342] = {.lex_state = 60}, - [1343] = {.lex_state = 64}, + [1343] = {.lex_state = 60}, [1344] = {.lex_state = 64}, [1345] = {.lex_state = 60}, - [1346] = {.lex_state = 64}, - [1347] = {.lex_state = 60}, + [1346] = {.lex_state = 60}, + [1347] = {.lex_state = 64}, [1348] = {.lex_state = 60}, [1349] = {.lex_state = 60}, [1350] = {.lex_state = 60}, [1351] = {.lex_state = 60}, - [1352] = {.lex_state = 60}, + [1352] = {.lex_state = 64}, [1353] = {.lex_state = 60}, [1354] = {.lex_state = 60}, - [1355] = {.lex_state = 64}, + [1355] = {.lex_state = 60}, [1356] = {.lex_state = 60}, [1357] = {.lex_state = 60}, - [1358] = {.lex_state = 60}, + [1358] = {.lex_state = 64}, [1359] = {.lex_state = 60}, [1360] = {.lex_state = 60}, [1361] = {.lex_state = 60}, - [1362] = {.lex_state = 64}, + [1362] = {.lex_state = 60}, [1363] = {.lex_state = 60}, - [1364] = {.lex_state = 64}, - [1365] = {.lex_state = 60}, + [1364] = {.lex_state = 60}, + [1365] = {.lex_state = 64}, [1366] = {.lex_state = 60}, - [1367] = {.lex_state = 60}, + [1367] = {.lex_state = 64}, [1368] = {.lex_state = 64}, - [1369] = {.lex_state = 64}, + [1369] = {.lex_state = 60}, [1370] = {.lex_state = 60}, [1371] = {.lex_state = 60}, [1372] = {.lex_state = 60}, [1373] = {.lex_state = 64}, [1374] = {.lex_state = 60}, - [1375] = {.lex_state = 64}, + [1375] = {.lex_state = 60}, [1376] = {.lex_state = 60}, [1377] = {.lex_state = 60}, [1378] = {.lex_state = 60}, @@ -14829,215 +14929,215 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1380] = {.lex_state = 60}, [1381] = {.lex_state = 60}, [1382] = {.lex_state = 60}, - [1383] = {.lex_state = 64}, + [1383] = {.lex_state = 60}, [1384] = {.lex_state = 60}, - [1385] = {.lex_state = 64}, - [1386] = {.lex_state = 64}, + [1385] = {.lex_state = 60}, + [1386] = {.lex_state = 60}, [1387] = {.lex_state = 60}, [1388] = {.lex_state = 60}, - [1389] = {.lex_state = 64}, - [1390] = {.lex_state = 64}, - [1391] = {.lex_state = 64}, - [1392] = {.lex_state = 64}, - [1393] = {.lex_state = 64}, + [1389] = {.lex_state = 60}, + [1390] = {.lex_state = 60}, + [1391] = {.lex_state = 60}, + [1392] = {.lex_state = 60}, + [1393] = {.lex_state = 60}, [1394] = {.lex_state = 64}, - [1395] = {.lex_state = 64}, - [1396] = {.lex_state = 64}, - [1397] = {.lex_state = 64}, - [1398] = {.lex_state = 64}, - [1399] = {.lex_state = 64}, - [1400] = {.lex_state = 64}, - [1401] = {.lex_state = 64}, - [1402] = {.lex_state = 65}, - [1403] = {.lex_state = 64}, + [1395] = {.lex_state = 60}, + [1396] = {.lex_state = 60}, + [1397] = {.lex_state = 60}, + [1398] = {.lex_state = 60}, + [1399] = {.lex_state = 60}, + [1400] = {.lex_state = 60}, + [1401] = {.lex_state = 60}, + [1402] = {.lex_state = 60}, + [1403] = {.lex_state = 60}, [1404] = {.lex_state = 64}, [1405] = {.lex_state = 64}, - [1406] = {.lex_state = 64}, + [1406] = {.lex_state = 60}, [1407] = {.lex_state = 64}, - [1408] = {.lex_state = 64}, + [1408] = {.lex_state = 60}, [1409] = {.lex_state = 64}, [1410] = {.lex_state = 64}, - [1411] = {.lex_state = 64}, + [1411] = {.lex_state = 60}, [1412] = {.lex_state = 64}, - [1413] = {.lex_state = 64}, - [1414] = {.lex_state = 31}, - [1415] = {.lex_state = 65}, - [1416] = {.lex_state = 64}, - [1417] = {.lex_state = 64}, - [1418] = {.lex_state = 59}, - [1419] = {.lex_state = 59}, + [1413] = {.lex_state = 60}, + [1414] = {.lex_state = 60}, + [1415] = {.lex_state = 60}, + [1416] = {.lex_state = 60}, + [1417] = {.lex_state = 60}, + [1418] = {.lex_state = 60}, + [1419] = {.lex_state = 60}, [1420] = {.lex_state = 64}, [1421] = {.lex_state = 64}, - [1422] = {.lex_state = 64}, - [1423] = {.lex_state = 64}, - [1424] = {.lex_state = 65}, + [1422] = {.lex_state = 60}, + [1423] = {.lex_state = 60}, + [1424] = {.lex_state = 60}, [1425] = {.lex_state = 64}, - [1426] = {.lex_state = 64}, - [1427] = {.lex_state = 65}, - [1428] = {.lex_state = 64}, - [1429] = {.lex_state = 64}, - [1430] = {.lex_state = 64}, - [1431] = {.lex_state = 64}, - [1432] = {.lex_state = 64}, - [1433] = {.lex_state = 59}, - [1434] = {.lex_state = 59}, - [1435] = {.lex_state = 65}, - [1436] = {.lex_state = 59}, - [1437] = {.lex_state = 59}, - [1438] = {.lex_state = 59}, - [1439] = {.lex_state = 59}, - [1440] = {.lex_state = 59}, - [1441] = {.lex_state = 59}, - [1442] = {.lex_state = 59}, + [1426] = {.lex_state = 60}, + [1427] = {.lex_state = 60}, + [1428] = {.lex_state = 60}, + [1429] = {.lex_state = 60}, + [1430] = {.lex_state = 60}, + [1431] = {.lex_state = 60}, + [1432] = {.lex_state = 60}, + [1433] = {.lex_state = 64}, + [1434] = {.lex_state = 64}, + [1435] = {.lex_state = 64}, + [1436] = {.lex_state = 64}, + [1437] = {.lex_state = 64}, + [1438] = {.lex_state = 64}, + [1439] = {.lex_state = 64}, + [1440] = {.lex_state = 64}, + [1441] = {.lex_state = 64}, + [1442] = {.lex_state = 64}, [1443] = {.lex_state = 64}, - [1444] = {.lex_state = 59}, + [1444] = {.lex_state = 64}, [1445] = {.lex_state = 64}, - [1446] = {.lex_state = 59}, - [1447] = {.lex_state = 59}, - [1448] = {.lex_state = 59}, - [1449] = {.lex_state = 59}, - [1450] = {.lex_state = 65}, - [1451] = {.lex_state = 59}, - [1452] = {.lex_state = 59}, + [1446] = {.lex_state = 65}, + [1447] = {.lex_state = 64}, + [1448] = {.lex_state = 64}, + [1449] = {.lex_state = 64}, + [1450] = {.lex_state = 64}, + [1451] = {.lex_state = 64}, + [1452] = {.lex_state = 64}, [1453] = {.lex_state = 64}, - [1454] = {.lex_state = 59}, - [1455] = {.lex_state = 59}, - [1456] = {.lex_state = 59}, + [1454] = {.lex_state = 64}, + [1455] = {.lex_state = 64}, + [1456] = {.lex_state = 64}, [1457] = {.lex_state = 64}, - [1458] = {.lex_state = 59}, - [1459] = {.lex_state = 59}, + [1458] = {.lex_state = 64}, + [1459] = {.lex_state = 64}, [1460] = {.lex_state = 65}, - [1461] = {.lex_state = 65}, - [1462] = {.lex_state = 65}, - [1463] = {.lex_state = 65}, + [1461] = {.lex_state = 64}, + [1462] = {.lex_state = 59}, + [1463] = {.lex_state = 64}, [1464] = {.lex_state = 65}, [1465] = {.lex_state = 59}, - [1466] = {.lex_state = 65}, - [1467] = {.lex_state = 65}, - [1468] = {.lex_state = 65}, - [1469] = {.lex_state = 65}, - [1470] = {.lex_state = 65}, - [1471] = {.lex_state = 65}, + [1466] = {.lex_state = 64}, + [1467] = {.lex_state = 64}, + [1468] = {.lex_state = 64}, + [1469] = {.lex_state = 64}, + [1470] = {.lex_state = 64}, + [1471] = {.lex_state = 33}, [1472] = {.lex_state = 64}, - [1473] = {.lex_state = 65}, - [1474] = {.lex_state = 65}, + [1473] = {.lex_state = 64}, + [1474] = {.lex_state = 59}, [1475] = {.lex_state = 65}, - [1476] = {.lex_state = 59}, - [1477] = {.lex_state = 59}, - [1478] = {.lex_state = 59}, + [1476] = {.lex_state = 64}, + [1477] = {.lex_state = 64}, + [1478] = {.lex_state = 64}, [1479] = {.lex_state = 59}, [1480] = {.lex_state = 59}, - [1481] = {.lex_state = 59}, + [1481] = {.lex_state = 65}, [1482] = {.lex_state = 59}, [1483] = {.lex_state = 59}, - [1484] = {.lex_state = 59}, + [1484] = {.lex_state = 65}, [1485] = {.lex_state = 59}, [1486] = {.lex_state = 59}, - [1487] = {.lex_state = 59}, - [1488] = {.lex_state = 59}, - [1489] = {.lex_state = 59}, - [1490] = {.lex_state = 59}, - [1491] = {.lex_state = 59}, - [1492] = {.lex_state = 59}, + [1487] = {.lex_state = 65}, + [1488] = {.lex_state = 65}, + [1489] = {.lex_state = 65}, + [1490] = {.lex_state = 65}, + [1491] = {.lex_state = 65}, + [1492] = {.lex_state = 65}, [1493] = {.lex_state = 59}, [1494] = {.lex_state = 59}, - [1495] = {.lex_state = 59}, - [1496] = {.lex_state = 31}, - [1497] = {.lex_state = 64}, - [1498] = {.lex_state = 64}, - [1499] = {.lex_state = 31}, - [1500] = {.lex_state = 31}, - [1501] = {.lex_state = 31}, - [1502] = {.lex_state = 31}, - [1503] = {.lex_state = 31}, - [1504] = {.lex_state = 64}, - [1505] = {.lex_state = 64}, - [1506] = {.lex_state = 31}, - [1507] = {.lex_state = 64}, - [1508] = {.lex_state = 64}, - [1509] = {.lex_state = 31}, - [1510] = {.lex_state = 31}, - [1511] = {.lex_state = 31}, - [1512] = {.lex_state = 64}, - [1513] = {.lex_state = 31}, - [1514] = {.lex_state = 64}, - [1515] = {.lex_state = 64}, - [1516] = {.lex_state = 31}, - [1517] = {.lex_state = 64}, + [1495] = {.lex_state = 65}, + [1496] = {.lex_state = 59}, + [1497] = {.lex_state = 59}, + [1498] = {.lex_state = 59}, + [1499] = {.lex_state = 59}, + [1500] = {.lex_state = 59}, + [1501] = {.lex_state = 65}, + [1502] = {.lex_state = 65}, + [1503] = {.lex_state = 65}, + [1504] = {.lex_state = 65}, + [1505] = {.lex_state = 65}, + [1506] = {.lex_state = 59}, + [1507] = {.lex_state = 59}, + [1508] = {.lex_state = 59}, + [1509] = {.lex_state = 59}, + [1510] = {.lex_state = 59}, + [1511] = {.lex_state = 59}, + [1512] = {.lex_state = 59}, + [1513] = {.lex_state = 59}, + [1514] = {.lex_state = 59}, + [1515] = {.lex_state = 59}, + [1516] = {.lex_state = 59}, + [1517] = {.lex_state = 59}, [1518] = {.lex_state = 64}, - [1519] = {.lex_state = 31}, - [1520] = {.lex_state = 31}, - [1521] = {.lex_state = 31}, - [1522] = {.lex_state = 65}, - [1523] = {.lex_state = 64}, - [1524] = {.lex_state = 31}, - [1525] = {.lex_state = 31}, - [1526] = {.lex_state = 31}, - [1527] = {.lex_state = 31}, - [1528] = {.lex_state = 31}, - [1529] = {.lex_state = 31}, - [1530] = {.lex_state = 31}, - [1531] = {.lex_state = 31}, - [1532] = {.lex_state = 31}, - [1533] = {.lex_state = 31}, - [1534] = {.lex_state = 31}, - [1535] = {.lex_state = 31}, - [1536] = {.lex_state = 31}, - [1537] = {.lex_state = 31}, - [1538] = {.lex_state = 31}, - [1539] = {.lex_state = 31}, - [1540] = {.lex_state = 64}, - [1541] = {.lex_state = 64}, - [1542] = {.lex_state = 31}, - [1543] = {.lex_state = 64}, - [1544] = {.lex_state = 31}, - [1545] = {.lex_state = 65}, - [1546] = {.lex_state = 31}, - [1547] = {.lex_state = 31}, + [1519] = {.lex_state = 59}, + [1520] = {.lex_state = 59}, + [1521] = {.lex_state = 59}, + [1522] = {.lex_state = 59}, + [1523] = {.lex_state = 59}, + [1524] = {.lex_state = 59}, + [1525] = {.lex_state = 59}, + [1526] = {.lex_state = 59}, + [1527] = {.lex_state = 59}, + [1528] = {.lex_state = 64}, + [1529] = {.lex_state = 59}, + [1530] = {.lex_state = 59}, + [1531] = {.lex_state = 59}, + [1532] = {.lex_state = 64}, + [1533] = {.lex_state = 59}, + [1534] = {.lex_state = 59}, + [1535] = {.lex_state = 59}, + [1536] = {.lex_state = 64}, + [1537] = {.lex_state = 64}, + [1538] = {.lex_state = 59}, + [1539] = {.lex_state = 65}, + [1540] = {.lex_state = 65}, + [1541] = {.lex_state = 33}, + [1542] = {.lex_state = 33}, + [1543] = {.lex_state = 33}, + [1544] = {.lex_state = 33}, + [1545] = {.lex_state = 64}, + [1546] = {.lex_state = 33}, + [1547] = {.lex_state = 33}, [1548] = {.lex_state = 64}, - [1549] = {.lex_state = 64}, + [1549] = {.lex_state = 33}, [1550] = {.lex_state = 64}, [1551] = {.lex_state = 64}, - [1552] = {.lex_state = 64}, - [1553] = {.lex_state = 64}, + [1552] = {.lex_state = 65}, + [1553] = {.lex_state = 33}, [1554] = {.lex_state = 64}, - [1555] = {.lex_state = 64}, + [1555] = {.lex_state = 33}, [1556] = {.lex_state = 64}, [1557] = {.lex_state = 64}, - [1558] = {.lex_state = 64}, + [1558] = {.lex_state = 33}, [1559] = {.lex_state = 64}, - [1560] = {.lex_state = 64}, + [1560] = {.lex_state = 33}, [1561] = {.lex_state = 64}, - [1562] = {.lex_state = 64}, - [1563] = {.lex_state = 64}, - [1564] = {.lex_state = 64}, - [1565] = {.lex_state = 64}, - [1566] = {.lex_state = 64}, - [1567] = {.lex_state = 64}, - [1568] = {.lex_state = 64}, + [1562] = {.lex_state = 33}, + [1563] = {.lex_state = 33}, + [1564] = {.lex_state = 33}, + [1565] = {.lex_state = 33}, + [1566] = {.lex_state = 33}, + [1567] = {.lex_state = 33}, + [1568] = {.lex_state = 33}, [1569] = {.lex_state = 64}, [1570] = {.lex_state = 64}, - [1571] = {.lex_state = 64}, - [1572] = {.lex_state = 64}, + [1571] = {.lex_state = 33}, + [1572] = {.lex_state = 33}, [1573] = {.lex_state = 64}, - [1574] = {.lex_state = 64}, - [1575] = {.lex_state = 64}, - [1576] = {.lex_state = 64}, - [1577] = {.lex_state = 64}, - [1578] = {.lex_state = 64}, - [1579] = {.lex_state = 62}, - [1580] = {.lex_state = 64}, - [1581] = {.lex_state = 64}, - [1582] = {.lex_state = 64}, - [1583] = {.lex_state = 64}, - [1584] = {.lex_state = 64}, - [1585] = {.lex_state = 64}, - [1586] = {.lex_state = 64}, - [1587] = {.lex_state = 64}, + [1574] = {.lex_state = 65}, + [1575] = {.lex_state = 33}, + [1576] = {.lex_state = 33}, + [1577] = {.lex_state = 33}, + [1578] = {.lex_state = 33}, + [1579] = {.lex_state = 33}, + [1580] = {.lex_state = 33}, + [1581] = {.lex_state = 33}, + [1582] = {.lex_state = 33}, + [1583] = {.lex_state = 33}, + [1584] = {.lex_state = 33}, + [1585] = {.lex_state = 33}, + [1586] = {.lex_state = 33}, + [1587] = {.lex_state = 33}, [1588] = {.lex_state = 64}, [1589] = {.lex_state = 64}, - [1590] = {.lex_state = 69}, - [1591] = {.lex_state = 64}, + [1590] = {.lex_state = 33}, + [1591] = {.lex_state = 33}, [1592] = {.lex_state = 64}, [1593] = {.lex_state = 64}, [1594] = {.lex_state = 64}, @@ -15048,7 +15148,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1599] = {.lex_state = 64}, [1600] = {.lex_state = 64}, [1601] = {.lex_state = 64}, - [1602] = {.lex_state = 69}, + [1602] = {.lex_state = 64}, [1603] = {.lex_state = 64}, [1604] = {.lex_state = 64}, [1605] = {.lex_state = 64}, @@ -15057,335 +15157,335 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1608] = {.lex_state = 64}, [1609] = {.lex_state = 64}, [1610] = {.lex_state = 64}, - [1611] = {.lex_state = 62}, + [1611] = {.lex_state = 64}, [1612] = {.lex_state = 64}, - [1613] = {.lex_state = 66}, + [1613] = {.lex_state = 64}, [1614] = {.lex_state = 64}, [1615] = {.lex_state = 64}, - [1616] = {.lex_state = 69}, - [1617] = {.lex_state = 66}, + [1616] = {.lex_state = 62}, + [1617] = {.lex_state = 64}, [1618] = {.lex_state = 64}, - [1619] = {.lex_state = 66}, + [1619] = {.lex_state = 64}, [1620] = {.lex_state = 64}, [1621] = {.lex_state = 64}, [1622] = {.lex_state = 64}, - [1623] = {.lex_state = 60}, + [1623] = {.lex_state = 64}, [1624] = {.lex_state = 64}, - [1625] = {.lex_state = 62}, + [1625] = {.lex_state = 64}, [1626] = {.lex_state = 64}, - [1627] = {.lex_state = 62}, + [1627] = {.lex_state = 69}, [1628] = {.lex_state = 64}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 64}, + [1629] = {.lex_state = 64}, + [1630] = {.lex_state = 69}, [1631] = {.lex_state = 64}, - [1632] = {.lex_state = 140}, + [1632] = {.lex_state = 64}, [1633] = {.lex_state = 64}, - [1634] = {.lex_state = 140}, + [1634] = {.lex_state = 64}, [1635] = {.lex_state = 64}, - [1636] = {.lex_state = 0}, + [1636] = {.lex_state = 64}, [1637] = {.lex_state = 64}, [1638] = {.lex_state = 64}, - [1639] = {.lex_state = 140}, - [1640] = {.lex_state = 140}, + [1639] = {.lex_state = 64}, + [1640] = {.lex_state = 64}, [1641] = {.lex_state = 64}, [1642] = {.lex_state = 64}, [1643] = {.lex_state = 64}, [1644] = {.lex_state = 64}, [1645] = {.lex_state = 64}, - [1646] = {.lex_state = 140}, + [1646] = {.lex_state = 64}, [1647] = {.lex_state = 64}, [1648] = {.lex_state = 64}, - [1649] = {.lex_state = 68}, - [1650] = {.lex_state = 140}, + [1649] = {.lex_state = 64}, + [1650] = {.lex_state = 64}, [1651] = {.lex_state = 64}, - [1652] = {.lex_state = 140}, - [1653] = {.lex_state = 60}, - [1654] = {.lex_state = 140}, + [1652] = {.lex_state = 64}, + [1653] = {.lex_state = 62}, + [1654] = {.lex_state = 64}, [1655] = {.lex_state = 64}, - [1656] = {.lex_state = 140}, - [1657] = {.lex_state = 60}, - [1658] = {.lex_state = 140}, - [1659] = {.lex_state = 60}, - [1660] = {.lex_state = 68}, - [1661] = {.lex_state = 140}, - [1662] = {.lex_state = 68}, - [1663] = {.lex_state = 140}, - [1664] = {.lex_state = 140}, - [1665] = {.lex_state = 68}, - [1666] = {.lex_state = 140}, - [1667] = {.lex_state = 140}, - [1668] = {.lex_state = 60}, - [1669] = {.lex_state = 140}, + [1656] = {.lex_state = 60}, + [1657] = {.lex_state = 64}, + [1658] = {.lex_state = 64}, + [1659] = {.lex_state = 66}, + [1660] = {.lex_state = 64}, + [1661] = {.lex_state = 64}, + [1662] = {.lex_state = 64}, + [1663] = {.lex_state = 66}, + [1664] = {.lex_state = 64}, + [1665] = {.lex_state = 64}, + [1666] = {.lex_state = 62}, + [1667] = {.lex_state = 62}, + [1668] = {.lex_state = 64}, + [1669] = {.lex_state = 69}, [1670] = {.lex_state = 64}, - [1671] = {.lex_state = 68}, - [1672] = {.lex_state = 60}, - [1673] = {.lex_state = 140}, - [1674] = {.lex_state = 64}, + [1671] = {.lex_state = 64}, + [1672] = {.lex_state = 66}, + [1673] = {.lex_state = 64}, + [1674] = {.lex_state = 0}, [1675] = {.lex_state = 64}, - [1676] = {.lex_state = 62}, - [1677] = {.lex_state = 62}, - [1678] = {.lex_state = 140}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 140}, - [1681] = {.lex_state = 64}, - [1682] = {.lex_state = 66}, - [1683] = {.lex_state = 66}, + [1676] = {.lex_state = 64}, + [1677] = {.lex_state = 64}, + [1678] = {.lex_state = 64}, + [1679] = {.lex_state = 140}, + [1680] = {.lex_state = 64}, + [1681] = {.lex_state = 140}, + [1682] = {.lex_state = 64}, + [1683] = {.lex_state = 64}, [1684] = {.lex_state = 64}, [1685] = {.lex_state = 140}, [1686] = {.lex_state = 64}, [1687] = {.lex_state = 140}, - [1688] = {.lex_state = 66}, - [1689] = {.lex_state = 140}, - [1690] = {.lex_state = 140}, - [1691] = {.lex_state = 140}, - [1692] = {.lex_state = 62}, - [1693] = {.lex_state = 140}, + [1688] = {.lex_state = 64}, + [1689] = {.lex_state = 64}, + [1690] = {.lex_state = 64}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 140}, + [1693] = {.lex_state = 64}, [1694] = {.lex_state = 140}, - [1695] = {.lex_state = 66}, - [1696] = {.lex_state = 66}, + [1695] = {.lex_state = 140}, + [1696] = {.lex_state = 60}, [1697] = {.lex_state = 140}, - [1698] = {.lex_state = 66}, + [1698] = {.lex_state = 60}, [1699] = {.lex_state = 140}, - [1700] = {.lex_state = 140}, - [1701] = {.lex_state = 66}, - [1702] = {.lex_state = 64}, - [1703] = {.lex_state = 66}, - [1704] = {.lex_state = 140}, - [1705] = {.lex_state = 64}, + [1700] = {.lex_state = 64}, + [1701] = {.lex_state = 140}, + [1702] = {.lex_state = 68}, + [1703] = {.lex_state = 60}, + [1704] = {.lex_state = 68}, + [1705] = {.lex_state = 140}, [1706] = {.lex_state = 64}, - [1707] = {.lex_state = 66}, - [1708] = {.lex_state = 66}, + [1707] = {.lex_state = 140}, + [1708] = {.lex_state = 68}, [1709] = {.lex_state = 140}, - [1710] = {.lex_state = 64}, - [1711] = {.lex_state = 140}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 66}, + [1710] = {.lex_state = 60}, + [1711] = {.lex_state = 68}, + [1712] = {.lex_state = 140}, + [1713] = {.lex_state = 140}, [1714] = {.lex_state = 140}, - [1715] = {.lex_state = 64}, - [1716] = {.lex_state = 140}, + [1715] = {.lex_state = 60}, + [1716] = {.lex_state = 68}, [1717] = {.lex_state = 64}, - [1718] = {.lex_state = 140}, - [1719] = {.lex_state = 64}, - [1720] = {.lex_state = 64}, - [1721] = {.lex_state = 64}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 140}, - [1724] = {.lex_state = 140}, - [1725] = {.lex_state = 64}, - [1726] = {.lex_state = 64}, + [1718] = {.lex_state = 64}, + [1719] = {.lex_state = 66}, + [1720] = {.lex_state = 140}, + [1721] = {.lex_state = 140}, + [1722] = {.lex_state = 140}, + [1723] = {.lex_state = 0}, + [1724] = {.lex_state = 66}, + [1725] = {.lex_state = 140}, + [1726] = {.lex_state = 66}, [1727] = {.lex_state = 64}, - [1728] = {.lex_state = 64}, - [1729] = {.lex_state = 140}, - [1730] = {.lex_state = 140}, - [1731] = {.lex_state = 64}, - [1732] = {.lex_state = 64}, + [1728] = {.lex_state = 66}, + [1729] = {.lex_state = 66}, + [1730] = {.lex_state = 66}, + [1731] = {.lex_state = 66}, + [1732] = {.lex_state = 0}, [1733] = {.lex_state = 64}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 62}, - [1736] = {.lex_state = 64}, - [1737] = {.lex_state = 64}, - [1738] = {.lex_state = 66}, - [1739] = {.lex_state = 69}, + [1734] = {.lex_state = 140}, + [1735] = {.lex_state = 64}, + [1736] = {.lex_state = 140}, + [1737] = {.lex_state = 140}, + [1738] = {.lex_state = 140}, + [1739] = {.lex_state = 62}, [1740] = {.lex_state = 64}, - [1741] = {.lex_state = 140}, - [1742] = {.lex_state = 0}, + [1741] = {.lex_state = 62}, + [1742] = {.lex_state = 140}, [1743] = {.lex_state = 140}, - [1744] = {.lex_state = 140}, + [1744] = {.lex_state = 66}, [1745] = {.lex_state = 64}, - [1746] = {.lex_state = 64}, - [1747] = {.lex_state = 64}, + [1746] = {.lex_state = 140}, + [1747] = {.lex_state = 140}, [1748] = {.lex_state = 64}, - [1749] = {.lex_state = 64}, - [1750] = {.lex_state = 140}, - [1751] = {.lex_state = 140}, - [1752] = {.lex_state = 64}, - [1753] = {.lex_state = 64}, - [1754] = {.lex_state = 64}, + [1749] = {.lex_state = 140}, + [1750] = {.lex_state = 62}, + [1751] = {.lex_state = 66}, + [1752] = {.lex_state = 140}, + [1753] = {.lex_state = 140}, + [1754] = {.lex_state = 66}, [1755] = {.lex_state = 140}, - [1756] = {.lex_state = 64}, + [1756] = {.lex_state = 66}, [1757] = {.lex_state = 64}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 66}, + [1758] = {.lex_state = 64}, + [1759] = {.lex_state = 62}, [1760] = {.lex_state = 64}, - [1761] = {.lex_state = 69}, - [1762] = {.lex_state = 69}, + [1761] = {.lex_state = 64}, + [1762] = {.lex_state = 64}, [1763] = {.lex_state = 64}, - [1764] = {.lex_state = 69}, - [1765] = {.lex_state = 69}, - [1766] = {.lex_state = 66}, + [1764] = {.lex_state = 64}, + [1765] = {.lex_state = 140}, + [1766] = {.lex_state = 64}, [1767] = {.lex_state = 64}, - [1768] = {.lex_state = 69}, + [1768] = {.lex_state = 64}, [1769] = {.lex_state = 64}, - [1770] = {.lex_state = 69}, - [1771] = {.lex_state = 140}, + [1770] = {.lex_state = 64}, + [1771] = {.lex_state = 64}, [1772] = {.lex_state = 64}, [1773] = {.lex_state = 140}, - [1774] = {.lex_state = 64}, - [1775] = {.lex_state = 64}, - [1776] = {.lex_state = 69}, - [1777] = {.lex_state = 62}, - [1778] = {.lex_state = 69}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 69}, - [1781] = {.lex_state = 69}, - [1782] = {.lex_state = 64}, - [1783] = {.lex_state = 140}, - [1784] = {.lex_state = 55}, - [1785] = {.lex_state = 140}, - [1786] = {.lex_state = 140}, - [1787] = {.lex_state = 64}, - [1788] = {.lex_state = 140}, + [1774] = {.lex_state = 140}, + [1775] = {.lex_state = 140}, + [1776] = {.lex_state = 64}, + [1777] = {.lex_state = 140}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 140}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 64}, + [1782] = {.lex_state = 140}, + [1783] = {.lex_state = 64}, + [1784] = {.lex_state = 140}, + [1785] = {.lex_state = 64}, + [1786] = {.lex_state = 64}, + [1787] = {.lex_state = 69}, + [1788] = {.lex_state = 64}, [1789] = {.lex_state = 140}, [1790] = {.lex_state = 64}, [1791] = {.lex_state = 140}, - [1792] = {.lex_state = 140}, - [1793] = {.lex_state = 64}, - [1794] = {.lex_state = 140}, - [1795] = {.lex_state = 62}, - [1796] = {.lex_state = 140}, - [1797] = {.lex_state = 140}, - [1798] = {.lex_state = 140}, - [1799] = {.lex_state = 140}, - [1800] = {.lex_state = 140}, - [1801] = {.lex_state = 140}, - [1802] = {.lex_state = 66}, - [1803] = {.lex_state = 64}, - [1804] = {.lex_state = 38}, - [1805] = {.lex_state = 64}, - [1806] = {.lex_state = 55}, - [1807] = {.lex_state = 40}, - [1808] = {.lex_state = 40}, - [1809] = {.lex_state = 38}, + [1792] = {.lex_state = 64}, + [1793] = {.lex_state = 140}, + [1794] = {.lex_state = 64}, + [1795] = {.lex_state = 66}, + [1796] = {.lex_state = 66}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 69}, + [1799] = {.lex_state = 64}, + [1800] = {.lex_state = 64}, + [1801] = {.lex_state = 64}, + [1802] = {.lex_state = 64}, + [1803] = {.lex_state = 69}, + [1804] = {.lex_state = 64}, + [1805] = {.lex_state = 69}, + [1806] = {.lex_state = 66}, + [1807] = {.lex_state = 0}, + [1808] = {.lex_state = 140}, + [1809] = {.lex_state = 69}, [1810] = {.lex_state = 64}, - [1811] = {.lex_state = 64}, - [1812] = {.lex_state = 64}, + [1811] = {.lex_state = 69}, + [1812] = {.lex_state = 140}, [1813] = {.lex_state = 64}, [1814] = {.lex_state = 64}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 64}, - [1817] = {.lex_state = 64}, - [1818] = {.lex_state = 64}, - [1819] = {.lex_state = 38}, - [1820] = {.lex_state = 64}, - [1821] = {.lex_state = 45}, - [1822] = {.lex_state = 62}, - [1823] = {.lex_state = 62}, - [1824] = {.lex_state = 64}, - [1825] = {.lex_state = 64}, - [1826] = {.lex_state = 40}, - [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 40}, - [1829] = {.lex_state = 66}, - [1830] = {.lex_state = 62}, - [1831] = {.lex_state = 64}, + [1815] = {.lex_state = 69}, + [1816] = {.lex_state = 62}, + [1817] = {.lex_state = 140}, + [1818] = {.lex_state = 69}, + [1819] = {.lex_state = 69}, + [1820] = {.lex_state = 69}, + [1821] = {.lex_state = 64}, + [1822] = {.lex_state = 64}, + [1823] = {.lex_state = 69}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 140}, + [1826] = {.lex_state = 64}, + [1827] = {.lex_state = 64}, + [1828] = {.lex_state = 140}, + [1829] = {.lex_state = 140}, + [1830] = {.lex_state = 140}, + [1831] = {.lex_state = 140}, [1832] = {.lex_state = 140}, - [1833] = {.lex_state = 64}, - [1834] = {.lex_state = 64}, - [1835] = {.lex_state = 38}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 64}, - [1838] = {.lex_state = 0}, + [1833] = {.lex_state = 140}, + [1834] = {.lex_state = 62}, + [1835] = {.lex_state = 140}, + [1836] = {.lex_state = 140}, + [1837] = {.lex_state = 140}, + [1838] = {.lex_state = 140}, [1839] = {.lex_state = 64}, - [1840] = {.lex_state = 40}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 64}, - [1843] = {.lex_state = 64}, - [1844] = {.lex_state = 64}, - [1845] = {.lex_state = 64}, - [1846] = {.lex_state = 38}, - [1847] = {.lex_state = 40}, - [1848] = {.lex_state = 0}, + [1840] = {.lex_state = 64}, + [1841] = {.lex_state = 64}, + [1842] = {.lex_state = 66}, + [1843] = {.lex_state = 140}, + [1844] = {.lex_state = 140}, + [1845] = {.lex_state = 140}, + [1846] = {.lex_state = 140}, + [1847] = {.lex_state = 55}, + [1848] = {.lex_state = 64}, [1849] = {.lex_state = 64}, - [1850] = {.lex_state = 62}, - [1851] = {.lex_state = 64}, - [1852] = {.lex_state = 140}, - [1853] = {.lex_state = 64}, + [1850] = {.lex_state = 64}, + [1851] = {.lex_state = 55}, + [1852] = {.lex_state = 64}, + [1853] = {.lex_state = 38}, [1854] = {.lex_state = 64}, [1855] = {.lex_state = 64}, [1856] = {.lex_state = 64}, - [1857] = {.lex_state = 45}, + [1857] = {.lex_state = 64}, [1858] = {.lex_state = 64}, - [1859] = {.lex_state = 45}, - [1860] = {.lex_state = 38}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 38}, - [1863] = {.lex_state = 64}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 45}, - [1866] = {.lex_state = 40}, - [1867] = {.lex_state = 64}, - [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 40}, - [1870] = {.lex_state = 64}, - [1871] = {.lex_state = 45}, - [1872] = {.lex_state = 38}, - [1873] = {.lex_state = 40}, - [1874] = {.lex_state = 64}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 64}, - [1877] = {.lex_state = 38}, - [1878] = {.lex_state = 64}, - [1879] = {.lex_state = 0}, + [1859] = {.lex_state = 64}, + [1860] = {.lex_state = 64}, + [1861] = {.lex_state = 64}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 38}, + [1864] = {.lex_state = 64}, + [1865] = {.lex_state = 64}, + [1866] = {.lex_state = 64}, + [1867] = {.lex_state = 38}, + [1868] = {.lex_state = 38}, + [1869] = {.lex_state = 62}, + [1870] = {.lex_state = 62}, + [1871] = {.lex_state = 64}, + [1872] = {.lex_state = 43}, + [1873] = {.lex_state = 45}, + [1874] = {.lex_state = 140}, + [1875] = {.lex_state = 45}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 64}, + [1878] = {.lex_state = 38}, + [1879] = {.lex_state = 43}, [1880] = {.lex_state = 64}, - [1881] = {.lex_state = 0}, + [1881] = {.lex_state = 43}, [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 55}, + [1883] = {.lex_state = 43}, + [1884] = {.lex_state = 38}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, + [1886] = {.lex_state = 62}, + [1887] = {.lex_state = 64}, [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 0}, + [1889] = {.lex_state = 64}, + [1890] = {.lex_state = 64}, + [1891] = {.lex_state = 64}, + [1892] = {.lex_state = 38}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 42}, - [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 64}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, + [1894] = {.lex_state = 62}, + [1895] = {.lex_state = 64}, + [1896] = {.lex_state = 43}, + [1897] = {.lex_state = 38}, + [1898] = {.lex_state = 38}, + [1899] = {.lex_state = 64}, + [1900] = {.lex_state = 43}, + [1901] = {.lex_state = 64}, + [1902] = {.lex_state = 64}, + [1903] = {.lex_state = 64}, + [1904] = {.lex_state = 45}, + [1905] = {.lex_state = 43}, + [1906] = {.lex_state = 64}, [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 64}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 64}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 64}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, + [1908] = {.lex_state = 66}, + [1909] = {.lex_state = 64}, + [1910] = {.lex_state = 45}, + [1911] = {.lex_state = 43}, + [1912] = {.lex_state = 45}, + [1913] = {.lex_state = 0}, + [1914] = {.lex_state = 64}, + [1915] = {.lex_state = 43}, + [1916] = {.lex_state = 64}, + [1917] = {.lex_state = 0}, + [1918] = {.lex_state = 64}, + [1919] = {.lex_state = 64}, + [1920] = {.lex_state = 140}, [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 55}, - [1925] = {.lex_state = 55}, + [1922] = {.lex_state = 64}, + [1923] = {.lex_state = 64}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 0}, [1926] = {.lex_state = 0}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 42}, + [1928] = {.lex_state = 64}, + [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 64}, + [1932] = {.lex_state = 0}, [1933] = {.lex_state = 0}, [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 0}, + [1937] = {.lex_state = 55}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 64}, + [1939] = {.lex_state = 0}, [1940] = {.lex_state = 0}, [1941] = {.lex_state = 0}, [1942] = {.lex_state = 0}, @@ -15397,37 +15497,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1948] = {.lex_state = 0}, [1949] = {.lex_state = 0}, [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 0}, + [1951] = {.lex_state = 64}, [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 45}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 55}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 0}, + [1955] = {.lex_state = 55}, + [1956] = {.lex_state = 55}, + [1957] = {.lex_state = 0}, + [1958] = {.lex_state = 64}, + [1959] = {.lex_state = 64}, + [1960] = {.lex_state = 45}, + [1961] = {.lex_state = 55}, [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 55}, + [1963] = {.lex_state = 64}, [1964] = {.lex_state = 0}, [1965] = {.lex_state = 0}, [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 55}, - [1968] = {.lex_state = 64}, - [1969] = {.lex_state = 42}, + [1967] = {.lex_state = 0}, + [1968] = {.lex_state = 0}, + [1969] = {.lex_state = 0}, [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 64}, - [1972] = {.lex_state = 42}, - [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, - [1976] = {.lex_state = 0}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 64}, + [1973] = {.lex_state = 64}, + [1974] = {.lex_state = 45}, + [1975] = {.lex_state = 40}, + [1976] = {.lex_state = 55}, [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 64}, - [1981] = {.lex_state = 55}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 0}, [1982] = {.lex_state = 0}, [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, @@ -15437,15 +15537,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 42}, + [1991] = {.lex_state = 55}, [1992] = {.lex_state = 0}, [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 45}, + [1994] = {.lex_state = 0}, [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 0}, + [1996] = {.lex_state = 55}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, + [1999] = {.lex_state = 45}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, @@ -15460,415 +15560,478 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2011] = {.lex_state = 0}, [2012] = {.lex_state = 0}, [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 64}, + [2014] = {.lex_state = 64}, + [2015] = {.lex_state = 40}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 45}, - [2018] = {.lex_state = 64}, - [2019] = {.lex_state = 64}, - [2020] = {.lex_state = 45}, + [2017] = {.lex_state = 0}, + [2018] = {.lex_state = 40}, + [2019] = {.lex_state = 0}, + [2020] = {.lex_state = 0}, [2021] = {.lex_state = 0}, [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 55}, + [2023] = {.lex_state = 0}, [2024] = {.lex_state = 0}, - [2025] = {.lex_state = 64}, - [2026] = {.lex_state = 41}, + [2025] = {.lex_state = 0}, + [2026] = {.lex_state = 0}, [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 55}, - [2029] = {.lex_state = 41}, - [2030] = {.lex_state = 140}, + [2028] = {.lex_state = 64}, + [2029] = {.lex_state = 0}, + [2030] = {.lex_state = 0}, [2031] = {.lex_state = 0}, [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 41}, - [2034] = {.lex_state = 64}, - [2035] = {.lex_state = 41}, - [2036] = {.lex_state = 140}, - [2037] = {.lex_state = 140}, + [2033] = {.lex_state = 0}, + [2034] = {.lex_state = 0}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 0}, + [2037] = {.lex_state = 0}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 140}, + [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, [2041] = {.lex_state = 64}, - [2042] = {.lex_state = 140}, + [2042] = {.lex_state = 0}, [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 140}, - [2045] = {.lex_state = 140}, - [2046] = {.lex_state = 140}, - [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 140}, + [2044] = {.lex_state = 64}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 45}, + [2048] = {.lex_state = 0}, [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 41}, - [2052] = {.lex_state = 140}, - [2053] = {.lex_state = 140}, - [2054] = {.lex_state = 140}, - [2055] = {.lex_state = 41}, - [2056] = {.lex_state = 140}, - [2057] = {.lex_state = 64}, - [2058] = {.lex_state = 0}, + [2050] = {.lex_state = 40}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 0}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 0}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 0}, + [2057] = {.lex_state = 0}, + [2058] = {.lex_state = 64}, [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 41}, - [2061] = {.lex_state = 140}, - [2062] = {.lex_state = 140}, - [2063] = {.lex_state = 140}, + [2060] = {.lex_state = 0}, + [2061] = {.lex_state = 0}, + [2062] = {.lex_state = 40}, + [2063] = {.lex_state = 64}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 140}, - [2067] = {.lex_state = 140}, - [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 0}, - [2070] = {.lex_state = 140}, - [2071] = {.lex_state = 140}, - [2072] = {.lex_state = 140}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 39}, + [2069] = {.lex_state = 140}, + [2070] = {.lex_state = 39}, + [2071] = {.lex_state = 39}, + [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 64}, - [2075] = {.lex_state = 41}, - [2076] = {.lex_state = 140}, - [2077] = {.lex_state = 0}, + [2074] = {.lex_state = 0}, + [2075] = {.lex_state = 39}, + [2076] = {.lex_state = 0}, + [2077] = {.lex_state = 39}, [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 64}, + [2079] = {.lex_state = 0}, [2080] = {.lex_state = 140}, - [2081] = {.lex_state = 140}, + [2081] = {.lex_state = 64}, [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 140}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 41}, - [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 0}, + [2083] = {.lex_state = 0}, + [2084] = {.lex_state = 140}, + [2085] = {.lex_state = 55}, + [2086] = {.lex_state = 140}, + [2087] = {.lex_state = 140}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 64}, - [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 41}, - [2094] = {.lex_state = 55}, + [2090] = {.lex_state = 64}, + [2091] = {.lex_state = 140}, + [2092] = {.lex_state = 55}, + [2093] = {.lex_state = 140}, + [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, [2097] = {.lex_state = 140}, - [2098] = {.lex_state = 41}, + [2098] = {.lex_state = 55}, [2099] = {.lex_state = 140}, [2100] = {.lex_state = 140}, - [2101] = {.lex_state = 64}, - [2102] = {.lex_state = 0}, - [2103] = {.lex_state = 41}, - [2104] = {.lex_state = 41}, - [2105] = {.lex_state = 41}, + [2101] = {.lex_state = 39}, + [2102] = {.lex_state = 39}, + [2103] = {.lex_state = 140}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 0}, [2106] = {.lex_state = 140}, - [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 41}, + [2107] = {.lex_state = 140}, + [2108] = {.lex_state = 140}, [2109] = {.lex_state = 140}, - [2110] = {.lex_state = 41}, - [2111] = {.lex_state = 0}, - [2112] = {.lex_state = 41}, - [2113] = {.lex_state = 41}, - [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 41}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 41}, - [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 0}, + [2110] = {.lex_state = 140}, + [2111] = {.lex_state = 140}, + [2112] = {.lex_state = 140}, + [2113] = {.lex_state = 0}, + [2114] = {.lex_state = 64}, + [2115] = {.lex_state = 0}, + [2116] = {.lex_state = 140}, + [2117] = {.lex_state = 140}, + [2118] = {.lex_state = 140}, + [2119] = {.lex_state = 140}, + [2120] = {.lex_state = 140}, [2121] = {.lex_state = 0}, - [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 41}, - [2124] = {.lex_state = 53}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 53}, - [2128] = {.lex_state = 64}, - [2129] = {.lex_state = 53}, - [2130] = {.lex_state = 53}, - [2131] = {.lex_state = 42}, - [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 42}, - [2134] = {.lex_state = 53}, + [2122] = {.lex_state = 140}, + [2123] = {.lex_state = 0}, + [2124] = {.lex_state = 0}, + [2125] = {.lex_state = 140}, + [2126] = {.lex_state = 140}, + [2127] = {.lex_state = 140}, + [2128] = {.lex_state = 140}, + [2129] = {.lex_state = 64}, + [2130] = {.lex_state = 0}, + [2131] = {.lex_state = 64}, + [2132] = {.lex_state = 140}, + [2133] = {.lex_state = 0}, + [2134] = {.lex_state = 140}, [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 140}, - [2137] = {.lex_state = 42}, - [2138] = {.lex_state = 42}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 53}, - [2141] = {.lex_state = 42}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 53}, - [2146] = {.lex_state = 42}, - [2147] = {.lex_state = 42}, - [2148] = {.lex_state = 0}, + [2136] = {.lex_state = 39}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 140}, + [2139] = {.lex_state = 140}, + [2140] = {.lex_state = 140}, + [2141] = {.lex_state = 140}, + [2142] = {.lex_state = 64}, + [2143] = {.lex_state = 39}, + [2144] = {.lex_state = 39}, + [2145] = {.lex_state = 140}, + [2146] = {.lex_state = 0}, + [2147] = {.lex_state = 140}, + [2148] = {.lex_state = 39}, [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 42}, + [2150] = {.lex_state = 140}, + [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 42}, + [2154] = {.lex_state = 140}, [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 0}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 42}, - [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 0}, - [2161] = {.lex_state = 42}, + [2156] = {.lex_state = 140}, + [2157] = {.lex_state = 140}, + [2158] = {.lex_state = 64}, + [2159] = {.lex_state = 39}, + [2160] = {.lex_state = 39}, + [2161] = {.lex_state = 140}, [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 64}, - [2167] = {.lex_state = 53}, - [2168] = {.lex_state = 42}, - [2169] = {.lex_state = 42}, - [2170] = {.lex_state = 53}, - [2171] = {.lex_state = 42}, - [2172] = {.lex_state = 64}, - [2173] = {.lex_state = 140}, - [2174] = {.lex_state = 42}, - [2175] = {.lex_state = 42}, - [2176] = {.lex_state = 53}, - [2177] = {.lex_state = 42}, - [2178] = {.lex_state = 64}, - [2179] = {.lex_state = 64}, - [2180] = {.lex_state = 64}, - [2181] = {.lex_state = 64}, - [2182] = {.lex_state = 42}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 53}, + [2163] = {.lex_state = 39}, + [2164] = {.lex_state = 140}, + [2165] = {.lex_state = 39}, + [2166] = {.lex_state = 0}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 39}, + [2169] = {.lex_state = 39}, + [2170] = {.lex_state = 64}, + [2171] = {.lex_state = 39}, + [2172] = {.lex_state = 0}, + [2173] = {.lex_state = 39}, + [2174] = {.lex_state = 39}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 0}, + [2178] = {.lex_state = 0}, + [2179] = {.lex_state = 39}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 40}, + [2182] = {.lex_state = 0}, + [2183] = {.lex_state = 53}, + [2184] = {.lex_state = 40}, [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 53}, - [2187] = {.lex_state = 53}, - [2188] = {.lex_state = 64}, - [2189] = {.lex_state = 0}, + [2186] = {.lex_state = 40}, + [2187] = {.lex_state = 140}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 53}, [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 53}, - [2192] = {.lex_state = 42}, - [2193] = {.lex_state = 64}, - [2194] = {.lex_state = 42}, + [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 40}, + [2193] = {.lex_state = 40}, + [2194] = {.lex_state = 0}, [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 53}, - [2197] = {.lex_state = 53}, - [2198] = {.lex_state = 53}, - [2199] = {.lex_state = 0}, + [2196] = {.lex_state = 0}, + [2197] = {.lex_state = 40}, + [2198] = {.lex_state = 0}, + [2199] = {.lex_state = 40}, [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 53}, - [2202] = {.lex_state = 42}, - [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 0}, - [2206] = {.lex_state = 0}, - [2207] = {.lex_state = 53}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 40}, + [2203] = {.lex_state = 40}, + [2204] = {.lex_state = 40}, + [2205] = {.lex_state = 40}, + [2206] = {.lex_state = 64}, + [2207] = {.lex_state = 0}, [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 64}, + [2209] = {.lex_state = 0}, [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 64}, - [2212] = {.lex_state = 0}, + [2211] = {.lex_state = 0}, + [2212] = {.lex_state = 40}, [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 42}, + [2214] = {.lex_state = 0}, [2215] = {.lex_state = 0}, [2216] = {.lex_state = 53}, - [2217] = {.lex_state = 64}, - [2218] = {.lex_state = 53}, - [2219] = {.lex_state = 64}, - [2220] = {.lex_state = 0}, + [2217] = {.lex_state = 40}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 40}, + [2220] = {.lex_state = 40}, [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 64}, - [2224] = {.lex_state = 64}, - [2225] = {.lex_state = 53}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 64}, - [2228] = {.lex_state = 64}, - [2229] = {.lex_state = 64}, + [2222] = {.lex_state = 40}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 40}, + [2226] = {.lex_state = 40}, + [2227] = {.lex_state = 140}, + [2228] = {.lex_state = 40}, + [2229] = {.lex_state = 0}, [2230] = {.lex_state = 64}, - [2231] = {.lex_state = 0}, - [2232] = {.lex_state = 0}, + [2231] = {.lex_state = 64}, + [2232] = {.lex_state = 53}, [2233] = {.lex_state = 53}, - [2234] = {.lex_state = 53}, - [2235] = {.lex_state = 42}, - [2236] = {.lex_state = 53}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 53}, + [2236] = {.lex_state = 140}, [2237] = {.lex_state = 53}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, + [2238] = {.lex_state = 40}, + [2239] = {.lex_state = 64}, [2240] = {.lex_state = 0}, [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 64}, + [2242] = {.lex_state = 0}, [2243] = {.lex_state = 53}, [2244] = {.lex_state = 53}, [2245] = {.lex_state = 0}, [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 53}, - [2248] = {.lex_state = 53}, - [2249] = {.lex_state = 42}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 0}, [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 53}, + [2251] = {.lex_state = 0}, [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 42}, - [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 0}, - [2256] = {.lex_state = 53}, - [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 53}, + [2253] = {.lex_state = 53}, + [2254] = {.lex_state = 64}, + [2255] = {.lex_state = 64}, + [2256] = {.lex_state = 0}, + [2257] = {.lex_state = 140}, + [2258] = {.lex_state = 0}, [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 0}, + [2260] = {.lex_state = 64}, [2261] = {.lex_state = 53}, - [2262] = {.lex_state = 53}, - [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 0}, + [2262] = {.lex_state = 0}, + [2263] = {.lex_state = 64}, + [2264] = {.lex_state = 40}, + [2265] = {.lex_state = 53}, [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 64}, - [2268] = {.lex_state = 64}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, [2269] = {.lex_state = 0}, [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0}, + [2271] = {.lex_state = 64}, [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 0}, + [2273] = {.lex_state = 64}, [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 64}, - [2277] = {.lex_state = 0}, - [2278] = {.lex_state = 140}, - [2279] = {.lex_state = 42}, - [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 53}, + [2275] = {.lex_state = 64}, + [2276] = {.lex_state = 140}, + [2277] = {.lex_state = 53}, + [2278] = {.lex_state = 53}, + [2279] = {.lex_state = 40}, + [2280] = {.lex_state = 64}, + [2281] = {.lex_state = 40}, [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 140}, - [2284] = {.lex_state = 140}, + [2283] = {.lex_state = 0}, + [2284] = {.lex_state = 0}, [2285] = {.lex_state = 53}, [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 64}, + [2287] = {.lex_state = 53}, + [2288] = {.lex_state = 53}, [2289] = {.lex_state = 0}, - [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 64}, - [2293] = {.lex_state = 53}, + [2290] = {.lex_state = 40}, + [2291] = {.lex_state = 64}, + [2292] = {.lex_state = 53}, + [2293] = {.lex_state = 64}, [2294] = {.lex_state = 0}, - [2295] = {.lex_state = 42}, - [2296] = {.lex_state = 53}, - [2297] = {.lex_state = 42}, - [2298] = {.lex_state = 64}, - [2299] = {.lex_state = 64}, - [2300] = {.lex_state = 0}, + [2295] = {.lex_state = 53}, + [2296] = {.lex_state = 64}, + [2297] = {.lex_state = 0}, + [2298] = {.lex_state = 53}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 40}, [2301] = {.lex_state = 0}, - [2302] = {.lex_state = 42}, + [2302] = {.lex_state = 53}, [2303] = {.lex_state = 0}, [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 42}, - [2306] = {.lex_state = 64}, - [2307] = {.lex_state = 64}, - [2308] = {.lex_state = 0}, + [2305] = {.lex_state = 0}, + [2306] = {.lex_state = 53}, + [2307] = {.lex_state = 53}, + [2308] = {.lex_state = 53}, [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 0}, - [2311] = {.lex_state = 42}, + [2310] = {.lex_state = 53}, + [2311] = {.lex_state = 64}, [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 140}, + [2313] = {.lex_state = 0}, [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 0}, - [2316] = {.lex_state = 53}, - [2317] = {.lex_state = 64}, - [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 0}, + [2315] = {.lex_state = 64}, + [2316] = {.lex_state = 0}, + [2317] = {.lex_state = 0}, + [2318] = {.lex_state = 40}, + [2319] = {.lex_state = 53}, [2320] = {.lex_state = 0}, - [2321] = {.lex_state = 42}, + [2321] = {.lex_state = 64}, [2322] = {.lex_state = 64}, - [2323] = {.lex_state = 64}, - [2324] = {.lex_state = 42}, - [2325] = {.lex_state = 64}, - [2326] = {.lex_state = 64}, - [2327] = {.lex_state = 64}, + [2323] = {.lex_state = 0}, + [2324] = {.lex_state = 53}, + [2325] = {.lex_state = 0}, + [2326] = {.lex_state = 0}, + [2327] = {.lex_state = 53}, [2328] = {.lex_state = 64}, [2329] = {.lex_state = 0}, - [2330] = {.lex_state = 0}, - [2331] = {.lex_state = 53}, + [2330] = {.lex_state = 64}, + [2331] = {.lex_state = 0}, [2332] = {.lex_state = 0}, - [2333] = {.lex_state = 64}, + [2333] = {.lex_state = 0}, [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 140}, - [2336] = {.lex_state = 0}, + [2335] = {.lex_state = 0}, + [2336] = {.lex_state = 53}, [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 53}, + [2338] = {.lex_state = 0}, [2339] = {.lex_state = 0}, - [2340] = {.lex_state = 64}, - [2341] = {.lex_state = 53}, - [2342] = {.lex_state = 0}, - [2343] = {.lex_state = 0}, + [2340] = {.lex_state = 0}, + [2341] = {.lex_state = 0}, + [2342] = {.lex_state = 64}, + [2343] = {.lex_state = 40}, [2344] = {.lex_state = 0}, - [2345] = {.lex_state = 53}, + [2345] = {.lex_state = 0}, [2346] = {.lex_state = 0}, - [2347] = {.lex_state = 0}, - [2348] = {.lex_state = 64}, - [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 53}, - [2352] = {.lex_state = 64}, - [2353] = {.lex_state = 64}, - [2354] = {.lex_state = 64}, - [2355] = {.lex_state = 42}, - [2356] = {.lex_state = 53}, - [2357] = {.lex_state = 42}, + [2347] = {.lex_state = 53}, + [2348] = {.lex_state = 40}, + [2349] = {.lex_state = 53}, + [2350] = {.lex_state = 64}, + [2351] = {.lex_state = 64}, + [2352] = {.lex_state = 0}, + [2353] = {.lex_state = 0}, + [2354] = {.lex_state = 53}, + [2355] = {.lex_state = 64}, + [2356] = {.lex_state = 64}, + [2357] = {.lex_state = 64}, [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 53}, - [2360] = {.lex_state = 140}, - [2361] = {.lex_state = 53}, - [2362] = {.lex_state = 53}, - [2363] = {.lex_state = 140}, + [2359] = {.lex_state = 0}, + [2360] = {.lex_state = 0}, + [2361] = {.lex_state = 0}, + [2362] = {.lex_state = 0}, + [2363] = {.lex_state = 64}, [2364] = {.lex_state = 0}, [2365] = {.lex_state = 0}, [2366] = {.lex_state = 0}, - [2367] = {.lex_state = 0}, - [2368] = {.lex_state = 64}, + [2367] = {.lex_state = 64}, + [2368] = {.lex_state = 0}, [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 64}, - [2371] = {.lex_state = 64}, - [2372] = {.lex_state = 0}, - [2373] = {.lex_state = 140}, - [2374] = {.lex_state = 42}, + [2370] = {.lex_state = 0}, + [2371] = {.lex_state = 40}, + [2372] = {.lex_state = 64}, + [2373] = {.lex_state = 40}, + [2374] = {.lex_state = 64}, [2375] = {.lex_state = 53}, - [2376] = {.lex_state = 64}, + [2376] = {.lex_state = 0}, [2377] = {.lex_state = 53}, [2378] = {.lex_state = 0}, [2379] = {.lex_state = 0}, - [2380] = {.lex_state = 0}, - [2381] = {.lex_state = 0}, - [2382] = {.lex_state = 0}, - [2383] = {.lex_state = 0}, - [2384] = {.lex_state = 140}, - [2385] = {.lex_state = 0}, - [2386] = {.lex_state = 140}, + [2380] = {.lex_state = 64}, + [2381] = {.lex_state = 53}, + [2382] = {.lex_state = 53}, + [2383] = {.lex_state = 53}, + [2384] = {.lex_state = 64}, + [2385] = {.lex_state = 53}, + [2386] = {.lex_state = 64}, [2387] = {.lex_state = 64}, - [2388] = {.lex_state = 140}, + [2388] = {.lex_state = 0}, [2389] = {.lex_state = 0}, - [2390] = {.lex_state = 0}, - [2391] = {.lex_state = 0}, - [2392] = {.lex_state = 0}, - [2393] = {.lex_state = 53}, + [2390] = {.lex_state = 53}, + [2391] = {.lex_state = 53}, + [2392] = {.lex_state = 64}, + [2393] = {.lex_state = 0}, [2394] = {.lex_state = 0}, - [2395] = {.lex_state = 64}, + [2395] = {.lex_state = 53}, [2396] = {.lex_state = 53}, - [2397] = {.lex_state = 42}, + [2397] = {.lex_state = 0}, [2398] = {.lex_state = 0}, - [2399] = {.lex_state = 0}, + [2399] = {.lex_state = 64}, [2400] = {.lex_state = 53}, [2401] = {.lex_state = 53}, - [2402] = {.lex_state = 0}, - [2403] = {.lex_state = 64}, - [2404] = {.lex_state = 42}, + [2402] = {.lex_state = 140}, + [2403] = {.lex_state = 53}, + [2404] = {.lex_state = 53}, [2405] = {.lex_state = 53}, - [2406] = {.lex_state = 53}, - [2407] = {.lex_state = 0}, - [2408] = {.lex_state = 140}, - [2409] = {.lex_state = 0}, - [2410] = {.lex_state = 0}, - [2411] = {.lex_state = 53}, - [2412] = {.lex_state = 0}, - [2413] = {.lex_state = 140}, - [2414] = {.lex_state = 53}, - [2415] = {.lex_state = 64}, - [2416] = {.lex_state = 140}, - [2417] = {.lex_state = 0}, - [2418] = {.lex_state = 53}, + [2406] = {.lex_state = 0}, + [2407] = {.lex_state = 64}, + [2408] = {.lex_state = 53}, + [2409] = {.lex_state = 53}, + [2410] = {.lex_state = 53}, + [2411] = {.lex_state = 64}, + [2412] = {.lex_state = 64}, + [2413] = {.lex_state = 64}, + [2414] = {.lex_state = 64}, + [2415] = {.lex_state = 140}, + [2416] = {.lex_state = 53}, + [2417] = {.lex_state = 40}, + [2418] = {.lex_state = 40}, [2419] = {.lex_state = 140}, - [2420] = {.lex_state = 0}, + [2420] = {.lex_state = 64}, [2421] = {.lex_state = 64}, [2422] = {.lex_state = 140}, + [2423] = {.lex_state = 0}, + [2424] = {.lex_state = 0}, + [2425] = {.lex_state = 53}, + [2426] = {.lex_state = 0}, + [2427] = {.lex_state = 53}, + [2428] = {.lex_state = 53}, + [2429] = {.lex_state = 0}, + [2430] = {.lex_state = 64}, + [2431] = {.lex_state = 40}, + [2432] = {.lex_state = 140}, + [2433] = {.lex_state = 53}, + [2434] = {.lex_state = 0}, + [2435] = {.lex_state = 0}, + [2436] = {.lex_state = 0}, + [2437] = {.lex_state = 0}, + [2438] = {.lex_state = 0}, + [2439] = {.lex_state = 0}, + [2440] = {.lex_state = 0}, + [2441] = {.lex_state = 0}, + [2442] = {.lex_state = 64}, + [2443] = {.lex_state = 0}, + [2444] = {.lex_state = 0}, + [2445] = {.lex_state = 140}, + [2446] = {.lex_state = 64}, + [2447] = {.lex_state = 40}, + [2448] = {.lex_state = 64}, + [2449] = {.lex_state = 53}, + [2450] = {.lex_state = 53}, + [2451] = {.lex_state = 0}, + [2452] = {.lex_state = 64}, + [2453] = {.lex_state = 53}, + [2454] = {.lex_state = 0}, + [2455] = {.lex_state = 64}, + [2456] = {.lex_state = 0}, + [2457] = {.lex_state = 64}, + [2458] = {.lex_state = 0}, + [2459] = {.lex_state = 40}, + [2460] = {.lex_state = 0}, + [2461] = {.lex_state = 64}, + [2462] = {.lex_state = 40}, + [2463] = {.lex_state = 0}, + [2464] = {.lex_state = 140}, + [2465] = {.lex_state = 0}, + [2466] = {.lex_state = 64}, + [2467] = {.lex_state = 0}, + [2468] = {.lex_state = 64}, + [2469] = {.lex_state = 0}, + [2470] = {.lex_state = 53}, + [2471] = {.lex_state = 140}, + [2472] = {.lex_state = 53}, + [2473] = {.lex_state = 40}, + [2474] = {.lex_state = 0}, + [2475] = {.lex_state = 64}, + [2476] = {.lex_state = 140}, + [2477] = {.lex_state = 0}, + [2478] = {.lex_state = 64}, + [2479] = {.lex_state = 140}, + [2480] = {.lex_state = 0}, + [2481] = {.lex_state = 64}, + [2482] = {.lex_state = 140}, + [2483] = {.lex_state = 40}, + [2484] = {.lex_state = 140}, + [2485] = {.lex_state = 140}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -16021,7 +16184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2259), + [sym_translation_unit] = STATE(2331), [sym_preproc_include] = STATE(53), [sym_preproc_def] = STATE(53), [sym_preproc_function_def] = STATE(53), @@ -16029,24 +16192,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(511), + [sym__old_style_function_definition] = STATE(572), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1410), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1453), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(912), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(961), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1091), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1138), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -16060,36 +16223,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(1387), - [sym__expression_not_binary] = STATE(1388), - [sym__string] = STATE(1388), - [sym_conditional_expression] = STATE(1388), - [sym_assignment_expression] = STATE(1388), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(1388), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(1388), - [sym_cast_expression] = STATE(1388), - [sym_sizeof_expression] = STATE(1388), - [sym_alignof_expression] = STATE(1388), - [sym_offsetof_expression] = STATE(1388), - [sym_generic_expression] = STATE(1388), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(1388), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(1388), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(1388), - [sym_concatenated_string] = STATE(1388), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(1388), + [sym__expression] = STATE(1432), + [sym__expression_not_binary] = STATE(1431), + [sym__string] = STATE(1431), + [sym_conditional_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1431), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(1431), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(1431), + [sym_cast_expression] = STATE(1431), + [sym_sizeof_expression] = STATE(1431), + [sym_alignof_expression] = STATE(1431), + [sym_offsetof_expression] = STATE(1431), + [sym_generic_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(1431), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(1431), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(1431), + [sym_concatenated_string] = STATE(1431), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(1431), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -16184,80 +16347,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(2145), - [sym_preproc_elif] = STATE(2145), - [sym_preproc_elifdef] = STATE(2145), - [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_case_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym_seh_try_statement] = STATE(9), - [sym_seh_leave_statement] = STATE(9), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2382), + [sym_preproc_elif] = STATE(2382), + [sym_preproc_elifdef] = STATE(2382), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16359,80 +16522,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(2140), - [sym_preproc_elif] = STATE(2140), - [sym_preproc_elifdef] = STATE(2140), - [sym_function_definition] = STATE(7), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2235), + [sym_preproc_elif] = STATE(2235), + [sym_preproc_elifdef] = STATE(2235), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16534,80 +16697,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [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(2170), - [sym_preproc_elif] = STATE(2170), - [sym_preproc_elifdef] = STATE(2170), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2383), + [sym_preproc_elif] = STATE(2383), + [sym_preproc_elifdef] = STATE(2383), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16709,80 +16872,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [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(2281), - [sym_preproc_elif] = STATE(2281), - [sym_preproc_elifdef] = STATE(2281), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2298), + [sym_preproc_elif] = STATE(2298), + [sym_preproc_elifdef] = STATE(2298), + [sym_function_definition] = STATE(3), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16884,80 +17047,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [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(2418), - [sym_preproc_elif] = STATE(2418), - [sym_preproc_elifdef] = STATE(2418), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2472), + [sym_preproc_elif] = STATE(2472), + [sym_preproc_elifdef] = STATE(2472), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17059,80 +17222,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [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(2414), - [sym_preproc_elif] = STATE(2414), - [sym_preproc_elifdef] = STATE(2414), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2391), + [sym_preproc_elif] = STATE(2391), + [sym_preproc_elifdef] = STATE(2391), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17234,80 +17397,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [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(2207), - [sym_preproc_elif] = STATE(2207), - [sym_preproc_elifdef] = STATE(2207), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2295), + [sym_preproc_elif] = STATE(2295), + [sym_preproc_elifdef] = STATE(2295), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17409,80 +17572,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [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(2127), - [sym_preproc_elif] = STATE(2127), - [sym_preproc_elifdef] = STATE(2127), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(2261), + [sym_preproc_elif] = STATE(2261), + [sym_preproc_elifdef] = STATE(2261), + [sym_function_definition] = STATE(11), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_case_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym_seh_try_statement] = STATE(11), + [sym_seh_leave_statement] = STATE(11), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17584,80 +17747,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(2377), - [sym_preproc_elif] = STATE(2377), - [sym_preproc_elifdef] = STATE(2377), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2385), + [sym_preproc_elif] = STATE(2385), + [sym_preproc_elifdef] = STATE(2385), + [sym_function_definition] = STATE(7), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17759,80 +17922,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [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(2316), - [sym_preproc_elif] = STATE(2316), - [sym_preproc_elifdef] = STATE(2316), - [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2183), + [sym_preproc_elif] = STATE(2183), + [sym_preproc_elifdef] = STATE(2183), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17934,79 +18097,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [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(2411), - [sym_preproc_elif] = STATE(2411), - [sym_function_definition] = STATE(19), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2410), + [sym_preproc_elif] = STATE(2410), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18106,79 +18269,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(2129), - [sym_preproc_elif] = STATE(2129), - [sym_function_definition] = STATE(23), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym_seh_try_statement] = STATE(23), - [sym_seh_leave_statement] = STATE(23), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(2403), + [sym_preproc_elif] = STATE(2403), + [sym_function_definition] = STATE(12), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym_seh_try_statement] = STATE(12), + [sym_seh_leave_statement] = STATE(12), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18278,79 +18441,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(2176), - [sym_preproc_elif] = STATE(2176), - [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym_seh_try_statement] = STATE(20), - [sym_seh_leave_statement] = STATE(20), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2277), + [sym_preproc_elif] = STATE(2277), + [sym_function_definition] = STATE(19), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18450,79 +18613,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2124), - [sym_preproc_elif] = STATE(2124), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(2189), + [sym_preproc_elif] = STATE(2189), + [sym_function_definition] = STATE(18), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym_seh_try_statement] = STATE(18), + [sym_seh_leave_statement] = STATE(18), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18622,256 +18785,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [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_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(170), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1405), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(917), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1093), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(238), - [aux_sym_preproc_def_token1] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(244), - [aux_sym_preproc_if_token2] = ACTIONS(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(249), - [aux_sym_preproc_else_token1] = ACTIONS(247), - [aux_sym_preproc_elif_token1] = ACTIONS(247), - [aux_sym_preproc_elifdef_token1] = ACTIONS(247), - [aux_sym_preproc_elifdef_token2] = ACTIONS(247), - [sym_preproc_directive] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym___extension__] = ACTIONS(270), - [anon_sym_typedef] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(282), - [anon_sym___declspec] = ACTIONS(285), - [anon_sym___cdecl] = ACTIONS(288), - [anon_sym___clrcall] = ACTIONS(288), - [anon_sym___stdcall] = ACTIONS(288), - [anon_sym___fastcall] = ACTIONS(288), - [anon_sym___thiscall] = ACTIONS(288), - [anon_sym___vectorcall] = ACTIONS(288), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_signed] = ACTIONS(294), - [anon_sym_unsigned] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_static] = ACTIONS(297), - [anon_sym_auto] = ACTIONS(297), - [anon_sym_register] = ACTIONS(297), - [anon_sym_inline] = ACTIONS(297), - [anon_sym___inline] = ACTIONS(297), - [anon_sym___inline__] = ACTIONS(297), - [anon_sym___forceinline] = ACTIONS(297), - [anon_sym_thread_local] = ACTIONS(297), - [anon_sym___thread] = ACTIONS(297), - [anon_sym_const] = ACTIONS(300), - [anon_sym_constexpr] = ACTIONS(300), - [anon_sym_volatile] = ACTIONS(300), - [anon_sym_restrict] = ACTIONS(300), - [anon_sym___restrict__] = ACTIONS(300), - [anon_sym__Atomic] = ACTIONS(300), - [anon_sym__Noreturn] = ACTIONS(300), - [anon_sym_noreturn] = ACTIONS(300), - [sym_primitive_type] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_struct] = ACTIONS(309), - [anon_sym_union] = ACTIONS(312), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(318), - [anon_sym_case] = ACTIONS(321), - [anon_sym_default] = ACTIONS(324), - [anon_sym_while] = ACTIONS(327), - [anon_sym_do] = ACTIONS(330), - [anon_sym_for] = ACTIONS(333), - [anon_sym_return] = ACTIONS(336), - [anon_sym_break] = ACTIONS(339), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_goto] = ACTIONS(345), - [anon_sym___try] = ACTIONS(348), - [anon_sym___leave] = ACTIONS(351), - [anon_sym_DASH_DASH] = ACTIONS(354), - [anon_sym_PLUS_PLUS] = ACTIONS(354), - [anon_sym_sizeof] = ACTIONS(357), - [anon_sym___alignof__] = ACTIONS(360), - [anon_sym___alignof] = ACTIONS(360), - [anon_sym__alignof] = ACTIONS(360), - [anon_sym_alignof] = ACTIONS(360), - [anon_sym__Alignof] = ACTIONS(360), - [anon_sym_offsetof] = ACTIONS(363), - [anon_sym__Generic] = ACTIONS(366), - [anon_sym_asm] = ACTIONS(369), - [anon_sym___asm__] = ACTIONS(369), - [sym_number_literal] = ACTIONS(372), - [anon_sym_L_SQUOTE] = ACTIONS(375), - [anon_sym_u_SQUOTE] = ACTIONS(375), - [anon_sym_U_SQUOTE] = ACTIONS(375), - [anon_sym_u8_SQUOTE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(375), - [anon_sym_L_DQUOTE] = ACTIONS(378), - [anon_sym_u_DQUOTE] = ACTIONS(378), - [anon_sym_U_DQUOTE] = ACTIONS(378), - [anon_sym_u8_DQUOTE] = ACTIONS(378), - [anon_sym_DQUOTE] = ACTIONS(378), - [sym_true] = ACTIONS(381), - [sym_false] = ACTIONS(381), - [anon_sym_NULL] = ACTIONS(384), - [anon_sym_nullptr] = ACTIONS(384), - [sym_comment] = ACTIONS(3), - }, - [17] = { - [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(2293), - [sym_preproc_elif] = STATE(2293), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2377), + [sym_preproc_elif] = STATE(2377), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [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(235), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18965,34 +18956,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [18] = { + [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(2198), - [sym_preproc_elif] = STATE(2198), + [sym_preproc_else] = STATE(2216), + [sym_preproc_elif] = STATE(2216), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(246), + [sym__old_style_function_definition] = STATE(263), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19008,42 +18999,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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [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(237), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19137,34 +19128,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [19] = { + [18] = { [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(2296), - [sym_preproc_elif] = STATE(2296), + [sym_preproc_else] = STATE(2285), + [sym_preproc_elif] = STATE(2285), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(246), + [sym__old_style_function_definition] = STATE(263), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19180,42 +19171,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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [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(239), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19309,34 +19300,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [20] = { + [19] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2130), - [sym_preproc_elif] = STATE(2130), + [sym_preproc_else] = STATE(2449), + [sym_preproc_elif] = STATE(2449), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(246), + [sym__old_style_function_definition] = STATE(263), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19352,42 +19343,214 @@ 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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [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(241), + [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), + }, + [20] = { + [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(2450), + [sym_preproc_elif] = STATE(2450), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [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), @@ -19482,256 +19645,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(2134), - [sym_preproc_elif] = STATE(2134), - [sym_function_definition] = STATE(18), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym_seh_try_statement] = STATE(18), - [sym_seh_leave_statement] = STATE(18), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(163), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1451), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(965), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1134), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(245), + [aux_sym_preproc_include_token1] = ACTIONS(248), + [aux_sym_preproc_def_token1] = ACTIONS(251), + [aux_sym_preproc_if_token1] = ACTIONS(254), + [aux_sym_preproc_if_token2] = ACTIONS(257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(259), + [aux_sym_preproc_else_token1] = ACTIONS(257), + [aux_sym_preproc_elif_token1] = ACTIONS(257), + [aux_sym_preproc_elifdef_token1] = ACTIONS(257), + [aux_sym_preproc_elifdef_token2] = ACTIONS(257), + [sym_preproc_directive] = ACTIONS(262), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym___extension__] = ACTIONS(280), + [anon_sym_typedef] = ACTIONS(283), + [anon_sym_extern] = ACTIONS(286), + [anon_sym___attribute__] = ACTIONS(289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(292), + [anon_sym___declspec] = ACTIONS(295), + [anon_sym___cdecl] = ACTIONS(298), + [anon_sym___clrcall] = ACTIONS(298), + [anon_sym___stdcall] = ACTIONS(298), + [anon_sym___fastcall] = ACTIONS(298), + [anon_sym___thiscall] = ACTIONS(298), + [anon_sym___vectorcall] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(301), + [anon_sym_signed] = ACTIONS(304), + [anon_sym_unsigned] = ACTIONS(304), + [anon_sym_long] = ACTIONS(304), + [anon_sym_short] = ACTIONS(304), + [anon_sym_static] = ACTIONS(307), + [anon_sym_auto] = ACTIONS(307), + [anon_sym_register] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym___inline] = ACTIONS(307), + [anon_sym___inline__] = ACTIONS(307), + [anon_sym___forceinline] = ACTIONS(307), + [anon_sym_thread_local] = ACTIONS(307), + [anon_sym___thread] = ACTIONS(307), + [anon_sym_const] = ACTIONS(310), + [anon_sym_constexpr] = ACTIONS(310), + [anon_sym_volatile] = ACTIONS(310), + [anon_sym_restrict] = ACTIONS(310), + [anon_sym___restrict__] = ACTIONS(310), + [anon_sym__Atomic] = ACTIONS(310), + [anon_sym__Noreturn] = ACTIONS(310), + [anon_sym_noreturn] = ACTIONS(310), + [sym_primitive_type] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(319), + [anon_sym_union] = ACTIONS(322), + [anon_sym_if] = ACTIONS(325), + [anon_sym_switch] = ACTIONS(328), + [anon_sym_case] = ACTIONS(331), + [anon_sym_default] = ACTIONS(334), + [anon_sym_while] = ACTIONS(337), + [anon_sym_do] = ACTIONS(340), + [anon_sym_for] = ACTIONS(343), + [anon_sym_return] = ACTIONS(346), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(352), + [anon_sym_goto] = ACTIONS(355), + [anon_sym___try] = ACTIONS(358), + [anon_sym___leave] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(364), + [anon_sym_sizeof] = ACTIONS(367), + [anon_sym___alignof__] = ACTIONS(370), + [anon_sym___alignof] = ACTIONS(370), + [anon_sym__alignof] = ACTIONS(370), + [anon_sym_alignof] = ACTIONS(370), + [anon_sym__Alignof] = ACTIONS(370), + [anon_sym_offsetof] = ACTIONS(373), + [anon_sym__Generic] = ACTIONS(376), + [anon_sym_asm] = ACTIONS(379), + [anon_sym___asm__] = ACTIONS(379), + [sym_number_literal] = ACTIONS(382), + [anon_sym_L_SQUOTE] = ACTIONS(385), + [anon_sym_u_SQUOTE] = ACTIONS(385), + [anon_sym_U_SQUOTE] = ACTIONS(385), + [anon_sym_u8_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_L_DQUOTE] = ACTIONS(388), + [anon_sym_u_DQUOTE] = ACTIONS(388), + [anon_sym_U_DQUOTE] = ACTIONS(388), + [anon_sym_u8_DQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_true] = ACTIONS(391), + [sym_false] = ACTIONS(391), + [anon_sym_NULL] = ACTIONS(394), + [anon_sym_nullptr] = ACTIONS(394), + [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(2278), + [sym_preproc_elif] = STATE(2278), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [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_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), - }, - [22] = { - [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(2285), - [sym_preproc_elif] = STATE(2285), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [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(397), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19832,27 +19995,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(2167), - [sym_preproc_elif] = STATE(2167), + [sym_preproc_else] = STATE(2354), + [sym_preproc_elif] = STATE(2354), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(246), + [sym__old_style_function_definition] = STATE(263), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19868,37 +20031,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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -19998,79 +20161,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2375), - [sym_preproc_elif] = STATE(2375), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(2409), + [sym_preproc_elif] = STATE(2409), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -20170,79 +20333,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [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(2262), - [sym_preproc_elif] = STATE(2262), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2453), + [sym_preproc_elif] = STATE(2453), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -20342,79 +20505,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2216), - [sym_preproc_elif] = STATE(2216), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(246), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(2237), + [sym_preproc_elif] = STATE(2237), + [sym_function_definition] = STATE(17), + [sym__old_style_function_definition] = STATE(263), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -20521,24 +20684,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(246), + [sym__old_style_function_definition] = STATE(263), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1409), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1454), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(922), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(966), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1092), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1136), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -20554,93 +20717,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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [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(247), + [aux_sym_preproc_if_token2] = ACTIONS(257), [aux_sym_preproc_ifdef_token1] = ACTIONS(419), [aux_sym_preproc_ifdef_token2] = ACTIONS(419), - [aux_sym_preproc_else_token1] = ACTIONS(247), - [aux_sym_preproc_elif_token1] = ACTIONS(247), + [aux_sym_preproc_else_token1] = ACTIONS(257), + [aux_sym_preproc_elif_token1] = ACTIONS(257), [sym_preproc_directive] = ACTIONS(422), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), [anon_sym_SEMI] = ACTIONS(425), [anon_sym___extension__] = ACTIONS(428), [anon_sym_typedef] = ACTIONS(431), [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(282), - [anon_sym___declspec] = ACTIONS(285), - [anon_sym___cdecl] = ACTIONS(288), - [anon_sym___clrcall] = ACTIONS(288), - [anon_sym___stdcall] = ACTIONS(288), - [anon_sym___fastcall] = ACTIONS(288), - [anon_sym___thiscall] = ACTIONS(288), - [anon_sym___vectorcall] = ACTIONS(288), + [anon_sym___attribute__] = ACTIONS(289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(292), + [anon_sym___declspec] = ACTIONS(295), + [anon_sym___cdecl] = ACTIONS(298), + [anon_sym___clrcall] = ACTIONS(298), + [anon_sym___stdcall] = ACTIONS(298), + [anon_sym___fastcall] = ACTIONS(298), + [anon_sym___thiscall] = ACTIONS(298), + [anon_sym___vectorcall] = ACTIONS(298), [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_signed] = ACTIONS(294), - [anon_sym_unsigned] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_static] = ACTIONS(297), - [anon_sym_auto] = ACTIONS(297), - [anon_sym_register] = ACTIONS(297), - [anon_sym_inline] = ACTIONS(297), - [anon_sym___inline] = ACTIONS(297), - [anon_sym___inline__] = ACTIONS(297), - [anon_sym___forceinline] = ACTIONS(297), - [anon_sym_thread_local] = ACTIONS(297), - [anon_sym___thread] = ACTIONS(297), - [anon_sym_const] = ACTIONS(300), - [anon_sym_constexpr] = ACTIONS(300), - [anon_sym_volatile] = ACTIONS(300), - [anon_sym_restrict] = ACTIONS(300), - [anon_sym___restrict__] = ACTIONS(300), - [anon_sym__Atomic] = ACTIONS(300), - [anon_sym__Noreturn] = ACTIONS(300), - [anon_sym_noreturn] = ACTIONS(300), - [sym_primitive_type] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_struct] = ACTIONS(309), - [anon_sym_union] = ACTIONS(312), + [anon_sym_signed] = ACTIONS(304), + [anon_sym_unsigned] = ACTIONS(304), + [anon_sym_long] = ACTIONS(304), + [anon_sym_short] = ACTIONS(304), + [anon_sym_static] = ACTIONS(307), + [anon_sym_auto] = ACTIONS(307), + [anon_sym_register] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym___inline] = ACTIONS(307), + [anon_sym___inline__] = ACTIONS(307), + [anon_sym___forceinline] = ACTIONS(307), + [anon_sym_thread_local] = ACTIONS(307), + [anon_sym___thread] = ACTIONS(307), + [anon_sym_const] = ACTIONS(310), + [anon_sym_constexpr] = ACTIONS(310), + [anon_sym_volatile] = ACTIONS(310), + [anon_sym_restrict] = ACTIONS(310), + [anon_sym___restrict__] = ACTIONS(310), + [anon_sym__Atomic] = ACTIONS(310), + [anon_sym__Noreturn] = ACTIONS(310), + [anon_sym_noreturn] = ACTIONS(310), + [sym_primitive_type] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(319), + [anon_sym_union] = ACTIONS(322), [anon_sym_if] = ACTIONS(440), [anon_sym_switch] = ACTIONS(443), [anon_sym_case] = ACTIONS(446), @@ -20654,107 +20817,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(354), - [anon_sym_PLUS_PLUS] = ACTIONS(354), - [anon_sym_sizeof] = ACTIONS(357), - [anon_sym___alignof__] = ACTIONS(360), - [anon_sym___alignof] = ACTIONS(360), - [anon_sym__alignof] = ACTIONS(360), - [anon_sym_alignof] = ACTIONS(360), - [anon_sym__Alignof] = ACTIONS(360), - [anon_sym_offsetof] = ACTIONS(363), - [anon_sym__Generic] = ACTIONS(366), - [anon_sym_asm] = ACTIONS(369), - [anon_sym___asm__] = ACTIONS(369), - [sym_number_literal] = ACTIONS(372), - [anon_sym_L_SQUOTE] = ACTIONS(375), - [anon_sym_u_SQUOTE] = ACTIONS(375), - [anon_sym_U_SQUOTE] = ACTIONS(375), - [anon_sym_u8_SQUOTE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(375), - [anon_sym_L_DQUOTE] = ACTIONS(378), - [anon_sym_u_DQUOTE] = ACTIONS(378), - [anon_sym_U_DQUOTE] = ACTIONS(378), - [anon_sym_u8_DQUOTE] = ACTIONS(378), - [anon_sym_DQUOTE] = ACTIONS(378), - [sym_true] = ACTIONS(381), - [sym_false] = ACTIONS(381), - [anon_sym_NULL] = ACTIONS(384), - [anon_sym_nullptr] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(364), + [anon_sym_sizeof] = ACTIONS(367), + [anon_sym___alignof__] = ACTIONS(370), + [anon_sym___alignof] = ACTIONS(370), + [anon_sym__alignof] = ACTIONS(370), + [anon_sym_alignof] = ACTIONS(370), + [anon_sym__Alignof] = ACTIONS(370), + [anon_sym_offsetof] = ACTIONS(373), + [anon_sym__Generic] = ACTIONS(376), + [anon_sym_asm] = ACTIONS(379), + [anon_sym___asm__] = ACTIONS(379), + [sym_number_literal] = ACTIONS(382), + [anon_sym_L_SQUOTE] = ACTIONS(385), + [anon_sym_u_SQUOTE] = ACTIONS(385), + [anon_sym_U_SQUOTE] = ACTIONS(385), + [anon_sym_u8_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_L_DQUOTE] = ACTIONS(388), + [anon_sym_u_DQUOTE] = ACTIONS(388), + [anon_sym_U_DQUOTE] = ACTIONS(388), + [anon_sym_u8_DQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_true] = ACTIONS(391), + [sym_false] = ACTIONS(391), + [anon_sym_NULL] = ACTIONS(394), + [anon_sym_nullptr] = ACTIONS(394), [sym_comment] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20852,77 +21015,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(467), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_seh_try_statement] = STATE(44), + [sym_seh_leave_statement] = STATE(44), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21020,77 +21183,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [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(430), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21188,77 +21351,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21356,77 +21519,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [32] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21524,77 +21687,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [33] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(537), + [aux_sym_preproc_include_token1] = ACTIONS(540), + [aux_sym_preproc_def_token1] = ACTIONS(543), + [aux_sym_preproc_if_token1] = ACTIONS(546), + [aux_sym_preproc_ifdef_token1] = ACTIONS(549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(549), + [sym_preproc_directive] = ACTIONS(552), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym___extension__] = ACTIONS(558), + [anon_sym_typedef] = ACTIONS(561), + [anon_sym_extern] = ACTIONS(564), + [anon_sym___attribute__] = ACTIONS(289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(292), + [anon_sym___declspec] = ACTIONS(295), + [anon_sym___cdecl] = ACTIONS(298), + [anon_sym___clrcall] = ACTIONS(298), + [anon_sym___stdcall] = ACTIONS(298), + [anon_sym___fastcall] = ACTIONS(298), + [anon_sym___thiscall] = ACTIONS(298), + [anon_sym___vectorcall] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_signed] = ACTIONS(304), + [anon_sym_unsigned] = ACTIONS(304), + [anon_sym_long] = ACTIONS(304), + [anon_sym_short] = ACTIONS(304), + [anon_sym_static] = ACTIONS(307), + [anon_sym_auto] = ACTIONS(307), + [anon_sym_register] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym___inline] = ACTIONS(307), + [anon_sym___inline__] = ACTIONS(307), + [anon_sym___forceinline] = ACTIONS(307), + [anon_sym_thread_local] = ACTIONS(307), + [anon_sym___thread] = ACTIONS(307), + [anon_sym_const] = ACTIONS(310), + [anon_sym_constexpr] = ACTIONS(310), + [anon_sym_volatile] = ACTIONS(310), + [anon_sym_restrict] = ACTIONS(310), + [anon_sym___restrict__] = ACTIONS(310), + [anon_sym__Atomic] = ACTIONS(310), + [anon_sym__Noreturn] = ACTIONS(310), + [anon_sym_noreturn] = ACTIONS(310), + [sym_primitive_type] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(319), + [anon_sym_union] = ACTIONS(322), + [anon_sym_if] = ACTIONS(572), + [anon_sym_switch] = ACTIONS(575), + [anon_sym_case] = ACTIONS(578), + [anon_sym_default] = ACTIONS(581), + [anon_sym_while] = ACTIONS(584), + [anon_sym_do] = ACTIONS(587), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(593), + [anon_sym_break] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(599), + [anon_sym_goto] = ACTIONS(602), + [anon_sym___try] = ACTIONS(605), + [anon_sym___leave] = ACTIONS(608), + [anon_sym_DASH_DASH] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(364), + [anon_sym_sizeof] = ACTIONS(367), + [anon_sym___alignof__] = ACTIONS(370), + [anon_sym___alignof] = ACTIONS(370), + [anon_sym__alignof] = ACTIONS(370), + [anon_sym_alignof] = ACTIONS(370), + [anon_sym__Alignof] = ACTIONS(370), + [anon_sym_offsetof] = ACTIONS(373), + [anon_sym__Generic] = ACTIONS(376), + [anon_sym_asm] = ACTIONS(379), + [anon_sym___asm__] = ACTIONS(379), + [sym_number_literal] = ACTIONS(382), + [anon_sym_L_SQUOTE] = ACTIONS(385), + [anon_sym_u_SQUOTE] = ACTIONS(385), + [anon_sym_U_SQUOTE] = ACTIONS(385), + [anon_sym_u8_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_L_DQUOTE] = ACTIONS(388), + [anon_sym_u_DQUOTE] = ACTIONS(388), + [anon_sym_U_DQUOTE] = ACTIONS(388), + [anon_sym_u8_DQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_true] = ACTIONS(391), + [sym_false] = ACTIONS(391), + [anon_sym_NULL] = ACTIONS(394), + [anon_sym_nullptr] = ACTIONS(394), + [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(467), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21623,7 +21954,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(537), + [anon_sym_RBRACE] = ACTIONS(611), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21691,78 +22022,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(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(430), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [35] = { + [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(467), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21791,7 +22122,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(539), + [anon_sym_RBRACE] = ACTIONS(613), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21859,7 +22190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [35] = { + [36] = { [sym_preproc_include] = STATE(33), [sym_preproc_def] = STATE(33), [sym_preproc_function_def] = STATE(33), @@ -21867,24 +22198,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(33), [sym_preproc_ifdef] = STATE(33), [sym_function_definition] = STATE(33), - [sym__old_style_function_definition] = STATE(430), + [sym__old_style_function_definition] = STATE(467), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(33), [sym_labeled_statement] = STATE(33), [sym_expression_statement] = STATE(33), @@ -21900,37 +22231,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(33), [sym_seh_try_statement] = STATE(33), [sym_seh_leave_statement] = STATE(33), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21959,7 +22290,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(541), + [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22027,86 +22358,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [36] = { - [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(440), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1401), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(911), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1094), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(545), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [aux_sym_preproc_if_token1] = ACTIONS(549), - [aux_sym_preproc_if_token2] = ACTIONS(551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(553), - [sym_preproc_directive] = ACTIONS(555), + [37] = { + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [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), @@ -22114,10 +22444,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(557), - [anon_sym___extension__] = ACTIONS(559), - [anon_sym_typedef] = ACTIONS(561), - [anon_sym_extern] = ACTIONS(563), + [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), @@ -22127,7 +22457,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(565), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22153,19 +22484,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(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [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), @@ -22195,78 +22526,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [38] = { + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22295,7 +22626,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(593), + [anon_sym_RBRACE] = ACTIONS(619), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22363,86 +22694,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(440), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1401), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(911), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1094), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(545), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [aux_sym_preproc_if_token1] = ACTIONS(549), - [aux_sym_preproc_if_token2] = ACTIONS(595), - [aux_sym_preproc_ifdef_token1] = ACTIONS(553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(553), - [sym_preproc_directive] = ACTIONS(555), + [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(482), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1445), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(964), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1139), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(621), + [aux_sym_preproc_include_token1] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(625), + [aux_sym_preproc_if_token1] = ACTIONS(627), + [aux_sym_preproc_if_token2] = ACTIONS(629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(633), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22450,10 +22781,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(557), - [anon_sym___extension__] = ACTIONS(559), - [anon_sym_typedef] = ACTIONS(561), - [anon_sym_extern] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym___extension__] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), + [anon_sym_extern] = ACTIONS(641), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22463,7 +22794,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(565), + [anon_sym_LBRACE] = ACTIONS(643), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22489,19 +22820,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(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -22531,78 +22862,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [40] = { + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22631,7 +22962,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(597), + [anon_sym_RBRACE] = ACTIONS(671), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22699,174 +23030,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(599), - [aux_sym_preproc_include_token1] = ACTIONS(602), - [aux_sym_preproc_def_token1] = ACTIONS(605), - [aux_sym_preproc_if_token1] = ACTIONS(608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(611), - [sym_preproc_directive] = ACTIONS(614), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym___extension__] = ACTIONS(620), - [anon_sym_typedef] = ACTIONS(623), - [anon_sym_extern] = ACTIONS(626), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(282), - [anon_sym___declspec] = ACTIONS(285), - [anon_sym___cdecl] = ACTIONS(288), - [anon_sym___clrcall] = ACTIONS(288), - [anon_sym___stdcall] = ACTIONS(288), - [anon_sym___fastcall] = ACTIONS(288), - [anon_sym___thiscall] = ACTIONS(288), - [anon_sym___vectorcall] = ACTIONS(288), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_signed] = ACTIONS(294), - [anon_sym_unsigned] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_static] = ACTIONS(297), - [anon_sym_auto] = ACTIONS(297), - [anon_sym_register] = ACTIONS(297), - [anon_sym_inline] = ACTIONS(297), - [anon_sym___inline] = ACTIONS(297), - [anon_sym___inline__] = ACTIONS(297), - [anon_sym___forceinline] = ACTIONS(297), - [anon_sym_thread_local] = ACTIONS(297), - [anon_sym___thread] = ACTIONS(297), - [anon_sym_const] = ACTIONS(300), - [anon_sym_constexpr] = ACTIONS(300), - [anon_sym_volatile] = ACTIONS(300), - [anon_sym_restrict] = ACTIONS(300), - [anon_sym___restrict__] = ACTIONS(300), - [anon_sym__Atomic] = ACTIONS(300), - [anon_sym__Noreturn] = ACTIONS(300), - [anon_sym_noreturn] = ACTIONS(300), - [sym_primitive_type] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_struct] = ACTIONS(309), - [anon_sym_union] = ACTIONS(312), - [anon_sym_if] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(637), - [anon_sym_case] = ACTIONS(640), - [anon_sym_default] = ACTIONS(643), - [anon_sym_while] = ACTIONS(646), - [anon_sym_do] = ACTIONS(649), - [anon_sym_for] = ACTIONS(652), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_goto] = ACTIONS(664), - [anon_sym___try] = ACTIONS(667), - [anon_sym___leave] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(354), - [anon_sym_PLUS_PLUS] = ACTIONS(354), - [anon_sym_sizeof] = ACTIONS(357), - [anon_sym___alignof__] = ACTIONS(360), - [anon_sym___alignof] = ACTIONS(360), - [anon_sym__alignof] = ACTIONS(360), - [anon_sym_alignof] = ACTIONS(360), - [anon_sym__Alignof] = ACTIONS(360), - [anon_sym_offsetof] = ACTIONS(363), - [anon_sym__Generic] = ACTIONS(366), - [anon_sym_asm] = ACTIONS(369), - [anon_sym___asm__] = ACTIONS(369), - [sym_number_literal] = ACTIONS(372), - [anon_sym_L_SQUOTE] = ACTIONS(375), - [anon_sym_u_SQUOTE] = ACTIONS(375), - [anon_sym_U_SQUOTE] = ACTIONS(375), - [anon_sym_u8_SQUOTE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(375), - [anon_sym_L_DQUOTE] = ACTIONS(378), - [anon_sym_u_DQUOTE] = ACTIONS(378), - [anon_sym_U_DQUOTE] = ACTIONS(378), - [anon_sym_u8_DQUOTE] = ACTIONS(378), - [anon_sym_DQUOTE] = ACTIONS(378), - [sym_true] = ACTIONS(381), - [sym_false] = ACTIONS(381), - [anon_sym_NULL] = ACTIONS(384), - [anon_sym_nullptr] = ACTIONS(384), - [sym_comment] = ACTIONS(3), - }, [41] = { [sym_preproc_include] = STATE(40), [sym_preproc_def] = STATE(40), @@ -22875,24 +23038,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(40), [sym_preproc_ifdef] = STATE(40), [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), + [sym__old_style_function_definition] = STATE(467), [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(40), [sym_labeled_statement] = STATE(40), [sym_expression_statement] = STATE(40), @@ -22908,37 +23071,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(40), [sym_seh_try_statement] = STATE(40), [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23036,77 +23199,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23204,77 +23367,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23372,77 +23535,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_function_definition] = STATE(28), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym_seh_try_statement] = STATE(28), - [sym_seh_leave_statement] = STATE(28), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23540,77 +23703,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [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(430), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23708,84 +23871,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [46] = { - [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(430), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [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), + [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(482), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1445), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(964), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1139), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(621), + [aux_sym_preproc_include_token1] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(625), + [aux_sym_preproc_if_token1] = ACTIONS(627), + [aux_sym_preproc_if_token2] = ACTIONS(683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(633), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23793,10 +23957,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(635), + [anon_sym___extension__] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), + [anon_sym_extern] = ACTIONS(641), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -23806,8 +23970,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(683), + [anon_sym_LBRACE] = ACTIONS(643), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23833,19 +23996,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(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23876,245 +24039,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [47] = { - [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(440), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1401), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(911), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1094), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(685), - [aux_sym_preproc_include_token1] = ACTIONS(688), - [aux_sym_preproc_def_token1] = ACTIONS(691), - [aux_sym_preproc_if_token1] = ACTIONS(694), - [aux_sym_preproc_if_token2] = ACTIONS(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(697), - [sym_preproc_directive] = ACTIONS(700), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym___extension__] = ACTIONS(706), - [anon_sym_typedef] = ACTIONS(709), - [anon_sym_extern] = ACTIONS(712), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(282), - [anon_sym___declspec] = ACTIONS(285), - [anon_sym___cdecl] = ACTIONS(288), - [anon_sym___clrcall] = ACTIONS(288), - [anon_sym___stdcall] = ACTIONS(288), - [anon_sym___fastcall] = ACTIONS(288), - [anon_sym___thiscall] = ACTIONS(288), - [anon_sym___vectorcall] = ACTIONS(288), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_signed] = ACTIONS(294), - [anon_sym_unsigned] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_static] = ACTIONS(297), - [anon_sym_auto] = ACTIONS(297), - [anon_sym_register] = ACTIONS(297), - [anon_sym_inline] = ACTIONS(297), - [anon_sym___inline] = ACTIONS(297), - [anon_sym___inline__] = ACTIONS(297), - [anon_sym___forceinline] = ACTIONS(297), - [anon_sym_thread_local] = ACTIONS(297), - [anon_sym___thread] = ACTIONS(297), - [anon_sym_const] = ACTIONS(300), - [anon_sym_constexpr] = ACTIONS(300), - [anon_sym_volatile] = ACTIONS(300), - [anon_sym_restrict] = ACTIONS(300), - [anon_sym___restrict__] = ACTIONS(300), - [anon_sym__Atomic] = ACTIONS(300), - [anon_sym__Noreturn] = ACTIONS(300), - [anon_sym_noreturn] = ACTIONS(300), - [sym_primitive_type] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_struct] = ACTIONS(309), - [anon_sym_union] = ACTIONS(312), - [anon_sym_if] = ACTIONS(718), - [anon_sym_switch] = ACTIONS(721), - [anon_sym_case] = ACTIONS(724), - [anon_sym_default] = ACTIONS(727), - [anon_sym_while] = ACTIONS(730), - [anon_sym_do] = ACTIONS(733), - [anon_sym_for] = ACTIONS(736), - [anon_sym_return] = ACTIONS(739), - [anon_sym_break] = ACTIONS(742), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_goto] = ACTIONS(748), - [anon_sym___try] = ACTIONS(751), - [anon_sym___leave] = ACTIONS(754), - [anon_sym_DASH_DASH] = ACTIONS(354), - [anon_sym_PLUS_PLUS] = ACTIONS(354), - [anon_sym_sizeof] = ACTIONS(357), - [anon_sym___alignof__] = ACTIONS(360), - [anon_sym___alignof] = ACTIONS(360), - [anon_sym__alignof] = ACTIONS(360), - [anon_sym_alignof] = ACTIONS(360), - [anon_sym__Alignof] = ACTIONS(360), - [anon_sym_offsetof] = ACTIONS(363), - [anon_sym__Generic] = ACTIONS(366), - [anon_sym_asm] = ACTIONS(369), - [anon_sym___asm__] = ACTIONS(369), - [sym_number_literal] = ACTIONS(372), - [anon_sym_L_SQUOTE] = ACTIONS(375), - [anon_sym_u_SQUOTE] = ACTIONS(375), - [anon_sym_U_SQUOTE] = ACTIONS(375), - [anon_sym_u8_SQUOTE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(375), - [anon_sym_L_DQUOTE] = ACTIONS(378), - [anon_sym_u_DQUOTE] = ACTIONS(378), - [anon_sym_U_DQUOTE] = ACTIONS(378), - [anon_sym_u8_DQUOTE] = ACTIONS(378), - [anon_sym_DQUOTE] = ACTIONS(378), - [sym_true] = ACTIONS(381), - [sym_false] = ACTIONS(381), - [anon_sym_NULL] = ACTIONS(384), - [anon_sym_nullptr] = ACTIONS(384), - [sym_comment] = ACTIONS(3), - }, - [48] = { - [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(430), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24143,7 +24138,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(757), + [anon_sym_RBRACE] = ACTIONS(685), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -24211,78 +24206,246 @@ 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(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(482), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1445), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(964), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1139), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(687), + [aux_sym_preproc_include_token1] = ACTIONS(690), + [aux_sym_preproc_def_token1] = ACTIONS(693), + [aux_sym_preproc_if_token1] = ACTIONS(696), + [aux_sym_preproc_if_token2] = ACTIONS(257), + [aux_sym_preproc_ifdef_token1] = ACTIONS(699), + [aux_sym_preproc_ifdef_token2] = ACTIONS(699), + [sym_preproc_directive] = ACTIONS(702), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(268), + [anon_sym_TILDE] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym___extension__] = ACTIONS(708), + [anon_sym_typedef] = ACTIONS(711), + [anon_sym_extern] = ACTIONS(714), + [anon_sym___attribute__] = ACTIONS(289), + [anon_sym_LBRACK_LBRACK] = ACTIONS(292), + [anon_sym___declspec] = ACTIONS(295), + [anon_sym___cdecl] = ACTIONS(298), + [anon_sym___clrcall] = ACTIONS(298), + [anon_sym___stdcall] = ACTIONS(298), + [anon_sym___fastcall] = ACTIONS(298), + [anon_sym___thiscall] = ACTIONS(298), + [anon_sym___vectorcall] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_signed] = ACTIONS(304), + [anon_sym_unsigned] = ACTIONS(304), + [anon_sym_long] = ACTIONS(304), + [anon_sym_short] = ACTIONS(304), + [anon_sym_static] = ACTIONS(307), + [anon_sym_auto] = ACTIONS(307), + [anon_sym_register] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym___inline] = ACTIONS(307), + [anon_sym___inline__] = ACTIONS(307), + [anon_sym___forceinline] = ACTIONS(307), + [anon_sym_thread_local] = ACTIONS(307), + [anon_sym___thread] = ACTIONS(307), + [anon_sym_const] = ACTIONS(310), + [anon_sym_constexpr] = ACTIONS(310), + [anon_sym_volatile] = ACTIONS(310), + [anon_sym_restrict] = ACTIONS(310), + [anon_sym___restrict__] = ACTIONS(310), + [anon_sym__Atomic] = ACTIONS(310), + [anon_sym__Noreturn] = ACTIONS(310), + [anon_sym_noreturn] = ACTIONS(310), + [sym_primitive_type] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(319), + [anon_sym_union] = ACTIONS(322), + [anon_sym_if] = ACTIONS(720), + [anon_sym_switch] = ACTIONS(723), + [anon_sym_case] = ACTIONS(726), + [anon_sym_default] = ACTIONS(729), + [anon_sym_while] = ACTIONS(732), + [anon_sym_do] = ACTIONS(735), + [anon_sym_for] = ACTIONS(738), + [anon_sym_return] = ACTIONS(741), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(747), + [anon_sym_goto] = ACTIONS(750), + [anon_sym___try] = ACTIONS(753), + [anon_sym___leave] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(364), + [anon_sym_PLUS_PLUS] = ACTIONS(364), + [anon_sym_sizeof] = ACTIONS(367), + [anon_sym___alignof__] = ACTIONS(370), + [anon_sym___alignof] = ACTIONS(370), + [anon_sym__alignof] = ACTIONS(370), + [anon_sym_alignof] = ACTIONS(370), + [anon_sym__Alignof] = ACTIONS(370), + [anon_sym_offsetof] = ACTIONS(373), + [anon_sym__Generic] = ACTIONS(376), + [anon_sym_asm] = ACTIONS(379), + [anon_sym___asm__] = ACTIONS(379), + [sym_number_literal] = ACTIONS(382), + [anon_sym_L_SQUOTE] = ACTIONS(385), + [anon_sym_u_SQUOTE] = ACTIONS(385), + [anon_sym_U_SQUOTE] = ACTIONS(385), + [anon_sym_u8_SQUOTE] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_L_DQUOTE] = ACTIONS(388), + [anon_sym_u_DQUOTE] = ACTIONS(388), + [anon_sym_U_DQUOTE] = ACTIONS(388), + [anon_sym_u8_DQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_true] = ACTIONS(391), + [sym_false] = ACTIONS(391), + [anon_sym_NULL] = ACTIONS(394), + [anon_sym_nullptr] = ACTIONS(394), + [sym_comment] = ACTIONS(3), + }, [49] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(430), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24380,77 +24543,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { - [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(430), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(45), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24548,77 +24711,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [51] = { - [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(430), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1412), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(913), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1089), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [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(467), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1457), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(959), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1137), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24723,24 +24886,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(511), + [sym__old_style_function_definition] = STATE(572), [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1410), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1453), [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(912), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(961), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1091), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1138), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym__top_level_expression_statement] = STATE(52), @@ -24754,36 +24917,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(1387), - [sym__expression_not_binary] = STATE(1388), - [sym__string] = STATE(1388), - [sym_conditional_expression] = STATE(1388), - [sym_assignment_expression] = STATE(1388), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(1388), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(1388), - [sym_cast_expression] = STATE(1388), - [sym_sizeof_expression] = STATE(1388), - [sym_alignof_expression] = STATE(1388), - [sym_offsetof_expression] = STATE(1388), - [sym_generic_expression] = STATE(1388), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(1388), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(1388), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(1388), - [sym_concatenated_string] = STATE(1388), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(1388), + [sym__expression] = STATE(1432), + [sym__expression_not_binary] = STATE(1431), + [sym__string] = STATE(1431), + [sym_conditional_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1431), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(1431), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(1431), + [sym_cast_expression] = STATE(1431), + [sym_sizeof_expression] = STATE(1431), + [sym_alignof_expression] = STATE(1431), + [sym_offsetof_expression] = STATE(1431), + [sym_generic_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(1431), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(1431), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(1431), + [sym_concatenated_string] = STATE(1431), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(1431), [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [ts_builtin_sym_end] = ACTIONS(765), [sym_identifier] = ACTIONS(767), [aux_sym_preproc_include_token1] = ACTIONS(770), @@ -24885,24 +25048,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(511), + [sym__old_style_function_definition] = STATE(572), [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1410), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1453), [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(912), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(961), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(1091), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1138), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym__top_level_expression_statement] = STATE(52), @@ -24916,36 +25079,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(1387), - [sym__expression_not_binary] = STATE(1388), - [sym__string] = STATE(1388), - [sym_conditional_expression] = STATE(1388), - [sym_assignment_expression] = STATE(1388), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(1388), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(1388), - [sym_cast_expression] = STATE(1388), - [sym_sizeof_expression] = STATE(1388), - [sym_alignof_expression] = STATE(1388), - [sym_offsetof_expression] = STATE(1388), - [sym_generic_expression] = STATE(1388), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(1388), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(1388), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(1388), - [sym_concatenated_string] = STATE(1388), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(1388), + [sym__expression] = STATE(1432), + [sym__expression_not_binary] = STATE(1431), + [sym__string] = STATE(1431), + [sym_conditional_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1431), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(1431), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(1431), + [sym_cast_expression] = STATE(1431), + [sym_sizeof_expression] = STATE(1431), + [sym_alignof_expression] = STATE(1431), + [sym_offsetof_expression] = STATE(1431), + [sym_generic_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(1431), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(1431), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(1431), + [sym_concatenated_string] = STATE(1431), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(1431), [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(998), + [sym_macro_type_specifier] = STATE(1050), [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [ts_builtin_sym_end] = ACTIONS(908), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -25042,19 +25205,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [54] = { [sym_declaration] = STATE(54), [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1421), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1467), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -25069,35 +25232,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(54), [sym_seh_try_statement] = STATE(54), [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(913), @@ -25201,65 +25364,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1421), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(54), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1467), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(57), [sym_identifier] = ACTIONS(1035), [aux_sym_preproc_include_token1] = ACTIONS(1037), [aux_sym_preproc_def_token1] = ACTIONS(1037), @@ -25362,65 +25525,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [56] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1421), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(58), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1467), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [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), @@ -25523,65 +25686,65 @@ 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(932), - [sym__declaration_specifiers] = STATE(1421), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1467), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(1035), [aux_sym_preproc_include_token1] = ACTIONS(1041), [aux_sym_preproc_def_token1] = ACTIONS(1041), @@ -25684,65 +25847,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [58] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1421), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(54), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1467), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [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), @@ -25845,75 +26008,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1426), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(63), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1463), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(61), [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(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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25928,12 +26091,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(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(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25961,10 +26124,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(1039), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -26004,180 +26167,21 @@ 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(932), - [sym__declaration_specifiers] = STATE(1426), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(63), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(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(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_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [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), - }, - [61] = { [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1426), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1463), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -26192,46 +26196,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(59), [sym_seh_try_statement] = STATE(59), [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [aux_sym_case_statement_repeat1] = STATE(59), [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(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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26246,12 +26250,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(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(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -26279,169 +26283,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_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [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), - }, - [62] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1426), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(60), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(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(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_else] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -26480,66 +26325,66 @@ 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(932), - [sym__declaration_specifiers] = STATE(1426), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(63), + [61] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1463), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(1047), [aux_sym_preproc_include_token1] = ACTIONS(913), [aux_sym_preproc_def_token1] = ACTIONS(913), @@ -26639,73 +26484,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1422), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1095), + [62] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1463), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(61), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -26714,9 +26561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym___extension__] = ACTIONS(559), - [anon_sym_typedef] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -26727,7 +26574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1041), [anon_sym___thiscall] = ACTIONS(1041), [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26753,177 +26600,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(567), + [anon_sym_if] = ACTIONS(203), [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(569), + [anon_sym_switch] = ACTIONS(205), [anon_sym_case] = ACTIONS(1041), [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), - [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), - }, - [65] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1101), - [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(41), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(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(1103), - [anon_sym___leave] = ACTIONS(1105), + [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), @@ -26953,231 +26643,76 @@ 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(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1422), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1107), - [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(1110), - [anon_sym___extension__] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1116), - [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(1119), - [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(1122), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1146), - [anon_sym___try] = ACTIONS(1149), - [anon_sym___leave] = ACTIONS(1152), - [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), - }, - [67] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1422), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1095), - [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), + [63] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1463), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(62), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27185,20 +26720,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(557), - [anon_sym___extension__] = ACTIONS(559), - [anon_sym_typedef] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), [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(565), + [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(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27224,20 +26759,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(567), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_if] = ACTIONS(203), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [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), @@ -27267,74 +26802,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1422), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(66), + [64] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1473), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(74), [sym_identifier] = ACTIONS(1095), - [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), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27342,20 +26876,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(557), - [anon_sym___extension__] = ACTIONS(559), - [anon_sym_typedef] = ACTIONS(561), + [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(565), + [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(499), + [anon_sym_RBRACE] = ACTIONS(1097), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27381,20 +26916,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(567), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [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), @@ -27424,67 +26959,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1416), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1155), + [65] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1099), + [sym_identifier] = ACTIONS(1101), [aux_sym_preproc_include_token1] = ACTIONS(913), [aux_sym_preproc_def_token1] = ACTIONS(913), [aux_sym_preproc_if_token1] = ACTIONS(913), @@ -27498,9 +27034,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(924), [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym___extension__] = ACTIONS(1161), - [anon_sym_typedef] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym___extension__] = ACTIONS(1107), + [anon_sym_typedef] = ACTIONS(1110), [anon_sym_extern] = ACTIONS(936), [anon_sym___attribute__] = ACTIONS(939), [anon_sym_LBRACK_LBRACK] = ACTIONS(942), @@ -27511,8 +27047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(913), [anon_sym___thiscall] = ACTIONS(913), [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(951), [anon_sym_unsigned] = ACTIONS(951), [anon_sym_long] = ACTIONS(951), @@ -27538,20 +27073,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(960), [anon_sym_struct] = ACTIONS(963), [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1116), [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1119), [anon_sym_case] = ACTIONS(913), [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym___try] = ACTIONS(1199), - [anon_sym___leave] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1140), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1146), [anon_sym_DASH_DASH] = ACTIONS(1002), [anon_sym_PLUS_PLUS] = ACTIONS(1002), [anon_sym_sizeof] = ACTIONS(1005), @@ -27581,70 +27116,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1416), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1205), + [66] = { + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1461), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(1149), [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), @@ -27655,9 +27191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym___extension__] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -27668,8 +27204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1043), [anon_sym___thiscall] = ACTIONS(1043), [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(643), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27695,20 +27230,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_if] = ACTIONS(645), [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(647), [anon_sym_case] = ACTIONS(1043), [anon_sym_default] = ACTIONS(1043), - [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_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27738,228 +27273,71 @@ 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(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1416), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1205), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(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(499), - [anon_sym_RBRACE] = ACTIONS(1207), - [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_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [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), - }, - [72] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1422), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1095), + [67] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1151), + [sym_identifier] = ACTIONS(1153), [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), @@ -27970,9 +27348,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym___extension__] = ACTIONS(559), - [anon_sym_typedef] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1155), + [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), @@ -27983,7 +27361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1039), [anon_sym___thiscall] = ACTIONS(1039), [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28009,20 +27387,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(567), + [anon_sym_if] = ACTIONS(57), [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(569), + [anon_sym_switch] = ACTIONS(59), [anon_sym_case] = ACTIONS(1039), [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28052,68 +27430,67 @@ 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(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_identifier] = ACTIONS(1099), + [68] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1473), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1095), [aux_sym_preproc_include_token1] = ACTIONS(1039), [aux_sym_preproc_def_token1] = ACTIONS(1039), [aux_sym_preproc_if_token1] = ACTIONS(1039), @@ -28127,9 +27504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1101), - [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), @@ -28140,7 +27517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1039), [anon_sym___thiscall] = ACTIONS(1039), [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1151), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28166,20 +27544,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_if] = ACTIONS(503), [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(505), [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(1103), - [anon_sym___leave] = ACTIONS(1105), + [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), @@ -28209,68 +27587,67 @@ 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(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_identifier] = ACTIONS(1099), + [69] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1473), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1095), [aux_sym_preproc_include_token1] = ACTIONS(1037), [aux_sym_preproc_def_token1] = ACTIONS(1037), [aux_sym_preproc_if_token1] = ACTIONS(1037), @@ -28284,9 +27661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1101), - [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), @@ -28297,7 +27674,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1037), [anon_sym___thiscall] = ACTIONS(1037), [anon_sym___vectorcall] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1161), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28323,20 +27701,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_if] = ACTIONS(503), [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(505), [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(1103), - [anon_sym___leave] = ACTIONS(1105), + [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), @@ -28366,227 +27744,71 @@ 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(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1170), - [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_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), - }, - [76] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1416), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1205), + [70] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1461), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1149), [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), @@ -28597,9 +27819,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym___extension__] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -28610,8 +27832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(643), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28637,20 +27858,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_if] = ACTIONS(645), [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(647), [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_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28680,70 +27901,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [77] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1416), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1205), + [71] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1461), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1149), [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), @@ -28754,9 +27976,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym___extension__] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -28767,8 +27989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1039), [anon_sym___thiscall] = ACTIONS(1039), [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(643), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28794,20 +28015,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_if] = ACTIONS(645), [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(647), [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_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28837,74 +28058,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [78] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1099), - [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(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1461), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1163), + [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(1166), + [anon_sym___extension__] = ACTIONS(1169), + [anon_sym_typedef] = ACTIONS(1172), + [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(1175), + [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(1178), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1181), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1202), + [anon_sym___try] = ACTIONS(1205), + [anon_sym___leave] = ACTIONS(1208), + [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), + }, + [73] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(67), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_identifier] = ACTIONS(1153), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28912,19 +28290,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1155), [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___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_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -28952,10 +28330,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(57), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), + [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), @@ -28963,8 +28341,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(1103), - [anon_sym___leave] = ACTIONS(1105), + [anon_sym___try] = ACTIONS(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28994,67 +28372,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1261), + [74] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1473), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(74), + [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), @@ -29062,14 +28446,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(924), [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1158), + [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(1099), [anon_sym_signed] = ACTIONS(951), [anon_sym_unsigned] = ACTIONS(951), [anon_sym_long] = ACTIONS(951), @@ -29095,18 +28486,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(960), [anon_sym_struct] = ACTIONS(963), [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1228), [anon_sym_else] = ACTIONS(913), [anon_sym_switch] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1234), [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1270), + [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(1273), - [anon_sym___leave] = ACTIONS(1202), + [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), @@ -29136,67 +28529,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1276), + [75] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1473), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1095), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29205,13 +28604,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___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [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_LBRACE] = ACTIONS(41), + [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(499), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -29237,17 +28643,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(1278), + [anon_sym_if] = ACTIONS(503), [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_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [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), @@ -29278,67 +28686,74 @@ 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(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1276), + [76] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(77), + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1153), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29346,13 +28761,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1155), [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(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_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -29379,18 +28800,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(1278), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29420,67 +28843,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym_seh_try_statement] = STATE(80), - [sym_seh_leave_statement] = STATE(80), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1276), + [77] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_identifier] = ACTIONS(1153), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29488,13 +28918,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1155), [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(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -29521,18 +28957,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(1278), - [anon_sym_else] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29562,67 +29000,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [83] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1429), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(562), - [sym_ms_declspec_modifier] = STATE(932), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [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(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1276), + [78] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1461), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1149), + [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), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym___extension__] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), + [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(643), + [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(645), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), + [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), + }, + [79] = { + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym_seh_try_statement] = STATE(82), + [sym_seh_leave_statement] = STATE(82), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(1261), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29663,17 +29258,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(1039), [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), @@ -29704,50 +29299,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(637), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1425), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__for_statement_body] = STATE(2301), - [sym__expression] = STATE(1341), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2269), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(1286), + [80] = { + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym_seh_try_statement] = STATE(82), + [sym_seh_leave_statement] = STATE(82), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(1261), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29755,12 +29367,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), @@ -29786,6 +29400,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(1041), + [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), @@ -29815,50 +29441,67 @@ 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(637), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1425), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__for_statement_body] = STATE(2265), - [sym__expression] = STATE(1341), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2269), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(1286), + [81] = { + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym_seh_try_statement] = STATE(80), + [sym_seh_leave_statement] = STATE(80), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(1261), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29866,12 +29509,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), @@ -29897,6 +29542,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(1037), + [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), @@ -29926,50 +29583,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [86] = { - [sym_declaration] = STATE(637), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1425), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__for_statement_body] = STATE(2231), - [sym__expression] = STATE(1341), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2269), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(1286), + [82] = { + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym_seh_try_statement] = STATE(82), + [sym_seh_leave_statement] = STATE(82), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(1271), + [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(1107), + [anon_sym_typedef] = ACTIONS(1110), + [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(1113), + [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(1274), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1140), + [anon_sym___try] = ACTIONS(1283), + [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), + }, + [83] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1459), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(610), + [sym_ms_declspec_modifier] = STATE(974), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1261), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29977,12 +29793,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), @@ -30008,6 +29826,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(1043), + [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), @@ -30037,49 +29867,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [87] = { - [sym_declaration] = STATE(637), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1425), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__for_statement_body] = STATE(2144), - [sym__expression] = STATE(1341), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2269), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [84] = { + [sym_declaration] = STATE(670), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1468), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__for_statement_body] = STATE(2282), + [sym__expression] = STATE(1398), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2435), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -30148,49 +29978,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [88] = { - [sym_declaration] = STATE(637), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1425), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__for_statement_body] = STATE(2290), - [sym__expression] = STATE(1341), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2269), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [85] = { + [sym_declaration] = STATE(670), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1468), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__for_statement_body] = STATE(2434), + [sym__expression] = STATE(1398), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2435), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -30259,49 +30089,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [89] = { - [sym_declaration] = STATE(637), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1425), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__for_statement_body] = STATE(2319), - [sym__expression] = STATE(1341), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2269), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [86] = { + [sym_declaration] = STATE(670), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1468), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__for_statement_body] = STATE(2458), + [sym__expression] = STATE(1398), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2435), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -30370,23 +30200,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [90] = { - [sym_else_clause] = STATE(131), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), + [87] = { + [sym_declaration] = STATE(670), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1468), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__for_statement_body] = STATE(2376), + [sym__expression] = STATE(1398), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2435), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [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), + }, + [88] = { + [sym_declaration] = STATE(670), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1468), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__for_statement_body] = STATE(2335), + [sym__expression] = STATE(1398), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2435), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [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), + }, + [89] = { + [sym_declaration] = STATE(670), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1468), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__for_statement_body] = STATE(2251), + [sym__expression] = STATE(1398), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2435), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [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), + }, + [90] = { + [sym_else_clause] = STATE(105), + [sym_else_if_clause] = STATE(106), + [aux_sym_if_statement_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [aux_sym_preproc_else_token1] = ACTIONS(1292), + [aux_sym_preproc_elif_token1] = ACTIONS(1292), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), [anon_sym_DASH] = ACTIONS(1292), [anon_sym_PLUS] = ACTIONS(1292), [anon_sym_STAR] = ACTIONS(1294), @@ -30431,7 +30596,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(1296), + [anon_sym_else] = ACTIONS(1292), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -30474,108 +30639,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [91] = { - [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_else_clause] = STATE(126), + [sym_else_if_clause] = STATE(106), + [aux_sym_if_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [aux_sym_preproc_else_token1] = ACTIONS(1296), + [aux_sym_preproc_elif_token1] = ACTIONS(1296), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym___try] = ACTIONS(1296), + [anon_sym___leave] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, [92] = { + [sym_else_clause] = STATE(105), + [sym_else_if_clause] = STATE(106), + [aux_sym_if_statement_repeat1] = STATE(91), [sym_identifier] = ACTIONS(1302), [aux_sym_preproc_include_token1] = ACTIONS(1302), [aux_sym_preproc_def_token1] = ACTIONS(1302), @@ -30635,7 +30806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1302), [anon_sym_union] = ACTIONS(1302), [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1300), [anon_sym_switch] = ACTIONS(1302), [anon_sym_case] = ACTIONS(1302), [anon_sym_default] = ACTIONS(1302), @@ -30678,6 +30849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [93] = { + [sym_else_if_clause] = STATE(106), + [aux_sym_if_statement_repeat1] = STATE(93), [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), @@ -30737,7 +30910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1306), [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1310), [anon_sym_switch] = ACTIONS(1306), [anon_sym_case] = ACTIONS(1306), [anon_sym_default] = ACTIONS(1306), @@ -30780,924 +30953,1131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [94] = { - [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_else_clause] = STATE(190), + [sym_else_if_clause] = STATE(217), + [aux_sym_if_statement_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [aux_sym_preproc_else_token1] = ACTIONS(1292), + [aux_sym_preproc_elif_token1] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), }, [95] = { - [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_else_clause] = STATE(231), + [sym_else_if_clause] = STATE(217), + [aux_sym_if_statement_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [aux_sym_preproc_else_token1] = ACTIONS(1296), + [aux_sym_preproc_elif_token1] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym___try] = ACTIONS(1296), + [anon_sym___leave] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [anon_sym_COMMA] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___except] = ACTIONS(1320), - [anon_sym___finally] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [sym_else_clause] = STATE(190), + [sym_else_if_clause] = STATE(217), + [aux_sym_if_statement_repeat1] = STATE(95), + [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(1313), + [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), }, [97] = { - [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_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [98] = { - [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(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [99] = { - [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(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [aux_sym_preproc_else_token1] = ACTIONS(1319), + [aux_sym_preproc_elif_token1] = ACTIONS(1319), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [100] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1323), + [anon_sym_RPAREN] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___except] = ACTIONS(1325), + [anon_sym___finally] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), [sym_comment] = ACTIONS(3), }, [101] = { - [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(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [aux_sym_preproc_else_token1] = ACTIONS(1327), + [aux_sym_preproc_elif_token1] = ACTIONS(1327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [102] = { - [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_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [aux_sym_preproc_else_token1] = ACTIONS(1331), + [aux_sym_preproc_elif_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + }, + [103] = { + [sym_else_if_clause] = STATE(217), + [aux_sym_if_statement_repeat1] = STATE(103), + [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(1335), + [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), + }, + [104] = { + [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), }, - [103] = { + [105] = { [sym_identifier] = ACTIONS(1342), [aux_sym_preproc_include_token1] = ACTIONS(1342), [aux_sym_preproc_def_token1] = ACTIONS(1342), @@ -31799,7 +32179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [104] = { + [106] = { [sym_identifier] = ACTIONS(1346), [aux_sym_preproc_include_token1] = ACTIONS(1346), [aux_sym_preproc_def_token1] = ACTIONS(1346), @@ -31901,109 +32281,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [105] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [aux_sym_preproc_else_token1] = ACTIONS(1320), - [aux_sym_preproc_elif_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [107] = { + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1333), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___except] = ACTIONS(1331), + [anon_sym___finally] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [106] = { + [108] = { [sym_identifier] = ACTIONS(1350), [aux_sym_preproc_include_token1] = ACTIONS(1350), [aux_sym_preproc_def_token1] = ACTIONS(1350), @@ -32105,211 +32485,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [107] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_RPAREN] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___except] = ACTIONS(1356), - [anon_sym___finally] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [109] = { + [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), }, - [108] = { - [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), + [110] = { + [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), }, - [109] = { + [111] = { [sym_identifier] = ACTIONS(1358), [aux_sym_preproc_include_token1] = ACTIONS(1358), [aux_sym_preproc_def_token1] = ACTIONS(1358), @@ -32411,7 +32791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [110] = { + [112] = { [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1362), [aux_sym_preproc_def_token1] = ACTIONS(1362), @@ -32513,7 +32893,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [111] = { + [113] = { + [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), + }, + [114] = { [sym_identifier] = ACTIONS(1366), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1366), @@ -32615,7 +33097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [112] = { + [115] = { [sym_identifier] = ACTIONS(1370), [aux_sym_preproc_include_token1] = ACTIONS(1370), [aux_sym_preproc_def_token1] = ACTIONS(1370), @@ -32717,7 +33199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [113] = { + [116] = { [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), @@ -32819,109 +33301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [114] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [115] = { + [117] = { [sym_identifier] = ACTIONS(1378), [aux_sym_preproc_include_token1] = ACTIONS(1378), [aux_sym_preproc_def_token1] = ACTIONS(1378), @@ -33023,2557 +33403,2047 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [116] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [117] = { - [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), - [sym_comment] = ACTIONS(3), - }, [118] = { - [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(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [aux_sym_preproc_else_token1] = ACTIONS(1325), + [aux_sym_preproc_elif_token1] = ACTIONS(1325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), [sym_comment] = ACTIONS(3), }, [119] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [120] = { - [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), + [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), + }, + [120] = { + [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), }, [121] = { - [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), + [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), }, [122] = { - [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), + [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), }, [123] = { - [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), + [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), }, [124] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [125] = { - [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), + [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), + [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), + }, + [125] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [aux_sym_preproc_else_token1] = ACTIONS(1406), + [aux_sym_preproc_elif_token1] = ACTIONS(1406), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___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), }, [126] = { - [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), + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___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), }, [127] = { - [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), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___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_else] = 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), }, [128] = { - [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(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [129] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [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_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), + }, + [130] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [131] = { - [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_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [132] = { - [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), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [133] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [aux_sym_preproc_else_token1] = ACTIONS(1356), - [aux_sym_preproc_elif_token1] = ACTIONS(1356), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [134] = { - [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(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [135] = { - [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_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_else] = 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), }, [136] = { - [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), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [137] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___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_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, [138] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___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), - }, - [139] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___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_else] = 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), - }, - [140] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___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_else] = 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), - }, - [141] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -35675,7 +35545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [142] = { + [139] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -35777,108 +35647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [143] = { - [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), - }, - [144] = { + [140] = { [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), [aux_sym_preproc_def_token1] = ACTIONS(1426), @@ -35938,6 +35707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1426), [anon_sym_union] = ACTIONS(1426), [anon_sym_if] = ACTIONS(1426), + [anon_sym_else] = ACTIONS(1426), [anon_sym_switch] = ACTIONS(1426), [anon_sym_case] = ACTIONS(1426), [anon_sym_default] = ACTIONS(1426), @@ -35979,4534 +35749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [145] = { - [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), - }, - [146] = { - [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), - }, - [147] = { - [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), - }, - [148] = { - [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), - }, - [149] = { - [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), - }, - [150] = { - [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), - }, - [151] = { - [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), - }, - [152] = { - [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), - }, - [153] = { - [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), - }, - [154] = { - [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), - }, - [155] = { - [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), - }, - [156] = { - [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), - }, - [157] = { - [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), - }, - [158] = { - [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), - }, - [159] = { - [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), - }, - [160] = { - [sym_identifier] = ACTIONS(1490), - [aux_sym_preproc_include_token1] = ACTIONS(1490), - [aux_sym_preproc_def_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token2] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), - [aux_sym_preproc_else_token1] = ACTIONS(1490), - [aux_sym_preproc_elif_token1] = ACTIONS(1490), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1490), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1490), - [sym_preproc_directive] = ACTIONS(1490), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym___extension__] = ACTIONS(1490), - [anon_sym_typedef] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym___attribute__] = ACTIONS(1490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), - [anon_sym___declspec] = ACTIONS(1490), - [anon_sym___cdecl] = ACTIONS(1490), - [anon_sym___clrcall] = ACTIONS(1490), - [anon_sym___stdcall] = ACTIONS(1490), - [anon_sym___fastcall] = ACTIONS(1490), - [anon_sym___thiscall] = ACTIONS(1490), - [anon_sym___vectorcall] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_signed] = ACTIONS(1490), - [anon_sym_unsigned] = ACTIONS(1490), - [anon_sym_long] = ACTIONS(1490), - [anon_sym_short] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_auto] = ACTIONS(1490), - [anon_sym_register] = ACTIONS(1490), - [anon_sym_inline] = ACTIONS(1490), - [anon_sym___inline] = ACTIONS(1490), - [anon_sym___inline__] = ACTIONS(1490), - [anon_sym___forceinline] = ACTIONS(1490), - [anon_sym_thread_local] = ACTIONS(1490), - [anon_sym___thread] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_constexpr] = ACTIONS(1490), - [anon_sym_volatile] = ACTIONS(1490), - [anon_sym_restrict] = ACTIONS(1490), - [anon_sym___restrict__] = ACTIONS(1490), - [anon_sym__Atomic] = ACTIONS(1490), - [anon_sym__Noreturn] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [sym_primitive_type] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_goto] = ACTIONS(1490), - [anon_sym___try] = ACTIONS(1490), - [anon_sym___leave] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1490), - [anon_sym___alignof__] = ACTIONS(1490), - [anon_sym___alignof] = ACTIONS(1490), - [anon_sym__alignof] = ACTIONS(1490), - [anon_sym_alignof] = ACTIONS(1490), - [anon_sym__Alignof] = ACTIONS(1490), - [anon_sym_offsetof] = ACTIONS(1490), - [anon_sym__Generic] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1490), - [anon_sym___asm__] = ACTIONS(1490), - [sym_number_literal] = ACTIONS(1492), - [anon_sym_L_SQUOTE] = ACTIONS(1492), - [anon_sym_u_SQUOTE] = ACTIONS(1492), - [anon_sym_U_SQUOTE] = ACTIONS(1492), - [anon_sym_u8_SQUOTE] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_L_DQUOTE] = ACTIONS(1492), - [anon_sym_u_DQUOTE] = ACTIONS(1492), - [anon_sym_U_DQUOTE] = ACTIONS(1492), - [anon_sym_u8_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [sym_identifier] = ACTIONS(1494), - [aux_sym_preproc_include_token1] = ACTIONS(1494), - [aux_sym_preproc_def_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token2] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), - [aux_sym_preproc_else_token1] = ACTIONS(1494), - [aux_sym_preproc_elif_token1] = ACTIONS(1494), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1494), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1494), - [sym_preproc_directive] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym___extension__] = ACTIONS(1494), - [anon_sym_typedef] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym___attribute__] = ACTIONS(1494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), - [anon_sym___declspec] = ACTIONS(1494), - [anon_sym___cdecl] = ACTIONS(1494), - [anon_sym___clrcall] = ACTIONS(1494), - [anon_sym___stdcall] = ACTIONS(1494), - [anon_sym___fastcall] = ACTIONS(1494), - [anon_sym___thiscall] = ACTIONS(1494), - [anon_sym___vectorcall] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_signed] = ACTIONS(1494), - [anon_sym_unsigned] = ACTIONS(1494), - [anon_sym_long] = ACTIONS(1494), - [anon_sym_short] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_auto] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1494), - [anon_sym_inline] = ACTIONS(1494), - [anon_sym___inline] = ACTIONS(1494), - [anon_sym___inline__] = ACTIONS(1494), - [anon_sym___forceinline] = ACTIONS(1494), - [anon_sym_thread_local] = ACTIONS(1494), - [anon_sym___thread] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_constexpr] = ACTIONS(1494), - [anon_sym_volatile] = ACTIONS(1494), - [anon_sym_restrict] = ACTIONS(1494), - [anon_sym___restrict__] = ACTIONS(1494), - [anon_sym__Atomic] = ACTIONS(1494), - [anon_sym__Noreturn] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [sym_primitive_type] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_do] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_goto] = ACTIONS(1494), - [anon_sym___try] = ACTIONS(1494), - [anon_sym___leave] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1496), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym___alignof__] = ACTIONS(1494), - [anon_sym___alignof] = ACTIONS(1494), - [anon_sym__alignof] = ACTIONS(1494), - [anon_sym_alignof] = ACTIONS(1494), - [anon_sym__Alignof] = ACTIONS(1494), - [anon_sym_offsetof] = ACTIONS(1494), - [anon_sym__Generic] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1494), - [anon_sym___asm__] = ACTIONS(1494), - [sym_number_literal] = ACTIONS(1496), - [anon_sym_L_SQUOTE] = ACTIONS(1496), - [anon_sym_u_SQUOTE] = ACTIONS(1496), - [anon_sym_U_SQUOTE] = ACTIONS(1496), - [anon_sym_u8_SQUOTE] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_L_DQUOTE] = ACTIONS(1496), - [anon_sym_u_DQUOTE] = ACTIONS(1496), - [anon_sym_U_DQUOTE] = ACTIONS(1496), - [anon_sym_u8_DQUOTE] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1496), - [sym_true] = ACTIONS(1494), - [sym_false] = ACTIONS(1494), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [sym_identifier] = ACTIONS(1498), - [aux_sym_preproc_include_token1] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token2] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), - [aux_sym_preproc_else_token1] = ACTIONS(1498), - [aux_sym_preproc_elif_token1] = ACTIONS(1498), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1498), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1498), - [anon_sym_LPAREN2] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym___extension__] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym___attribute__] = ACTIONS(1498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), - [anon_sym___declspec] = ACTIONS(1498), - [anon_sym___cdecl] = ACTIONS(1498), - [anon_sym___clrcall] = ACTIONS(1498), - [anon_sym___stdcall] = ACTIONS(1498), - [anon_sym___fastcall] = ACTIONS(1498), - [anon_sym___thiscall] = ACTIONS(1498), - [anon_sym___vectorcall] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1498), - [anon_sym_unsigned] = ACTIONS(1498), - [anon_sym_long] = ACTIONS(1498), - [anon_sym_short] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_auto] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1498), - [anon_sym___inline] = ACTIONS(1498), - [anon_sym___inline__] = ACTIONS(1498), - [anon_sym___forceinline] = ACTIONS(1498), - [anon_sym_thread_local] = ACTIONS(1498), - [anon_sym___thread] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_constexpr] = ACTIONS(1498), - [anon_sym_volatile] = ACTIONS(1498), - [anon_sym_restrict] = ACTIONS(1498), - [anon_sym___restrict__] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1498), - [anon_sym__Noreturn] = ACTIONS(1498), - [anon_sym_noreturn] = ACTIONS(1498), - [sym_primitive_type] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_goto] = ACTIONS(1498), - [anon_sym___try] = ACTIONS(1498), - [anon_sym___leave] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1498), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1498), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1498), - [anon_sym___asm__] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1500), - [anon_sym_L_SQUOTE] = ACTIONS(1500), - [anon_sym_u_SQUOTE] = ACTIONS(1500), - [anon_sym_U_SQUOTE] = ACTIONS(1500), - [anon_sym_u8_SQUOTE] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_L_DQUOTE] = ACTIONS(1500), - [anon_sym_u_DQUOTE] = ACTIONS(1500), - [anon_sym_U_DQUOTE] = ACTIONS(1500), - [anon_sym_u8_DQUOTE] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1500), - [sym_true] = ACTIONS(1498), - [sym_false] = ACTIONS(1498), - [anon_sym_NULL] = ACTIONS(1498), - [anon_sym_nullptr] = ACTIONS(1498), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [sym_identifier] = ACTIONS(1502), - [aux_sym_preproc_include_token1] = ACTIONS(1502), - [aux_sym_preproc_def_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token2] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), - [aux_sym_preproc_else_token1] = ACTIONS(1502), - [aux_sym_preproc_elif_token1] = ACTIONS(1502), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1502), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1502), - [sym_preproc_directive] = ACTIONS(1502), - [anon_sym_LPAREN2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym___extension__] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym___attribute__] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), - [anon_sym___declspec] = ACTIONS(1502), - [anon_sym___cdecl] = ACTIONS(1502), - [anon_sym___clrcall] = ACTIONS(1502), - [anon_sym___stdcall] = ACTIONS(1502), - [anon_sym___fastcall] = ACTIONS(1502), - [anon_sym___thiscall] = ACTIONS(1502), - [anon_sym___vectorcall] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1502), - [anon_sym_unsigned] = ACTIONS(1502), - [anon_sym_long] = ACTIONS(1502), - [anon_sym_short] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_auto] = ACTIONS(1502), - [anon_sym_register] = ACTIONS(1502), - [anon_sym_inline] = ACTIONS(1502), - [anon_sym___inline] = ACTIONS(1502), - [anon_sym___inline__] = ACTIONS(1502), - [anon_sym___forceinline] = ACTIONS(1502), - [anon_sym_thread_local] = ACTIONS(1502), - [anon_sym___thread] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_constexpr] = ACTIONS(1502), - [anon_sym_volatile] = ACTIONS(1502), - [anon_sym_restrict] = ACTIONS(1502), - [anon_sym___restrict__] = ACTIONS(1502), - [anon_sym__Atomic] = ACTIONS(1502), - [anon_sym__Noreturn] = ACTIONS(1502), - [anon_sym_noreturn] = ACTIONS(1502), - [sym_primitive_type] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_do] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_goto] = ACTIONS(1502), - [anon_sym___try] = ACTIONS(1502), - [anon_sym___leave] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1502), - [anon_sym___alignof__] = ACTIONS(1502), - [anon_sym___alignof] = ACTIONS(1502), - [anon_sym__alignof] = ACTIONS(1502), - [anon_sym_alignof] = ACTIONS(1502), - [anon_sym__Alignof] = ACTIONS(1502), - [anon_sym_offsetof] = ACTIONS(1502), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1502), - [anon_sym___asm__] = ACTIONS(1502), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1504), - [anon_sym_u_SQUOTE] = ACTIONS(1504), - [anon_sym_U_SQUOTE] = ACTIONS(1504), - [anon_sym_u8_SQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_L_DQUOTE] = ACTIONS(1504), - [anon_sym_u_DQUOTE] = ACTIONS(1504), - [anon_sym_U_DQUOTE] = ACTIONS(1504), - [anon_sym_u8_DQUOTE] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym_true] = ACTIONS(1502), - [sym_false] = ACTIONS(1502), - [anon_sym_NULL] = ACTIONS(1502), - [anon_sym_nullptr] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - }, - [164] = { - [sym_identifier] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token2] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), - [aux_sym_preproc_else_token1] = ACTIONS(1506), - [aux_sym_preproc_elif_token1] = ACTIONS(1506), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1506), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1506), - [sym_preproc_directive] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym___extension__] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym___attribute__] = ACTIONS(1506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), - [anon_sym___declspec] = ACTIONS(1506), - [anon_sym___cdecl] = ACTIONS(1506), - [anon_sym___clrcall] = ACTIONS(1506), - [anon_sym___stdcall] = ACTIONS(1506), - [anon_sym___fastcall] = ACTIONS(1506), - [anon_sym___thiscall] = ACTIONS(1506), - [anon_sym___vectorcall] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_signed] = ACTIONS(1506), - [anon_sym_unsigned] = ACTIONS(1506), - [anon_sym_long] = ACTIONS(1506), - [anon_sym_short] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_auto] = ACTIONS(1506), - [anon_sym_register] = ACTIONS(1506), - [anon_sym_inline] = ACTIONS(1506), - [anon_sym___inline] = ACTIONS(1506), - [anon_sym___inline__] = ACTIONS(1506), - [anon_sym___forceinline] = ACTIONS(1506), - [anon_sym_thread_local] = ACTIONS(1506), - [anon_sym___thread] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_constexpr] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1506), - [anon_sym_restrict] = ACTIONS(1506), - [anon_sym___restrict__] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1506), - [anon_sym__Noreturn] = ACTIONS(1506), - [anon_sym_noreturn] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1506), - [anon_sym___try] = ACTIONS(1506), - [anon_sym___leave] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1506), - [anon_sym___alignof__] = ACTIONS(1506), - [anon_sym___alignof] = ACTIONS(1506), - [anon_sym__alignof] = ACTIONS(1506), - [anon_sym_alignof] = ACTIONS(1506), - [anon_sym__Alignof] = ACTIONS(1506), - [anon_sym_offsetof] = ACTIONS(1506), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1506), - [anon_sym___asm__] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1508), - [anon_sym_u_SQUOTE] = ACTIONS(1508), - [anon_sym_U_SQUOTE] = ACTIONS(1508), - [anon_sym_u8_SQUOTE] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_L_DQUOTE] = ACTIONS(1508), - [anon_sym_u_DQUOTE] = ACTIONS(1508), - [anon_sym_U_DQUOTE] = ACTIONS(1508), - [anon_sym_u8_DQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [anon_sym_NULL] = ACTIONS(1506), - [anon_sym_nullptr] = ACTIONS(1506), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [sym_identifier] = ACTIONS(1510), - [aux_sym_preproc_include_token1] = ACTIONS(1510), - [aux_sym_preproc_def_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token2] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), - [aux_sym_preproc_else_token1] = ACTIONS(1510), - [aux_sym_preproc_elif_token1] = ACTIONS(1510), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym___extension__] = ACTIONS(1510), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym___attribute__] = ACTIONS(1510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), - [anon_sym___declspec] = ACTIONS(1510), - [anon_sym___cdecl] = ACTIONS(1510), - [anon_sym___clrcall] = ACTIONS(1510), - [anon_sym___stdcall] = ACTIONS(1510), - [anon_sym___fastcall] = ACTIONS(1510), - [anon_sym___thiscall] = ACTIONS(1510), - [anon_sym___vectorcall] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym___inline] = ACTIONS(1510), - [anon_sym___inline__] = ACTIONS(1510), - [anon_sym___forceinline] = ACTIONS(1510), - [anon_sym_thread_local] = ACTIONS(1510), - [anon_sym___thread] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_constexpr] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym___restrict__] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym__Noreturn] = ACTIONS(1510), - [anon_sym_noreturn] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym___try] = ACTIONS(1510), - [anon_sym___leave] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1510), - [anon_sym___alignof__] = ACTIONS(1510), - [anon_sym___alignof] = ACTIONS(1510), - [anon_sym__alignof] = ACTIONS(1510), - [anon_sym_alignof] = ACTIONS(1510), - [anon_sym__Alignof] = ACTIONS(1510), - [anon_sym_offsetof] = ACTIONS(1510), - [anon_sym__Generic] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1510), - [anon_sym___asm__] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1512), - [anon_sym_u_SQUOTE] = ACTIONS(1512), - [anon_sym_U_SQUOTE] = ACTIONS(1512), - [anon_sym_u8_SQUOTE] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_L_DQUOTE] = ACTIONS(1512), - [anon_sym_u_DQUOTE] = ACTIONS(1512), - [anon_sym_U_DQUOTE] = ACTIONS(1512), - [anon_sym_u8_DQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [anon_sym_NULL] = ACTIONS(1510), - [anon_sym_nullptr] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token2] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [aux_sym_preproc_else_token1] = ACTIONS(1514), - [aux_sym_preproc_elif_token1] = ACTIONS(1514), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___extension__] = ACTIONS(1514), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym___inline] = ACTIONS(1514), - [anon_sym___inline__] = ACTIONS(1514), - [anon_sym___forceinline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym___thread] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym___restrict__] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym__Noreturn] = ACTIONS(1514), - [anon_sym_noreturn] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym___try] = ACTIONS(1514), - [anon_sym___leave] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [anon_sym___alignof__] = ACTIONS(1514), - [anon_sym___alignof] = ACTIONS(1514), - [anon_sym__alignof] = ACTIONS(1514), - [anon_sym_alignof] = ACTIONS(1514), - [anon_sym__Alignof] = ACTIONS(1514), - [anon_sym_offsetof] = ACTIONS(1514), - [anon_sym__Generic] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1514), - [anon_sym___asm__] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [anon_sym_NULL] = ACTIONS(1514), - [anon_sym_nullptr] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token2] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), - [aux_sym_preproc_else_token1] = ACTIONS(1518), - [aux_sym_preproc_elif_token1] = ACTIONS(1518), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1518), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1518), - [sym_preproc_directive] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym___extension__] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___cdecl] = ACTIONS(1518), - [anon_sym___clrcall] = ACTIONS(1518), - [anon_sym___stdcall] = ACTIONS(1518), - [anon_sym___fastcall] = ACTIONS(1518), - [anon_sym___thiscall] = ACTIONS(1518), - [anon_sym___vectorcall] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_auto] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym___inline] = ACTIONS(1518), - [anon_sym___inline__] = ACTIONS(1518), - [anon_sym___forceinline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym___thread] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym___restrict__] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym__Noreturn] = ACTIONS(1518), - [anon_sym_noreturn] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym___try] = ACTIONS(1518), - [anon_sym___leave] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [anon_sym___alignof__] = ACTIONS(1518), - [anon_sym___alignof] = ACTIONS(1518), - [anon_sym__alignof] = ACTIONS(1518), - [anon_sym_alignof] = ACTIONS(1518), - [anon_sym__Alignof] = ACTIONS(1518), - [anon_sym_offsetof] = ACTIONS(1518), - [anon_sym__Generic] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1518), - [anon_sym___asm__] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [anon_sym_NULL] = ACTIONS(1518), - [anon_sym_nullptr] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_identifier] = ACTIONS(1522), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym___extension__] = ACTIONS(1522), - [anon_sym_typedef] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), - [anon_sym___declspec] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_signed] = ACTIONS(1522), - [anon_sym_unsigned] = ACTIONS(1522), - [anon_sym_long] = ACTIONS(1522), - [anon_sym_short] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_auto] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym___inline] = ACTIONS(1522), - [anon_sym___inline__] = ACTIONS(1522), - [anon_sym___forceinline] = ACTIONS(1522), - [anon_sym_thread_local] = ACTIONS(1522), - [anon_sym___thread] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_constexpr] = ACTIONS(1522), - [anon_sym_volatile] = ACTIONS(1522), - [anon_sym_restrict] = ACTIONS(1522), - [anon_sym___restrict__] = ACTIONS(1522), - [anon_sym__Atomic] = ACTIONS(1522), - [anon_sym__Noreturn] = ACTIONS(1522), - [anon_sym_noreturn] = ACTIONS(1522), - [sym_primitive_type] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_goto] = ACTIONS(1522), - [anon_sym___try] = ACTIONS(1522), - [anon_sym___leave] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [anon_sym_sizeof] = ACTIONS(1522), - [anon_sym___alignof__] = ACTIONS(1522), - [anon_sym___alignof] = ACTIONS(1522), - [anon_sym__alignof] = ACTIONS(1522), - [anon_sym_alignof] = ACTIONS(1522), - [anon_sym__Alignof] = ACTIONS(1522), - [anon_sym_offsetof] = ACTIONS(1522), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1522), - [anon_sym___asm__] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(1524), - [anon_sym_L_SQUOTE] = ACTIONS(1524), - [anon_sym_u_SQUOTE] = ACTIONS(1524), - [anon_sym_U_SQUOTE] = ACTIONS(1524), - [anon_sym_u8_SQUOTE] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_L_DQUOTE] = ACTIONS(1524), - [anon_sym_u_DQUOTE] = ACTIONS(1524), - [anon_sym_U_DQUOTE] = ACTIONS(1524), - [anon_sym_u8_DQUOTE] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1526), - [aux_sym_preproc_include_token1] = ACTIONS(1526), - [aux_sym_preproc_def_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token2] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), - [aux_sym_preproc_else_token1] = ACTIONS(1526), - [aux_sym_preproc_elif_token1] = ACTIONS(1526), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1526), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1526), - [sym_preproc_directive] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(1526), - [anon_sym_typedef] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym___attribute__] = ACTIONS(1526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), - [anon_sym___declspec] = ACTIONS(1526), - [anon_sym___cdecl] = ACTIONS(1526), - [anon_sym___clrcall] = ACTIONS(1526), - [anon_sym___stdcall] = ACTIONS(1526), - [anon_sym___fastcall] = ACTIONS(1526), - [anon_sym___thiscall] = ACTIONS(1526), - [anon_sym___vectorcall] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_signed] = ACTIONS(1526), - [anon_sym_unsigned] = ACTIONS(1526), - [anon_sym_long] = ACTIONS(1526), - [anon_sym_short] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_auto] = ACTIONS(1526), - [anon_sym_register] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym___inline] = ACTIONS(1526), - [anon_sym___inline__] = ACTIONS(1526), - [anon_sym___forceinline] = ACTIONS(1526), - [anon_sym_thread_local] = ACTIONS(1526), - [anon_sym___thread] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_constexpr] = ACTIONS(1526), - [anon_sym_volatile] = ACTIONS(1526), - [anon_sym_restrict] = ACTIONS(1526), - [anon_sym___restrict__] = ACTIONS(1526), - [anon_sym__Atomic] = ACTIONS(1526), - [anon_sym__Noreturn] = ACTIONS(1526), - [anon_sym_noreturn] = ACTIONS(1526), - [sym_primitive_type] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_switch] = ACTIONS(1526), - [anon_sym_case] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_goto] = ACTIONS(1526), - [anon_sym___try] = ACTIONS(1526), - [anon_sym___leave] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(1526), - [anon_sym___alignof] = ACTIONS(1526), - [anon_sym__alignof] = ACTIONS(1526), - [anon_sym_alignof] = ACTIONS(1526), - [anon_sym__Alignof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1526), - [anon_sym__Generic] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1526), - [anon_sym___asm__] = ACTIONS(1526), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1528), - [anon_sym_u_SQUOTE] = ACTIONS(1528), - [anon_sym_U_SQUOTE] = ACTIONS(1528), - [anon_sym_u8_SQUOTE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_L_DQUOTE] = ACTIONS(1528), - [anon_sym_u_DQUOTE] = ACTIONS(1528), - [anon_sym_U_DQUOTE] = ACTIONS(1528), - [anon_sym_u8_DQUOTE] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [anon_sym_NULL] = ACTIONS(1526), - [anon_sym_nullptr] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1530), - [aux_sym_preproc_def_token1] = ACTIONS(1530), - [aux_sym_preproc_if_token1] = ACTIONS(1530), - [aux_sym_preproc_if_token2] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), - [aux_sym_preproc_else_token1] = ACTIONS(1530), - [aux_sym_preproc_elif_token1] = ACTIONS(1530), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1530), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1530), - [sym_preproc_directive] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym___extension__] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym___attribute__] = ACTIONS(1530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), - [anon_sym___declspec] = ACTIONS(1530), - [anon_sym___cdecl] = ACTIONS(1530), - [anon_sym___clrcall] = ACTIONS(1530), - [anon_sym___stdcall] = ACTIONS(1530), - [anon_sym___fastcall] = ACTIONS(1530), - [anon_sym___thiscall] = ACTIONS(1530), - [anon_sym___vectorcall] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_signed] = ACTIONS(1530), - [anon_sym_unsigned] = ACTIONS(1530), - [anon_sym_long] = ACTIONS(1530), - [anon_sym_short] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_auto] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym___inline] = ACTIONS(1530), - [anon_sym___inline__] = ACTIONS(1530), - [anon_sym___forceinline] = ACTIONS(1530), - [anon_sym_thread_local] = ACTIONS(1530), - [anon_sym___thread] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_constexpr] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [anon_sym_restrict] = ACTIONS(1530), - [anon_sym___restrict__] = ACTIONS(1530), - [anon_sym__Atomic] = ACTIONS(1530), - [anon_sym__Noreturn] = ACTIONS(1530), - [anon_sym_noreturn] = ACTIONS(1530), - [sym_primitive_type] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_goto] = ACTIONS(1530), - [anon_sym___try] = ACTIONS(1530), - [anon_sym___leave] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [anon_sym_sizeof] = ACTIONS(1530), - [anon_sym___alignof__] = ACTIONS(1530), - [anon_sym___alignof] = ACTIONS(1530), - [anon_sym__alignof] = ACTIONS(1530), - [anon_sym_alignof] = ACTIONS(1530), - [anon_sym__Alignof] = ACTIONS(1530), - [anon_sym_offsetof] = ACTIONS(1530), - [anon_sym__Generic] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1530), - [anon_sym___asm__] = ACTIONS(1530), - [sym_number_literal] = ACTIONS(1532), - [anon_sym_L_SQUOTE] = ACTIONS(1532), - [anon_sym_u_SQUOTE] = ACTIONS(1532), - [anon_sym_U_SQUOTE] = ACTIONS(1532), - [anon_sym_u8_SQUOTE] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_L_DQUOTE] = ACTIONS(1532), - [anon_sym_u_DQUOTE] = ACTIONS(1532), - [anon_sym_U_DQUOTE] = ACTIONS(1532), - [anon_sym_u8_DQUOTE] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [anon_sym_NULL] = ACTIONS(1530), - [anon_sym_nullptr] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_else_clause] = STATE(203), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1534), - [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), - }, - [172] = { - [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), - }, - [173] = { - [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), - }, - [174] = { - [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), - }, - [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), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [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_comment] = ACTIONS(3), - }, - [177] = { - [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), - }, - [178] = { - [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), - }, - [179] = { - [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_comment] = ACTIONS(3), - }, - [180] = { - [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), - }, - [181] = { - [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_comment] = ACTIONS(3), - }, - [182] = { - [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), - }, - [183] = { - [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_comment] = ACTIONS(3), - }, - [184] = { - [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_else] = 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), - }, - [185] = { - [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), - }, - [186] = { - [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_comment] = ACTIONS(3), - }, - [187] = { - [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_else] = 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), - }, - [188] = { - [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), - }, - [189] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___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), - }, - [190] = { + [141] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -40516,6 +35759,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), [aux_sym_preproc_else_token1] = ACTIONS(1418), [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), [sym_preproc_directive] = ACTIONS(1418), [anon_sym_LPAREN2] = ACTIONS(1420), [anon_sym_BANG] = ACTIONS(1420), @@ -40606,7 +35851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [191] = { + [142] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -40616,6 +35861,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), [aux_sym_preproc_else_token1] = ACTIONS(1418), [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), [sym_preproc_directive] = ACTIONS(1418), [anon_sym_LPAREN2] = ACTIONS(1420), [anon_sym_BANG] = ACTIONS(1420), @@ -40706,2007 +35953,2545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [192] = { - [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), + [143] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, - [193] = { - [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), + [144] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, - [194] = { - [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), + [145] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___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_else] = 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), }, - [195] = { - [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), + [146] = { + [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_else] = 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), + }, + [147] = { + [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_else] = 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), }, - [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), + [148] = { + [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_else] = 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), }, - [197] = { - [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), + [149] = { + [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_else] = 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), + }, + [150] = { + [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_else] = 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), }, - [198] = { - [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), + [151] = { + [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_else] = 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), }, - [199] = { - [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), + [152] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [aux_sym_preproc_else_token1] = ACTIONS(1292), + [aux_sym_preproc_elif_token1] = ACTIONS(1292), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), + }, + [153] = { + [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), }, - [200] = { - [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), + [154] = { + [sym_else_clause] = STATE(310), + [sym_else_if_clause] = STATE(313), + [aux_sym_if_statement_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), }, - [201] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [aux_sym_preproc_else_token1] = ACTIONS(1320), - [aux_sym_preproc_elif_token1] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [155] = { + [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), }, - [202] = { - [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), + [156] = { + [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), }, - [203] = { - [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), + [157] = { + [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), }, - [204] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___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), + [158] = { + [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), }, - [205] = { - [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), + [159] = { + [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), }, - [206] = { - [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), + [160] = { + [sym_else_clause] = STATE(411), + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(173), + [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(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), }, - [207] = { - [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), + [161] = { + [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), + }, + [162] = { + [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), }, - [208] = { - [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), + [163] = { + [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), }, - [209] = { - [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), + [164] = { + [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), }, - [210] = { - [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), + [165] = { + [sym_else_clause] = STATE(411), + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(173), + [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(1490), + [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), }, - [211] = { - [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), + [166] = { + [sym_else_clause] = STATE(407), + [sym_else_if_clause] = STATE(406), + [aux_sym_if_statement_repeat1] = STATE(167), + [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(1492), + [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), }, - [212] = { + [167] = { + [sym_else_clause] = STATE(372), + [sym_else_if_clause] = STATE(406), + [aux_sym_if_statement_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym___try] = ACTIONS(1296), + [anon_sym___leave] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + }, + [168] = { + [sym_else_clause] = STATE(310), + [sym_else_if_clause] = STATE(313), + [aux_sym_if_statement_repeat1] = STATE(169), [sym_identifier] = ACTIONS(1302), [aux_sym_preproc_include_token1] = ACTIONS(1302), [aux_sym_preproc_def_token1] = ACTIONS(1302), @@ -42714,8 +38499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -42764,7 +38547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1302), [anon_sym_union] = ACTIONS(1302), [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1494), [anon_sym_switch] = ACTIONS(1302), [anon_sym_case] = ACTIONS(1302), [anon_sym_default] = ACTIONS(1302), @@ -42806,707 +38589,2128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [aux_sym_preproc_else_token1] = ACTIONS(1356), - [aux_sym_preproc_elif_token1] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [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), + [169] = { + [sym_else_clause] = STATE(333), + [sym_else_if_clause] = STATE(313), + [aux_sym_if_statement_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym___try] = ACTIONS(1296), + [anon_sym___leave] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [215] = { - [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), + [170] = { + [sym_else_clause] = STATE(407), + [sym_else_if_clause] = STATE(406), + [aux_sym_if_statement_repeat1] = STATE(167), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), }, - [216] = { - [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), + [171] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_elifdef_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), }, - [217] = { - [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), + [172] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1500), + [aux_sym_preproc_elif_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_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), }, - [218] = { - [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), + [173] = { + [sym_else_clause] = STATE(400), + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(193), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym___try] = ACTIONS(1296), + [anon_sym___leave] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [219] = { - [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), - [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), + [174] = { + [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_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_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_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), }, - [220] = { + [175] = { + [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), + }, + [176] = { + [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), + }, + [177] = { + [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), + }, + [178] = { + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [aux_sym_preproc_else_token1] = ACTIONS(1520), + [aux_sym_preproc_elif_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [aux_sym_preproc_else_token1] = ACTIONS(1524), + [aux_sym_preproc_elif_token1] = ACTIONS(1524), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token2] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [aux_sym_preproc_else_token1] = ACTIONS(1528), + [aux_sym_preproc_elif_token1] = ACTIONS(1528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym___try] = ACTIONS(1528), + [anon_sym___leave] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [181] = { + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token2] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [aux_sym_preproc_else_token1] = ACTIONS(1532), + [aux_sym_preproc_elif_token1] = ACTIONS(1532), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym___try] = ACTIONS(1532), + [anon_sym___leave] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + }, + [182] = { + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [aux_sym_preproc_else_token1] = ACTIONS(1536), + [aux_sym_preproc_elif_token1] = ACTIONS(1536), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym___try] = ACTIONS(1536), + [anon_sym___leave] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [aux_sym_preproc_else_token1] = ACTIONS(1540), + [aux_sym_preproc_elif_token1] = ACTIONS(1540), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym___try] = ACTIONS(1540), + [anon_sym___leave] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [184] = { + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [aux_sym_preproc_else_token1] = ACTIONS(1544), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1544), + [anon_sym___leave] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + }, + [185] = { + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token2] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [aux_sym_preproc_else_token1] = ACTIONS(1548), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1550), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym___try] = ACTIONS(1548), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1550), + [anon_sym_L_SQUOTE] = ACTIONS(1550), + [anon_sym_u_SQUOTE] = ACTIONS(1550), + [anon_sym_U_SQUOTE] = ACTIONS(1550), + [anon_sym_u8_SQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + }, + [186] = { + [sym_identifier] = ACTIONS(1552), + [aux_sym_preproc_include_token1] = ACTIONS(1552), + [aux_sym_preproc_def_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token2] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1552), + [aux_sym_preproc_else_token1] = ACTIONS(1552), + [aux_sym_preproc_elif_token1] = ACTIONS(1552), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1552), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1552), + [sym_preproc_directive] = ACTIONS(1552), + [anon_sym_LPAREN2] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym___extension__] = ACTIONS(1552), + [anon_sym_typedef] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym___attribute__] = ACTIONS(1552), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym___declspec] = ACTIONS(1552), + [anon_sym___cdecl] = ACTIONS(1552), + [anon_sym___clrcall] = ACTIONS(1552), + [anon_sym___stdcall] = ACTIONS(1552), + [anon_sym___fastcall] = ACTIONS(1552), + [anon_sym___thiscall] = ACTIONS(1552), + [anon_sym___vectorcall] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_signed] = ACTIONS(1552), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_auto] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_inline] = ACTIONS(1552), + [anon_sym___inline] = ACTIONS(1552), + [anon_sym___inline__] = ACTIONS(1552), + [anon_sym___forceinline] = ACTIONS(1552), + [anon_sym_thread_local] = ACTIONS(1552), + [anon_sym___thread] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_constexpr] = ACTIONS(1552), + [anon_sym_volatile] = ACTIONS(1552), + [anon_sym_restrict] = ACTIONS(1552), + [anon_sym___restrict__] = ACTIONS(1552), + [anon_sym__Atomic] = ACTIONS(1552), + [anon_sym__Noreturn] = ACTIONS(1552), + [anon_sym_noreturn] = ACTIONS(1552), + [sym_primitive_type] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1552), + [anon_sym___try] = ACTIONS(1552), + [anon_sym___leave] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1554), + [anon_sym_sizeof] = ACTIONS(1552), + [anon_sym___alignof__] = ACTIONS(1552), + [anon_sym___alignof] = ACTIONS(1552), + [anon_sym__alignof] = ACTIONS(1552), + [anon_sym_alignof] = ACTIONS(1552), + [anon_sym__Alignof] = ACTIONS(1552), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1552), + [anon_sym_asm] = ACTIONS(1552), + [anon_sym___asm__] = ACTIONS(1552), + [sym_number_literal] = ACTIONS(1554), + [anon_sym_L_SQUOTE] = ACTIONS(1554), + [anon_sym_u_SQUOTE] = ACTIONS(1554), + [anon_sym_U_SQUOTE] = ACTIONS(1554), + [anon_sym_u8_SQUOTE] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_L_DQUOTE] = ACTIONS(1554), + [anon_sym_u_DQUOTE] = ACTIONS(1554), + [anon_sym_U_DQUOTE] = ACTIONS(1554), + [anon_sym_u8_DQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym_true] = ACTIONS(1552), + [sym_false] = ACTIONS(1552), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [187] = { + [sym_identifier] = ACTIONS(1556), + [aux_sym_preproc_include_token1] = ACTIONS(1556), + [aux_sym_preproc_def_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token2] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1556), + [aux_sym_preproc_else_token1] = ACTIONS(1556), + [aux_sym_preproc_elif_token1] = ACTIONS(1556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1556), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1556), + [sym_preproc_directive] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym___extension__] = ACTIONS(1556), + [anon_sym_typedef] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym___attribute__] = ACTIONS(1556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1558), + [anon_sym___declspec] = ACTIONS(1556), + [anon_sym___cdecl] = ACTIONS(1556), + [anon_sym___clrcall] = ACTIONS(1556), + [anon_sym___stdcall] = ACTIONS(1556), + [anon_sym___fastcall] = ACTIONS(1556), + [anon_sym___thiscall] = ACTIONS(1556), + [anon_sym___vectorcall] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_signed] = ACTIONS(1556), + [anon_sym_unsigned] = ACTIONS(1556), + [anon_sym_long] = ACTIONS(1556), + [anon_sym_short] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_auto] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_inline] = ACTIONS(1556), + [anon_sym___inline] = ACTIONS(1556), + [anon_sym___inline__] = ACTIONS(1556), + [anon_sym___forceinline] = ACTIONS(1556), + [anon_sym_thread_local] = ACTIONS(1556), + [anon_sym___thread] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_constexpr] = ACTIONS(1556), + [anon_sym_volatile] = ACTIONS(1556), + [anon_sym_restrict] = ACTIONS(1556), + [anon_sym___restrict__] = ACTIONS(1556), + [anon_sym__Atomic] = ACTIONS(1556), + [anon_sym__Noreturn] = ACTIONS(1556), + [anon_sym_noreturn] = ACTIONS(1556), + [sym_primitive_type] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_switch] = ACTIONS(1556), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_goto] = ACTIONS(1556), + [anon_sym___try] = ACTIONS(1556), + [anon_sym___leave] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [anon_sym_sizeof] = ACTIONS(1556), + [anon_sym___alignof__] = ACTIONS(1556), + [anon_sym___alignof] = ACTIONS(1556), + [anon_sym__alignof] = ACTIONS(1556), + [anon_sym_alignof] = ACTIONS(1556), + [anon_sym__Alignof] = ACTIONS(1556), + [anon_sym_offsetof] = ACTIONS(1556), + [anon_sym__Generic] = ACTIONS(1556), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [sym_number_literal] = ACTIONS(1558), + [anon_sym_L_SQUOTE] = ACTIONS(1558), + [anon_sym_u_SQUOTE] = ACTIONS(1558), + [anon_sym_U_SQUOTE] = ACTIONS(1558), + [anon_sym_u8_SQUOTE] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_L_DQUOTE] = ACTIONS(1558), + [anon_sym_u_DQUOTE] = ACTIONS(1558), + [anon_sym_U_DQUOTE] = ACTIONS(1558), + [anon_sym_u8_DQUOTE] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym_true] = ACTIONS(1556), + [sym_false] = ACTIONS(1556), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [188] = { + [sym_identifier] = ACTIONS(1560), + [aux_sym_preproc_include_token1] = ACTIONS(1560), + [aux_sym_preproc_def_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token2] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1560), + [aux_sym_preproc_else_token1] = ACTIONS(1560), + [aux_sym_preproc_elif_token1] = ACTIONS(1560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1560), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1560), + [sym_preproc_directive] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym___extension__] = ACTIONS(1560), + [anon_sym_typedef] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym___attribute__] = ACTIONS(1560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym___declspec] = ACTIONS(1560), + [anon_sym___cdecl] = ACTIONS(1560), + [anon_sym___clrcall] = ACTIONS(1560), + [anon_sym___stdcall] = ACTIONS(1560), + [anon_sym___fastcall] = ACTIONS(1560), + [anon_sym___thiscall] = ACTIONS(1560), + [anon_sym___vectorcall] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_signed] = ACTIONS(1560), + [anon_sym_unsigned] = ACTIONS(1560), + [anon_sym_long] = ACTIONS(1560), + [anon_sym_short] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_auto] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_inline] = ACTIONS(1560), + [anon_sym___inline] = ACTIONS(1560), + [anon_sym___inline__] = ACTIONS(1560), + [anon_sym___forceinline] = ACTIONS(1560), + [anon_sym_thread_local] = ACTIONS(1560), + [anon_sym___thread] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_constexpr] = ACTIONS(1560), + [anon_sym_volatile] = ACTIONS(1560), + [anon_sym_restrict] = ACTIONS(1560), + [anon_sym___restrict__] = ACTIONS(1560), + [anon_sym__Atomic] = ACTIONS(1560), + [anon_sym__Noreturn] = ACTIONS(1560), + [anon_sym_noreturn] = ACTIONS(1560), + [sym_primitive_type] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_case] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_goto] = ACTIONS(1560), + [anon_sym___try] = ACTIONS(1560), + [anon_sym___leave] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_sizeof] = ACTIONS(1560), + [anon_sym___alignof__] = ACTIONS(1560), + [anon_sym___alignof] = ACTIONS(1560), + [anon_sym__alignof] = ACTIONS(1560), + [anon_sym_alignof] = ACTIONS(1560), + [anon_sym__Alignof] = ACTIONS(1560), + [anon_sym_offsetof] = ACTIONS(1560), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1560), + [anon_sym___asm__] = ACTIONS(1560), + [sym_number_literal] = ACTIONS(1562), + [anon_sym_L_SQUOTE] = ACTIONS(1562), + [anon_sym_u_SQUOTE] = ACTIONS(1562), + [anon_sym_U_SQUOTE] = ACTIONS(1562), + [anon_sym_u8_SQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_L_DQUOTE] = ACTIONS(1562), + [anon_sym_u_DQUOTE] = ACTIONS(1562), + [anon_sym_U_DQUOTE] = ACTIONS(1562), + [anon_sym_u8_DQUOTE] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [anon_sym_NULL] = ACTIONS(1560), + [anon_sym_nullptr] = ACTIONS(1560), + [sym_comment] = ACTIONS(3), + }, + [189] = { + [sym_identifier] = ACTIONS(1564), + [aux_sym_preproc_include_token1] = ACTIONS(1564), + [aux_sym_preproc_def_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token2] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1564), + [aux_sym_preproc_else_token1] = ACTIONS(1564), + [aux_sym_preproc_elif_token1] = ACTIONS(1564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1564), + [sym_preproc_directive] = ACTIONS(1564), + [anon_sym_LPAREN2] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym___extension__] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym___attribute__] = ACTIONS(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym___declspec] = ACTIONS(1564), + [anon_sym___cdecl] = ACTIONS(1564), + [anon_sym___clrcall] = ACTIONS(1564), + [anon_sym___stdcall] = ACTIONS(1564), + [anon_sym___fastcall] = ACTIONS(1564), + [anon_sym___thiscall] = ACTIONS(1564), + [anon_sym___vectorcall] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_signed] = ACTIONS(1564), + [anon_sym_unsigned] = ACTIONS(1564), + [anon_sym_long] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_auto] = ACTIONS(1564), + [anon_sym_register] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym___inline] = ACTIONS(1564), + [anon_sym___inline__] = ACTIONS(1564), + [anon_sym___forceinline] = ACTIONS(1564), + [anon_sym_thread_local] = ACTIONS(1564), + [anon_sym___thread] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_constexpr] = ACTIONS(1564), + [anon_sym_volatile] = ACTIONS(1564), + [anon_sym_restrict] = ACTIONS(1564), + [anon_sym___restrict__] = ACTIONS(1564), + [anon_sym__Atomic] = ACTIONS(1564), + [anon_sym__Noreturn] = ACTIONS(1564), + [anon_sym_noreturn] = ACTIONS(1564), + [sym_primitive_type] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_goto] = ACTIONS(1564), + [anon_sym___try] = ACTIONS(1564), + [anon_sym___leave] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_sizeof] = ACTIONS(1564), + [anon_sym___alignof__] = ACTIONS(1564), + [anon_sym___alignof] = ACTIONS(1564), + [anon_sym__alignof] = ACTIONS(1564), + [anon_sym_alignof] = ACTIONS(1564), + [anon_sym__Alignof] = ACTIONS(1564), + [anon_sym_offsetof] = ACTIONS(1564), + [anon_sym__Generic] = ACTIONS(1564), + [anon_sym_asm] = ACTIONS(1564), + [anon_sym___asm__] = ACTIONS(1564), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1566), + [anon_sym_u_SQUOTE] = ACTIONS(1566), + [anon_sym_U_SQUOTE] = ACTIONS(1566), + [anon_sym_u8_SQUOTE] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_L_DQUOTE] = ACTIONS(1566), + [anon_sym_u_DQUOTE] = ACTIONS(1566), + [anon_sym_U_DQUOTE] = ACTIONS(1566), + [anon_sym_u8_DQUOTE] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [anon_sym_NULL] = ACTIONS(1564), + [anon_sym_nullptr] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + }, + [190] = { [sym_identifier] = ACTIONS(1342), [aux_sym_preproc_include_token1] = ACTIONS(1342), [aux_sym_preproc_def_token1] = ACTIONS(1342), @@ -43606,305 +40810,907 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [221] = { - [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), + [191] = { + [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_else] = 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), + }, + [192] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [aux_sym_preproc_else_token1] = ACTIONS(1325), + [aux_sym_preproc_elif_token1] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + }, + [193] = { + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(193), + [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(1568), + [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), + }, + [194] = { + [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), + }, + [195] = { + [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_else] = 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), + }, + [196] = { + [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), }, - [222] = { - [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), + [197] = { + [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_else] = 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), + }, + [198] = { + [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_else] = 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), }, - [223] = { - [sym_identifier] = ACTIONS(1522), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym___extension__] = ACTIONS(1522), - [anon_sym_typedef] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), - [anon_sym___declspec] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_signed] = ACTIONS(1522), - [anon_sym_unsigned] = ACTIONS(1522), - [anon_sym_long] = ACTIONS(1522), - [anon_sym_short] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_auto] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym___inline] = ACTIONS(1522), - [anon_sym___inline__] = ACTIONS(1522), - [anon_sym___forceinline] = ACTIONS(1522), - [anon_sym_thread_local] = ACTIONS(1522), - [anon_sym___thread] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_constexpr] = ACTIONS(1522), - [anon_sym_volatile] = ACTIONS(1522), - [anon_sym_restrict] = ACTIONS(1522), - [anon_sym___restrict__] = ACTIONS(1522), - [anon_sym__Atomic] = ACTIONS(1522), - [anon_sym__Noreturn] = ACTIONS(1522), - [anon_sym_noreturn] = ACTIONS(1522), - [sym_primitive_type] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_goto] = ACTIONS(1522), - [anon_sym___try] = ACTIONS(1522), - [anon_sym___leave] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [anon_sym_sizeof] = ACTIONS(1522), - [anon_sym___alignof__] = ACTIONS(1522), - [anon_sym___alignof] = ACTIONS(1522), - [anon_sym__alignof] = ACTIONS(1522), - [anon_sym_alignof] = ACTIONS(1522), - [anon_sym__Alignof] = ACTIONS(1522), - [anon_sym_offsetof] = ACTIONS(1522), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1522), - [anon_sym___asm__] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(1524), - [anon_sym_L_SQUOTE] = ACTIONS(1524), - [anon_sym_u_SQUOTE] = ACTIONS(1524), - [anon_sym_U_SQUOTE] = ACTIONS(1524), - [anon_sym_u8_SQUOTE] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_L_DQUOTE] = ACTIONS(1524), - [anon_sym_u_DQUOTE] = ACTIONS(1524), - [anon_sym_U_DQUOTE] = ACTIONS(1524), - [anon_sym_u8_DQUOTE] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), + [199] = { + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [aux_sym_preproc_else_token1] = ACTIONS(1319), + [aux_sym_preproc_elif_token1] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, - [224] = { + [200] = { [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), [aux_sym_preproc_def_token1] = ACTIONS(1426), @@ -43962,6 +41768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1426), [anon_sym_union] = ACTIONS(1426), [anon_sym_if] = ACTIONS(1426), + [anon_sym_else] = ACTIONS(1426), [anon_sym_switch] = ACTIONS(1426), [anon_sym_case] = ACTIONS(1426), [anon_sym_default] = ACTIONS(1426), @@ -44003,106 +41810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [225] = { - [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), - }, - [226] = { + [201] = { [sym_identifier] = ACTIONS(1434), [aux_sym_preproc_include_token1] = ACTIONS(1434), [aux_sym_preproc_def_token1] = ACTIONS(1434), @@ -44151,1741 +41859,1758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [227] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token2] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), - [aux_sym_preproc_else_token1] = ACTIONS(1518), - [aux_sym_preproc_elif_token1] = ACTIONS(1518), - [sym_preproc_directive] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym___extension__] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___cdecl] = ACTIONS(1518), - [anon_sym___clrcall] = ACTIONS(1518), - [anon_sym___stdcall] = ACTIONS(1518), - [anon_sym___fastcall] = ACTIONS(1518), - [anon_sym___thiscall] = ACTIONS(1518), - [anon_sym___vectorcall] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_auto] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym___inline] = ACTIONS(1518), - [anon_sym___inline__] = ACTIONS(1518), - [anon_sym___forceinline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym___thread] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym___restrict__] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym__Noreturn] = ACTIONS(1518), - [anon_sym_noreturn] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym___try] = ACTIONS(1518), - [anon_sym___leave] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [anon_sym___alignof__] = ACTIONS(1518), - [anon_sym___alignof] = ACTIONS(1518), - [anon_sym__alignof] = ACTIONS(1518), - [anon_sym_alignof] = ACTIONS(1518), - [anon_sym__Alignof] = ACTIONS(1518), - [anon_sym_offsetof] = ACTIONS(1518), - [anon_sym__Generic] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1518), - [anon_sym___asm__] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [anon_sym_NULL] = ACTIONS(1518), - [anon_sym_nullptr] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [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), - }, - [229] = { - [sym_identifier] = ACTIONS(1510), - [aux_sym_preproc_include_token1] = ACTIONS(1510), - [aux_sym_preproc_def_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token2] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), - [aux_sym_preproc_else_token1] = ACTIONS(1510), - [aux_sym_preproc_elif_token1] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym___extension__] = ACTIONS(1510), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym___attribute__] = ACTIONS(1510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), - [anon_sym___declspec] = ACTIONS(1510), - [anon_sym___cdecl] = ACTIONS(1510), - [anon_sym___clrcall] = ACTIONS(1510), - [anon_sym___stdcall] = ACTIONS(1510), - [anon_sym___fastcall] = ACTIONS(1510), - [anon_sym___thiscall] = ACTIONS(1510), - [anon_sym___vectorcall] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym___inline] = ACTIONS(1510), - [anon_sym___inline__] = ACTIONS(1510), - [anon_sym___forceinline] = ACTIONS(1510), - [anon_sym_thread_local] = ACTIONS(1510), - [anon_sym___thread] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_constexpr] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym___restrict__] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym__Noreturn] = ACTIONS(1510), - [anon_sym_noreturn] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym___try] = ACTIONS(1510), - [anon_sym___leave] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1510), - [anon_sym___alignof__] = ACTIONS(1510), - [anon_sym___alignof] = ACTIONS(1510), - [anon_sym__alignof] = ACTIONS(1510), - [anon_sym_alignof] = ACTIONS(1510), - [anon_sym__Alignof] = ACTIONS(1510), - [anon_sym_offsetof] = ACTIONS(1510), - [anon_sym__Generic] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1510), - [anon_sym___asm__] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1512), - [anon_sym_u_SQUOTE] = ACTIONS(1512), - [anon_sym_U_SQUOTE] = ACTIONS(1512), - [anon_sym_u8_SQUOTE] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_L_DQUOTE] = ACTIONS(1512), - [anon_sym_u_DQUOTE] = ACTIONS(1512), - [anon_sym_U_DQUOTE] = ACTIONS(1512), - [anon_sym_u8_DQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [anon_sym_NULL] = ACTIONS(1510), - [anon_sym_nullptr] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [sym_else_clause] = STATE(325), - [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(1536), - [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), - }, - [231] = { - [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), + [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_else] = 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), }, - [232] = { - [sym_identifier] = ACTIONS(1526), - [aux_sym_preproc_include_token1] = ACTIONS(1526), - [aux_sym_preproc_def_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token2] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), - [aux_sym_preproc_else_token1] = ACTIONS(1526), - [aux_sym_preproc_elif_token1] = ACTIONS(1526), - [sym_preproc_directive] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(1526), - [anon_sym_typedef] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym___attribute__] = ACTIONS(1526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), - [anon_sym___declspec] = ACTIONS(1526), - [anon_sym___cdecl] = ACTIONS(1526), - [anon_sym___clrcall] = ACTIONS(1526), - [anon_sym___stdcall] = ACTIONS(1526), - [anon_sym___fastcall] = ACTIONS(1526), - [anon_sym___thiscall] = ACTIONS(1526), - [anon_sym___vectorcall] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_signed] = ACTIONS(1526), - [anon_sym_unsigned] = ACTIONS(1526), - [anon_sym_long] = ACTIONS(1526), - [anon_sym_short] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_auto] = ACTIONS(1526), - [anon_sym_register] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym___inline] = ACTIONS(1526), - [anon_sym___inline__] = ACTIONS(1526), - [anon_sym___forceinline] = ACTIONS(1526), - [anon_sym_thread_local] = ACTIONS(1526), - [anon_sym___thread] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_constexpr] = ACTIONS(1526), - [anon_sym_volatile] = ACTIONS(1526), - [anon_sym_restrict] = ACTIONS(1526), - [anon_sym___restrict__] = ACTIONS(1526), - [anon_sym__Atomic] = ACTIONS(1526), - [anon_sym__Noreturn] = ACTIONS(1526), - [anon_sym_noreturn] = ACTIONS(1526), - [sym_primitive_type] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_switch] = ACTIONS(1526), - [anon_sym_case] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_goto] = ACTIONS(1526), - [anon_sym___try] = ACTIONS(1526), - [anon_sym___leave] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(1526), - [anon_sym___alignof] = ACTIONS(1526), - [anon_sym__alignof] = ACTIONS(1526), - [anon_sym_alignof] = ACTIONS(1526), - [anon_sym__Alignof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1526), - [anon_sym__Generic] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1526), - [anon_sym___asm__] = ACTIONS(1526), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1528), - [anon_sym_u_SQUOTE] = ACTIONS(1528), - [anon_sym_U_SQUOTE] = ACTIONS(1528), - [anon_sym_u8_SQUOTE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_L_DQUOTE] = ACTIONS(1528), - [anon_sym_u_DQUOTE] = ACTIONS(1528), - [anon_sym_U_DQUOTE] = ACTIONS(1528), - [anon_sym_u8_DQUOTE] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [anon_sym_NULL] = ACTIONS(1526), - [anon_sym_nullptr] = ACTIONS(1526), + [202] = { + [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_else] = 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), }, - [233] = { - [sym_identifier] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token2] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), - [aux_sym_preproc_else_token1] = ACTIONS(1506), - [aux_sym_preproc_elif_token1] = ACTIONS(1506), - [sym_preproc_directive] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym___extension__] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym___attribute__] = ACTIONS(1506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), - [anon_sym___declspec] = ACTIONS(1506), - [anon_sym___cdecl] = ACTIONS(1506), - [anon_sym___clrcall] = ACTIONS(1506), - [anon_sym___stdcall] = ACTIONS(1506), - [anon_sym___fastcall] = ACTIONS(1506), - [anon_sym___thiscall] = ACTIONS(1506), - [anon_sym___vectorcall] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_signed] = ACTIONS(1506), - [anon_sym_unsigned] = ACTIONS(1506), - [anon_sym_long] = ACTIONS(1506), - [anon_sym_short] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_auto] = ACTIONS(1506), - [anon_sym_register] = ACTIONS(1506), - [anon_sym_inline] = ACTIONS(1506), - [anon_sym___inline] = ACTIONS(1506), - [anon_sym___inline__] = ACTIONS(1506), - [anon_sym___forceinline] = ACTIONS(1506), - [anon_sym_thread_local] = ACTIONS(1506), - [anon_sym___thread] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_constexpr] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1506), - [anon_sym_restrict] = ACTIONS(1506), - [anon_sym___restrict__] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1506), - [anon_sym__Noreturn] = ACTIONS(1506), - [anon_sym_noreturn] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1506), - [anon_sym___try] = ACTIONS(1506), - [anon_sym___leave] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1506), - [anon_sym___alignof__] = ACTIONS(1506), - [anon_sym___alignof] = ACTIONS(1506), - [anon_sym__alignof] = ACTIONS(1506), - [anon_sym_alignof] = ACTIONS(1506), - [anon_sym__Alignof] = ACTIONS(1506), - [anon_sym_offsetof] = ACTIONS(1506), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1506), - [anon_sym___asm__] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1508), - [anon_sym_u_SQUOTE] = ACTIONS(1508), - [anon_sym_U_SQUOTE] = ACTIONS(1508), - [anon_sym_u8_SQUOTE] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_L_DQUOTE] = ACTIONS(1508), - [anon_sym_u_DQUOTE] = ACTIONS(1508), - [anon_sym_U_DQUOTE] = ACTIONS(1508), - [anon_sym_u8_DQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [anon_sym_NULL] = ACTIONS(1506), - [anon_sym_nullptr] = ACTIONS(1506), + [203] = { + [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_else] = 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), }, - [234] = { - [sym_identifier] = ACTIONS(1494), - [aux_sym_preproc_include_token1] = ACTIONS(1494), - [aux_sym_preproc_def_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token2] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), - [aux_sym_preproc_else_token1] = ACTIONS(1494), - [aux_sym_preproc_elif_token1] = ACTIONS(1494), - [sym_preproc_directive] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym___extension__] = ACTIONS(1494), - [anon_sym_typedef] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym___attribute__] = ACTIONS(1494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), - [anon_sym___declspec] = ACTIONS(1494), - [anon_sym___cdecl] = ACTIONS(1494), - [anon_sym___clrcall] = ACTIONS(1494), - [anon_sym___stdcall] = ACTIONS(1494), - [anon_sym___fastcall] = ACTIONS(1494), - [anon_sym___thiscall] = ACTIONS(1494), - [anon_sym___vectorcall] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_signed] = ACTIONS(1494), - [anon_sym_unsigned] = ACTIONS(1494), - [anon_sym_long] = ACTIONS(1494), - [anon_sym_short] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_auto] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1494), - [anon_sym_inline] = ACTIONS(1494), - [anon_sym___inline] = ACTIONS(1494), - [anon_sym___inline__] = ACTIONS(1494), - [anon_sym___forceinline] = ACTIONS(1494), - [anon_sym_thread_local] = ACTIONS(1494), - [anon_sym___thread] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_constexpr] = ACTIONS(1494), - [anon_sym_volatile] = ACTIONS(1494), - [anon_sym_restrict] = ACTIONS(1494), - [anon_sym___restrict__] = ACTIONS(1494), - [anon_sym__Atomic] = ACTIONS(1494), - [anon_sym__Noreturn] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [sym_primitive_type] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_do] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_goto] = ACTIONS(1494), - [anon_sym___try] = ACTIONS(1494), - [anon_sym___leave] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1496), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym___alignof__] = ACTIONS(1494), - [anon_sym___alignof] = ACTIONS(1494), - [anon_sym__alignof] = ACTIONS(1494), - [anon_sym_alignof] = ACTIONS(1494), - [anon_sym__Alignof] = ACTIONS(1494), - [anon_sym_offsetof] = ACTIONS(1494), - [anon_sym__Generic] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1494), - [anon_sym___asm__] = ACTIONS(1494), - [sym_number_literal] = ACTIONS(1496), - [anon_sym_L_SQUOTE] = ACTIONS(1496), - [anon_sym_u_SQUOTE] = ACTIONS(1496), - [anon_sym_U_SQUOTE] = ACTIONS(1496), - [anon_sym_u8_SQUOTE] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_L_DQUOTE] = ACTIONS(1496), - [anon_sym_u_DQUOTE] = ACTIONS(1496), - [anon_sym_U_DQUOTE] = ACTIONS(1496), - [anon_sym_u8_DQUOTE] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1496), - [sym_true] = ACTIONS(1494), - [sym_false] = ACTIONS(1494), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), + [204] = { + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [aux_sym_preproc_else_token1] = ACTIONS(1331), + [aux_sym_preproc_elif_token1] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [235] = { - [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), + [205] = { + [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), + }, + [206] = { + [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), }, - [236] = { - [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), + [207] = { + [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), }, - [237] = { - [sym_identifier] = ACTIONS(1490), - [aux_sym_preproc_include_token1] = ACTIONS(1490), - [aux_sym_preproc_def_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token2] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), - [aux_sym_preproc_else_token1] = ACTIONS(1490), - [aux_sym_preproc_elif_token1] = ACTIONS(1490), - [sym_preproc_directive] = ACTIONS(1490), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym___extension__] = ACTIONS(1490), - [anon_sym_typedef] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym___attribute__] = ACTIONS(1490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), - [anon_sym___declspec] = ACTIONS(1490), - [anon_sym___cdecl] = ACTIONS(1490), - [anon_sym___clrcall] = ACTIONS(1490), - [anon_sym___stdcall] = ACTIONS(1490), - [anon_sym___fastcall] = ACTIONS(1490), - [anon_sym___thiscall] = ACTIONS(1490), - [anon_sym___vectorcall] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_signed] = ACTIONS(1490), - [anon_sym_unsigned] = ACTIONS(1490), - [anon_sym_long] = ACTIONS(1490), - [anon_sym_short] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_auto] = ACTIONS(1490), - [anon_sym_register] = ACTIONS(1490), - [anon_sym_inline] = ACTIONS(1490), - [anon_sym___inline] = ACTIONS(1490), - [anon_sym___inline__] = ACTIONS(1490), - [anon_sym___forceinline] = ACTIONS(1490), - [anon_sym_thread_local] = ACTIONS(1490), - [anon_sym___thread] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_constexpr] = ACTIONS(1490), - [anon_sym_volatile] = ACTIONS(1490), - [anon_sym_restrict] = ACTIONS(1490), - [anon_sym___restrict__] = ACTIONS(1490), - [anon_sym__Atomic] = ACTIONS(1490), - [anon_sym__Noreturn] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [sym_primitive_type] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_goto] = ACTIONS(1490), - [anon_sym___try] = ACTIONS(1490), - [anon_sym___leave] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1490), - [anon_sym___alignof__] = ACTIONS(1490), - [anon_sym___alignof] = ACTIONS(1490), - [anon_sym__alignof] = ACTIONS(1490), - [anon_sym_alignof] = ACTIONS(1490), - [anon_sym__Alignof] = ACTIONS(1490), - [anon_sym_offsetof] = ACTIONS(1490), - [anon_sym__Generic] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1490), - [anon_sym___asm__] = ACTIONS(1490), - [sym_number_literal] = ACTIONS(1492), - [anon_sym_L_SQUOTE] = ACTIONS(1492), - [anon_sym_u_SQUOTE] = ACTIONS(1492), - [anon_sym_U_SQUOTE] = ACTIONS(1492), - [anon_sym_u8_SQUOTE] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_L_DQUOTE] = ACTIONS(1492), - [anon_sym_u_DQUOTE] = ACTIONS(1492), - [anon_sym_U_DQUOTE] = ACTIONS(1492), - [anon_sym_u8_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), + [208] = { + [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), }, - [238] = { - [sym__expression] = STATE(902), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(884), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(884), - [sym_call_expression] = STATE(884), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(884), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(884), - [sym_initializer_list] = STATE(861), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_identifier] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym___attribute__] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_COLON] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_STAR_EQ] = ACTIONS(1540), - [anon_sym_SLASH_EQ] = ACTIONS(1540), - [anon_sym_PERCENT_EQ] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1540), - [anon_sym_DASH_EQ] = ACTIONS(1540), - [anon_sym_LT_LT_EQ] = ACTIONS(1540), - [anon_sym_GT_GT_EQ] = ACTIONS(1540), - [anon_sym_AMP_EQ] = ACTIONS(1540), - [anon_sym_CARET_EQ] = ACTIONS(1540), - [anon_sym_PIPE_EQ] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1550), - [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(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), - [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), + [209] = { + [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_comment] = ACTIONS(3), }, - [239] = { - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token2] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [aux_sym_preproc_else_token1] = ACTIONS(1514), - [aux_sym_preproc_elif_token1] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___extension__] = ACTIONS(1514), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym___inline] = ACTIONS(1514), - [anon_sym___inline__] = ACTIONS(1514), - [anon_sym___forceinline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym___thread] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym___restrict__] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym__Noreturn] = ACTIONS(1514), - [anon_sym_noreturn] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym___try] = ACTIONS(1514), - [anon_sym___leave] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [anon_sym___alignof__] = ACTIONS(1514), - [anon_sym___alignof] = ACTIONS(1514), - [anon_sym__alignof] = ACTIONS(1514), - [anon_sym_alignof] = ACTIONS(1514), - [anon_sym__Alignof] = ACTIONS(1514), - [anon_sym_offsetof] = ACTIONS(1514), - [anon_sym__Generic] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1514), - [anon_sym___asm__] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [anon_sym_NULL] = ACTIONS(1514), - [anon_sym_nullptr] = ACTIONS(1514), + [210] = { + [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), }, - [240] = { - [sym__expression] = STATE(902), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(884), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(884), - [sym_call_expression] = STATE(884), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(884), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(884), - [sym_initializer_list] = STATE(861), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(890), - [sym_null] = STATE(884), - [sym_identifier] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1540), - [aux_sym_preproc_if_token2] = ACTIONS(1540), - [aux_sym_preproc_else_token1] = ACTIONS(1540), - [aux_sym_preproc_elif_token1] = ACTIONS(1546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1540), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_STAR_EQ] = ACTIONS(1540), - [anon_sym_SLASH_EQ] = ACTIONS(1540), - [anon_sym_PERCENT_EQ] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1540), - [anon_sym_DASH_EQ] = ACTIONS(1540), - [anon_sym_LT_LT_EQ] = ACTIONS(1540), - [anon_sym_GT_GT_EQ] = ACTIONS(1540), - [anon_sym_AMP_EQ] = ACTIONS(1540), - [anon_sym_CARET_EQ] = ACTIONS(1540), - [anon_sym_PIPE_EQ] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1556), - [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(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), - [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(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [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), + [212] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), + [sym_comment] = ACTIONS(3), + }, + [213] = { + [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), }, - [242] = { - [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), + [214] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [aux_sym_preproc_else_token1] = ACTIONS(1327), + [aux_sym_preproc_elif_token1] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_else_clause] = STATE(271), - [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(1558), - [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), + [215] = { + [sym_else_if_clause] = STATE(406), + [aux_sym_if_statement_repeat1] = STATE(215), + [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(1571), + [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), + }, + [216] = { + [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), + }, + [217] = { + [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), }, - [244] = { - [sym_else_clause] = STATE(352), + [218] = { + [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), + }, + [219] = { [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -45893,6 +43618,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1292), [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [aux_sym_preproc_else_token1] = ACTIONS(1292), + [aux_sym_preproc_elif_token1] = ACTIONS(1292), [sym_preproc_directive] = ACTIONS(1292), [anon_sym_LPAREN2] = ACTIONS(1294), [anon_sym_BANG] = ACTIONS(1294), @@ -45941,7 +43668,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(1560), + [anon_sym_else] = ACTIONS(1292), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -45983,304 +43710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [245] = { - [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(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1530), - [aux_sym_preproc_def_token1] = ACTIONS(1530), - [aux_sym_preproc_if_token1] = ACTIONS(1530), - [aux_sym_preproc_if_token2] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), - [aux_sym_preproc_else_token1] = ACTIONS(1530), - [aux_sym_preproc_elif_token1] = ACTIONS(1530), - [sym_preproc_directive] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym___extension__] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym___attribute__] = ACTIONS(1530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), - [anon_sym___declspec] = ACTIONS(1530), - [anon_sym___cdecl] = ACTIONS(1530), - [anon_sym___clrcall] = ACTIONS(1530), - [anon_sym___stdcall] = ACTIONS(1530), - [anon_sym___fastcall] = ACTIONS(1530), - [anon_sym___thiscall] = ACTIONS(1530), - [anon_sym___vectorcall] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_signed] = ACTIONS(1530), - [anon_sym_unsigned] = ACTIONS(1530), - [anon_sym_long] = ACTIONS(1530), - [anon_sym_short] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_auto] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym___inline] = ACTIONS(1530), - [anon_sym___inline__] = ACTIONS(1530), - [anon_sym___forceinline] = ACTIONS(1530), - [anon_sym_thread_local] = ACTIONS(1530), - [anon_sym___thread] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_constexpr] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [anon_sym_restrict] = ACTIONS(1530), - [anon_sym___restrict__] = ACTIONS(1530), - [anon_sym__Atomic] = ACTIONS(1530), - [anon_sym__Noreturn] = ACTIONS(1530), - [anon_sym_noreturn] = ACTIONS(1530), - [sym_primitive_type] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_goto] = ACTIONS(1530), - [anon_sym___try] = ACTIONS(1530), - [anon_sym___leave] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [anon_sym_sizeof] = ACTIONS(1530), - [anon_sym___alignof__] = ACTIONS(1530), - [anon_sym___alignof] = ACTIONS(1530), - [anon_sym__alignof] = ACTIONS(1530), - [anon_sym_alignof] = ACTIONS(1530), - [anon_sym__Alignof] = ACTIONS(1530), - [anon_sym_offsetof] = ACTIONS(1530), - [anon_sym__Generic] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1530), - [anon_sym___asm__] = ACTIONS(1530), - [sym_number_literal] = ACTIONS(1532), - [anon_sym_L_SQUOTE] = ACTIONS(1532), - [anon_sym_u_SQUOTE] = ACTIONS(1532), - [anon_sym_U_SQUOTE] = ACTIONS(1532), - [anon_sym_u8_SQUOTE] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_L_DQUOTE] = ACTIONS(1532), - [anon_sym_u_DQUOTE] = ACTIONS(1532), - [anon_sym_U_DQUOTE] = ACTIONS(1532), - [anon_sym_u8_DQUOTE] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [anon_sym_NULL] = ACTIONS(1530), - [anon_sym_nullptr] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [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), - }, - [248] = { + [220] = { [sym_identifier] = ACTIONS(1422), [aux_sym_preproc_include_token1] = ACTIONS(1422), [aux_sym_preproc_def_token1] = ACTIONS(1422), @@ -46324,760 +43754,772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [249] = { - [sym_identifier] = ACTIONS(1502), - [aux_sym_preproc_include_token1] = ACTIONS(1502), - [aux_sym_preproc_def_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token2] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), - [aux_sym_preproc_else_token1] = ACTIONS(1502), - [aux_sym_preproc_elif_token1] = ACTIONS(1502), - [sym_preproc_directive] = ACTIONS(1502), - [anon_sym_LPAREN2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym___extension__] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym___attribute__] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), - [anon_sym___declspec] = ACTIONS(1502), - [anon_sym___cdecl] = ACTIONS(1502), - [anon_sym___clrcall] = ACTIONS(1502), - [anon_sym___stdcall] = ACTIONS(1502), - [anon_sym___fastcall] = ACTIONS(1502), - [anon_sym___thiscall] = ACTIONS(1502), - [anon_sym___vectorcall] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1502), - [anon_sym_unsigned] = ACTIONS(1502), - [anon_sym_long] = ACTIONS(1502), - [anon_sym_short] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_auto] = ACTIONS(1502), - [anon_sym_register] = ACTIONS(1502), - [anon_sym_inline] = ACTIONS(1502), - [anon_sym___inline] = ACTIONS(1502), - [anon_sym___inline__] = ACTIONS(1502), - [anon_sym___forceinline] = ACTIONS(1502), - [anon_sym_thread_local] = ACTIONS(1502), - [anon_sym___thread] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_constexpr] = ACTIONS(1502), - [anon_sym_volatile] = ACTIONS(1502), - [anon_sym_restrict] = ACTIONS(1502), - [anon_sym___restrict__] = ACTIONS(1502), - [anon_sym__Atomic] = ACTIONS(1502), - [anon_sym__Noreturn] = ACTIONS(1502), - [anon_sym_noreturn] = ACTIONS(1502), - [sym_primitive_type] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_do] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_goto] = ACTIONS(1502), - [anon_sym___try] = ACTIONS(1502), - [anon_sym___leave] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1502), - [anon_sym___alignof__] = ACTIONS(1502), - [anon_sym___alignof] = ACTIONS(1502), - [anon_sym__alignof] = ACTIONS(1502), - [anon_sym_alignof] = ACTIONS(1502), - [anon_sym__Alignof] = ACTIONS(1502), - [anon_sym_offsetof] = ACTIONS(1502), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1502), - [anon_sym___asm__] = ACTIONS(1502), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1504), - [anon_sym_u_SQUOTE] = ACTIONS(1504), - [anon_sym_U_SQUOTE] = ACTIONS(1504), - [anon_sym_u8_SQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_L_DQUOTE] = ACTIONS(1504), - [anon_sym_u_DQUOTE] = ACTIONS(1504), - [anon_sym_U_DQUOTE] = ACTIONS(1504), - [anon_sym_u8_DQUOTE] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym_true] = ACTIONS(1502), - [sym_false] = ACTIONS(1502), - [anon_sym_NULL] = ACTIONS(1502), - [anon_sym_nullptr] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [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), + [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_else] = 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), }, - [251] = { - [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), + [221] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___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), }, - [252] = { - [sym_identifier] = ACTIONS(1498), - [aux_sym_preproc_include_token1] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token2] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), - [aux_sym_preproc_else_token1] = ACTIONS(1498), - [aux_sym_preproc_elif_token1] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1498), - [anon_sym_LPAREN2] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym___extension__] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym___attribute__] = ACTIONS(1498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), - [anon_sym___declspec] = ACTIONS(1498), - [anon_sym___cdecl] = ACTIONS(1498), - [anon_sym___clrcall] = ACTIONS(1498), - [anon_sym___stdcall] = ACTIONS(1498), - [anon_sym___fastcall] = ACTIONS(1498), - [anon_sym___thiscall] = ACTIONS(1498), - [anon_sym___vectorcall] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1498), - [anon_sym_unsigned] = ACTIONS(1498), - [anon_sym_long] = ACTIONS(1498), - [anon_sym_short] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_auto] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1498), - [anon_sym___inline] = ACTIONS(1498), - [anon_sym___inline__] = ACTIONS(1498), - [anon_sym___forceinline] = ACTIONS(1498), - [anon_sym_thread_local] = ACTIONS(1498), - [anon_sym___thread] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_constexpr] = ACTIONS(1498), - [anon_sym_volatile] = ACTIONS(1498), - [anon_sym_restrict] = ACTIONS(1498), - [anon_sym___restrict__] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1498), - [anon_sym__Noreturn] = ACTIONS(1498), - [anon_sym_noreturn] = ACTIONS(1498), - [sym_primitive_type] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_goto] = ACTIONS(1498), - [anon_sym___try] = ACTIONS(1498), - [anon_sym___leave] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1498), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1498), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1498), - [anon_sym___asm__] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1500), - [anon_sym_L_SQUOTE] = ACTIONS(1500), - [anon_sym_u_SQUOTE] = ACTIONS(1500), - [anon_sym_U_SQUOTE] = ACTIONS(1500), - [anon_sym_u8_SQUOTE] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_L_DQUOTE] = ACTIONS(1500), - [anon_sym_u_DQUOTE] = ACTIONS(1500), - [anon_sym_U_DQUOTE] = ACTIONS(1500), - [anon_sym_u8_DQUOTE] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1500), - [sym_true] = ACTIONS(1498), - [sym_false] = ACTIONS(1498), - [anon_sym_NULL] = ACTIONS(1498), - [anon_sym_nullptr] = ACTIONS(1498), + [222] = { + [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_else] = 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), }, - [253] = { - [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), + [223] = { + [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_else] = 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), }, - [254] = { - [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), + [224] = { + [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_else] = 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), }, - [255] = { - [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), + [225] = { + [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_else] = 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), + }, + [226] = { + [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), }, - [256] = { + [227] = { + [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), + }, + [228] = { [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), @@ -47100,7 +44542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -47169,307 +44610,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [257] = { - [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_else] = 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), - }, - [258] = { - [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_else] = 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), + [229] = { + [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), }, - [259] = { - [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), + [230] = { + [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), }, - [260] = { + [231] = { [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), @@ -47492,7 +44842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -47561,896 +44910,1216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [261] = { - [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), + [232] = { + [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_else] = 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), }, - [262] = { - [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), + [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_else] = 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), + }, + [234] = { + [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), }, - [263] = { - [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), + [235] = { + [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_else] = 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), }, - [264] = { - [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), + [236] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___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), + }, + [237] = { + [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_else] = 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), }, - [265] = { - [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), + [238] = { + [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_else] = 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), }, - [266] = { - [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_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_else] = 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), + [239] = { + [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_else] = 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), + }, + [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_else] = 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), }, - [267] = { - [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), + [241] = { + [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_else] = 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), }, - [268] = { - [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_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_else] = 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), + [242] = { + [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_else] = 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), }, - [269] = { - [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), + [243] = { + [sym_else_if_clause] = STATE(313), + [aux_sym_if_statement_repeat1] = STATE(243), + [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(1574), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1420), + [244] = { [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), @@ -48541,2654 +46210,3469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [271] = { - [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] = { + [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_else] = 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), }, - [272] = { - [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), + [246] = { + [sym_identifier] = ACTIONS(1556), + [aux_sym_preproc_include_token1] = ACTIONS(1556), + [aux_sym_preproc_def_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token2] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1556), + [aux_sym_preproc_else_token1] = ACTIONS(1556), + [aux_sym_preproc_elif_token1] = ACTIONS(1556), + [sym_preproc_directive] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym___extension__] = ACTIONS(1556), + [anon_sym_typedef] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym___attribute__] = ACTIONS(1556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1558), + [anon_sym___declspec] = ACTIONS(1556), + [anon_sym___cdecl] = ACTIONS(1556), + [anon_sym___clrcall] = ACTIONS(1556), + [anon_sym___stdcall] = ACTIONS(1556), + [anon_sym___fastcall] = ACTIONS(1556), + [anon_sym___thiscall] = ACTIONS(1556), + [anon_sym___vectorcall] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_signed] = ACTIONS(1556), + [anon_sym_unsigned] = ACTIONS(1556), + [anon_sym_long] = ACTIONS(1556), + [anon_sym_short] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_auto] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_inline] = ACTIONS(1556), + [anon_sym___inline] = ACTIONS(1556), + [anon_sym___inline__] = ACTIONS(1556), + [anon_sym___forceinline] = ACTIONS(1556), + [anon_sym_thread_local] = ACTIONS(1556), + [anon_sym___thread] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_constexpr] = ACTIONS(1556), + [anon_sym_volatile] = ACTIONS(1556), + [anon_sym_restrict] = ACTIONS(1556), + [anon_sym___restrict__] = ACTIONS(1556), + [anon_sym__Atomic] = ACTIONS(1556), + [anon_sym__Noreturn] = ACTIONS(1556), + [anon_sym_noreturn] = ACTIONS(1556), + [sym_primitive_type] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_switch] = ACTIONS(1556), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_goto] = ACTIONS(1556), + [anon_sym___try] = ACTIONS(1556), + [anon_sym___leave] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [anon_sym_sizeof] = ACTIONS(1556), + [anon_sym___alignof__] = ACTIONS(1556), + [anon_sym___alignof] = ACTIONS(1556), + [anon_sym__alignof] = ACTIONS(1556), + [anon_sym_alignof] = ACTIONS(1556), + [anon_sym__Alignof] = ACTIONS(1556), + [anon_sym_offsetof] = ACTIONS(1556), + [anon_sym__Generic] = ACTIONS(1556), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [sym_number_literal] = ACTIONS(1558), + [anon_sym_L_SQUOTE] = ACTIONS(1558), + [anon_sym_u_SQUOTE] = ACTIONS(1558), + [anon_sym_U_SQUOTE] = ACTIONS(1558), + [anon_sym_u8_SQUOTE] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_L_DQUOTE] = ACTIONS(1558), + [anon_sym_u_DQUOTE] = ACTIONS(1558), + [anon_sym_U_DQUOTE] = ACTIONS(1558), + [anon_sym_u8_DQUOTE] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym_true] = ACTIONS(1556), + [sym_false] = ACTIONS(1556), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), [sym_comment] = ACTIONS(3), }, - [273] = { - [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), + [247] = { + [sym__expression] = STATE(934), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(894), + [sym_initializer_list] = STATE(928), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_identifier] = ACTIONS(1577), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1585), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1585), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1589), + [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(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), + [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), + }, + [248] = { + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token2] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [aux_sym_preproc_else_token1] = ACTIONS(1532), + [aux_sym_preproc_elif_token1] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym___try] = ACTIONS(1532), + [anon_sym___leave] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), [sym_comment] = ACTIONS(3), }, - [274] = { - [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), + [249] = { + [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), }, - [275] = { - [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), + [250] = { + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [aux_sym_preproc_else_token1] = ACTIONS(1536), + [aux_sym_preproc_elif_token1] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym___try] = ACTIONS(1536), + [anon_sym___leave] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), [sym_comment] = ACTIONS(3), }, - [276] = { - [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), + [251] = { + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token2] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [aux_sym_preproc_else_token1] = ACTIONS(1548), + [aux_sym_preproc_elif_token1] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1550), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym___try] = ACTIONS(1548), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1550), + [anon_sym_L_SQUOTE] = ACTIONS(1550), + [anon_sym_u_SQUOTE] = ACTIONS(1550), + [anon_sym_U_SQUOTE] = ACTIONS(1550), + [anon_sym_u8_SQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + }, + [252] = { + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token2] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [aux_sym_preproc_else_token1] = ACTIONS(1528), + [aux_sym_preproc_elif_token1] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym___try] = ACTIONS(1528), + [anon_sym___leave] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_identifier] = ACTIONS(1564), + [aux_sym_preproc_include_token1] = ACTIONS(1564), + [aux_sym_preproc_def_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token2] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1564), + [aux_sym_preproc_else_token1] = ACTIONS(1564), + [aux_sym_preproc_elif_token1] = ACTIONS(1564), + [sym_preproc_directive] = ACTIONS(1564), + [anon_sym_LPAREN2] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym___extension__] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym___attribute__] = ACTIONS(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym___declspec] = ACTIONS(1564), + [anon_sym___cdecl] = ACTIONS(1564), + [anon_sym___clrcall] = ACTIONS(1564), + [anon_sym___stdcall] = ACTIONS(1564), + [anon_sym___fastcall] = ACTIONS(1564), + [anon_sym___thiscall] = ACTIONS(1564), + [anon_sym___vectorcall] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_signed] = ACTIONS(1564), + [anon_sym_unsigned] = ACTIONS(1564), + [anon_sym_long] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_auto] = ACTIONS(1564), + [anon_sym_register] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym___inline] = ACTIONS(1564), + [anon_sym___inline__] = ACTIONS(1564), + [anon_sym___forceinline] = ACTIONS(1564), + [anon_sym_thread_local] = ACTIONS(1564), + [anon_sym___thread] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_constexpr] = ACTIONS(1564), + [anon_sym_volatile] = ACTIONS(1564), + [anon_sym_restrict] = ACTIONS(1564), + [anon_sym___restrict__] = ACTIONS(1564), + [anon_sym__Atomic] = ACTIONS(1564), + [anon_sym__Noreturn] = ACTIONS(1564), + [anon_sym_noreturn] = ACTIONS(1564), + [sym_primitive_type] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_goto] = ACTIONS(1564), + [anon_sym___try] = ACTIONS(1564), + [anon_sym___leave] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_sizeof] = ACTIONS(1564), + [anon_sym___alignof__] = ACTIONS(1564), + [anon_sym___alignof] = ACTIONS(1564), + [anon_sym__alignof] = ACTIONS(1564), + [anon_sym_alignof] = ACTIONS(1564), + [anon_sym__Alignof] = ACTIONS(1564), + [anon_sym_offsetof] = ACTIONS(1564), + [anon_sym__Generic] = ACTIONS(1564), + [anon_sym_asm] = ACTIONS(1564), + [anon_sym___asm__] = ACTIONS(1564), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1566), + [anon_sym_u_SQUOTE] = ACTIONS(1566), + [anon_sym_U_SQUOTE] = ACTIONS(1566), + [anon_sym_u8_SQUOTE] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_L_DQUOTE] = ACTIONS(1566), + [anon_sym_u_DQUOTE] = ACTIONS(1566), + [anon_sym_U_DQUOTE] = ACTIONS(1566), + [anon_sym_u8_DQUOTE] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [anon_sym_NULL] = ACTIONS(1564), + [anon_sym_nullptr] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [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), + }, + [255] = { + [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), + }, + [256] = { + [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), }, - [277] = { - [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), + [257] = { + [sym_identifier] = ACTIONS(1560), + [aux_sym_preproc_include_token1] = ACTIONS(1560), + [aux_sym_preproc_def_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token2] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1560), + [aux_sym_preproc_else_token1] = ACTIONS(1560), + [aux_sym_preproc_elif_token1] = ACTIONS(1560), + [sym_preproc_directive] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym___extension__] = ACTIONS(1560), + [anon_sym_typedef] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym___attribute__] = ACTIONS(1560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym___declspec] = ACTIONS(1560), + [anon_sym___cdecl] = ACTIONS(1560), + [anon_sym___clrcall] = ACTIONS(1560), + [anon_sym___stdcall] = ACTIONS(1560), + [anon_sym___fastcall] = ACTIONS(1560), + [anon_sym___thiscall] = ACTIONS(1560), + [anon_sym___vectorcall] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_signed] = ACTIONS(1560), + [anon_sym_unsigned] = ACTIONS(1560), + [anon_sym_long] = ACTIONS(1560), + [anon_sym_short] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_auto] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_inline] = ACTIONS(1560), + [anon_sym___inline] = ACTIONS(1560), + [anon_sym___inline__] = ACTIONS(1560), + [anon_sym___forceinline] = ACTIONS(1560), + [anon_sym_thread_local] = ACTIONS(1560), + [anon_sym___thread] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_constexpr] = ACTIONS(1560), + [anon_sym_volatile] = ACTIONS(1560), + [anon_sym_restrict] = ACTIONS(1560), + [anon_sym___restrict__] = ACTIONS(1560), + [anon_sym__Atomic] = ACTIONS(1560), + [anon_sym__Noreturn] = ACTIONS(1560), + [anon_sym_noreturn] = ACTIONS(1560), + [sym_primitive_type] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_case] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_goto] = ACTIONS(1560), + [anon_sym___try] = ACTIONS(1560), + [anon_sym___leave] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_sizeof] = ACTIONS(1560), + [anon_sym___alignof__] = ACTIONS(1560), + [anon_sym___alignof] = ACTIONS(1560), + [anon_sym__alignof] = ACTIONS(1560), + [anon_sym_alignof] = ACTIONS(1560), + [anon_sym__Alignof] = ACTIONS(1560), + [anon_sym_offsetof] = ACTIONS(1560), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1560), + [anon_sym___asm__] = ACTIONS(1560), + [sym_number_literal] = ACTIONS(1562), + [anon_sym_L_SQUOTE] = ACTIONS(1562), + [anon_sym_u_SQUOTE] = ACTIONS(1562), + [anon_sym_U_SQUOTE] = ACTIONS(1562), + [anon_sym_u8_SQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_L_DQUOTE] = ACTIONS(1562), + [anon_sym_u_DQUOTE] = ACTIONS(1562), + [anon_sym_U_DQUOTE] = ACTIONS(1562), + [anon_sym_u8_DQUOTE] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [anon_sym_NULL] = ACTIONS(1560), + [anon_sym_nullptr] = ACTIONS(1560), [sym_comment] = ACTIONS(3), }, - [278] = { - [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), + [258] = { + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [aux_sym_preproc_else_token1] = ACTIONS(1520), + [aux_sym_preproc_elif_token1] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, - [279] = { - [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), + [259] = { + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [aux_sym_preproc_else_token1] = ACTIONS(1540), + [aux_sym_preproc_elif_token1] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym___try] = ACTIONS(1540), + [anon_sym___leave] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), [sym_comment] = ACTIONS(3), }, - [280] = { - [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), + [260] = { + [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), }, - [281] = { - [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), + [261] = { + [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), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_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), + [262] = { + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [aux_sym_preproc_else_token1] = ACTIONS(1544), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1544), + [anon_sym___leave] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), [sym_comment] = ACTIONS(3), }, - [283] = { - [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), + [263] = { + [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), }, - [284] = { - [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), + [264] = { + [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_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = 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_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), }, - [285] = { - [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), + [265] = { + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [aux_sym_preproc_else_token1] = ACTIONS(1524), + [aux_sym_preproc_elif_token1] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(3), }, - [286] = { - [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), + [266] = { + [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), }, - [287] = { - [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), + [267] = { + [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), }, - [288] = { - [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), + [268] = { + [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), }, - [289] = { - [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), + [269] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1500), + [aux_sym_preproc_elif_token1] = 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), }, - [290] = { - [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), + [270] = { + [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), }, - [291] = { - [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), + [271] = { + [sym_identifier] = ACTIONS(1552), + [aux_sym_preproc_include_token1] = ACTIONS(1552), + [aux_sym_preproc_def_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token2] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1552), + [aux_sym_preproc_else_token1] = ACTIONS(1552), + [aux_sym_preproc_elif_token1] = ACTIONS(1552), + [sym_preproc_directive] = ACTIONS(1552), + [anon_sym_LPAREN2] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym___extension__] = ACTIONS(1552), + [anon_sym_typedef] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym___attribute__] = ACTIONS(1552), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym___declspec] = ACTIONS(1552), + [anon_sym___cdecl] = ACTIONS(1552), + [anon_sym___clrcall] = ACTIONS(1552), + [anon_sym___stdcall] = ACTIONS(1552), + [anon_sym___fastcall] = ACTIONS(1552), + [anon_sym___thiscall] = ACTIONS(1552), + [anon_sym___vectorcall] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_signed] = ACTIONS(1552), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_auto] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_inline] = ACTIONS(1552), + [anon_sym___inline] = ACTIONS(1552), + [anon_sym___inline__] = ACTIONS(1552), + [anon_sym___forceinline] = ACTIONS(1552), + [anon_sym_thread_local] = ACTIONS(1552), + [anon_sym___thread] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_constexpr] = ACTIONS(1552), + [anon_sym_volatile] = ACTIONS(1552), + [anon_sym_restrict] = ACTIONS(1552), + [anon_sym___restrict__] = ACTIONS(1552), + [anon_sym__Atomic] = ACTIONS(1552), + [anon_sym__Noreturn] = ACTIONS(1552), + [anon_sym_noreturn] = ACTIONS(1552), + [sym_primitive_type] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1552), + [anon_sym___try] = ACTIONS(1552), + [anon_sym___leave] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1554), + [anon_sym_sizeof] = ACTIONS(1552), + [anon_sym___alignof__] = ACTIONS(1552), + [anon_sym___alignof] = ACTIONS(1552), + [anon_sym__alignof] = ACTIONS(1552), + [anon_sym_alignof] = ACTIONS(1552), + [anon_sym__Alignof] = ACTIONS(1552), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1552), + [anon_sym_asm] = ACTIONS(1552), + [anon_sym___asm__] = ACTIONS(1552), + [sym_number_literal] = ACTIONS(1554), + [anon_sym_L_SQUOTE] = ACTIONS(1554), + [anon_sym_u_SQUOTE] = ACTIONS(1554), + [anon_sym_U_SQUOTE] = ACTIONS(1554), + [anon_sym_u8_SQUOTE] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_L_DQUOTE] = ACTIONS(1554), + [anon_sym_u_DQUOTE] = ACTIONS(1554), + [anon_sym_U_DQUOTE] = ACTIONS(1554), + [anon_sym_u8_DQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym_true] = ACTIONS(1552), + [sym_false] = ACTIONS(1552), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, - [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), + [272] = { + [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), }, - [293] = { - [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), + [273] = { + [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), }, - [294] = { - [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), + [274] = { + [sym__expression] = STATE(934), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(894), + [sym_initializer_list] = STATE(928), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(942), + [sym_null] = STATE(894), + [sym_identifier] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1579), + [aux_sym_preproc_if_token2] = ACTIONS(1579), + [aux_sym_preproc_else_token1] = ACTIONS(1579), + [aux_sym_preproc_elif_token1] = ACTIONS(1585), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1579), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1585), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1585), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1595), + [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(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), + [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), }, - [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_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), + [275] = { + [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), }, - [296] = { - [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), + [276] = { + [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_else] = 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), }, - [297] = { - [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), + [277] = { + [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), + }, + [278] = { + [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_else] = 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), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1420), + [279] = { + [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_else] = 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), + }, + [280] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -51217,6 +49701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -51285,595 +49770,1085 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [299] = { - [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), + [281] = { + [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_else] = 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), + }, + [282] = { + [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_else] = 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), + }, + [283] = { + [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), + }, + [284] = { + [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_else] = 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), + }, + [285] = { + [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_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_else] = 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), }, - [300] = { - [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), + [286] = { + [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), }, - [301] = { - [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), + [287] = { + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_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), }, - [302] = { - [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), + [288] = { + [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_else] = 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), }, - [303] = { - [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), + [289] = { + [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_else] = 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), + }, + [290] = { + [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_else] = 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), }, - [304] = { - [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), + [291] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, - [305] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1400), [sym_identifier] = ACTIONS(1398), [aux_sym_preproc_include_token1] = ACTIONS(1398), @@ -51971,11 +50946,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [306] = { + [293] = { + [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_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_else] = 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), + }, + [294] = { + [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), + }, + [295] = { + [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_else] = 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), + }, + [296] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [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), + }, + [298] = { [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), @@ -52000,7 +51466,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), @@ -52069,11 +51534,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [307] = { + [299] = { + [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_else] = 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), + }, + [300] = { + [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), + }, + [301] = { + [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), + }, + [302] = { + [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_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_else] = 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), + }, + [303] = { + [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_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_else] = 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), + }, + [304] = { [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), @@ -52098,7 +52054,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), @@ -52167,992 +52122,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [308] = { - [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), - }, - [309] = { - [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), - }, - [310] = { - [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), - }, - [311] = { - [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), - }, - [312] = { - [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), - }, - [313] = { - [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), - }, - [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), + [305] = { + [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_else] = 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), }, - [315] = { - [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), + [306] = { + [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), + [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), }, - [316] = { - [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), + [307] = { + [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), }, - [317] = { - [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), + [308] = { + [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_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_else] = 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), }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1352), + [309] = { [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), @@ -53245,497 +52612,988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [319] = { - [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), + [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), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [311] = { + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [321] = { - [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), + [312] = { + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [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_else] = 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), + }, + [315] = { + [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), }, - [322] = { - [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), + [316] = { + [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_else] = 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), }, - [323] = { - [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), + [317] = { + [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_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_else] = 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), + }, + [318] = { + [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_else] = 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), }, - [324] = { + [319] = { + [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_else] = 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), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(1360), [sym_identifier] = ACTIONS(1358), [aux_sym_preproc_include_token1] = ACTIONS(1358), [aux_sym_preproc_def_token1] = ACTIONS(1358), @@ -53764,7 +53622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -53833,12 +53690,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1392), + [321] = { [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), @@ -53931,302 +53788,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, + [322] = { + [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_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_else] = 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), + }, + [323] = { + [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), + }, + [324] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), + }, + [325] = { + [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), + }, [326] = { - [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_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_else] = 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), }, [327] = { - [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), - }, - [328] = { - [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), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1380), [sym_identifier] = ACTIONS(1378), [aux_sym_preproc_include_token1] = ACTIONS(1378), [aux_sym_preproc_def_token1] = ACTIONS(1378), @@ -54255,6 +54307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -54323,2069 +54376,3148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [330] = { - [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), + [328] = { + [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), + }, + [329] = { + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), + [sym_comment] = ACTIONS(3), + }, + [330] = { + [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), + }, + [331] = { + [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), + }, + [332] = { + [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_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_else] = 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), + }, + [333] = { + [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), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [331] = { - [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), + [335] = { + [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_else] = 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), }, - [332] = { - [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), + [336] = { + [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_else] = 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), + }, + [337] = { + [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_else] = 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), }, - [333] = { - [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), + [338] = { + [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_else] = 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), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_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), + [339] = { + [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_else] = 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), + }, + [340] = { + [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_else] = 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), }, - [335] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [341] = { + [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_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_else] = 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), }, - [336] = { - [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), + [342] = { + [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_else] = 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), }, - [337] = { - [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), + [343] = { + [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_else] = 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), }, - [338] = { - [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), + [344] = { + [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_else] = 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), }, - [339] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [345] = { + [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_else] = 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), }, - [340] = { - [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), + [346] = { + [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_else] = 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), + }, + [347] = { + [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_else] = 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), }, - [341] = { - [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), + [348] = { + [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_else] = 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), }, - [342] = { - [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), - [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), + [349] = { + [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_else] = 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), + }, + [350] = { + [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_else] = 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), }, - [343] = { - [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), + [351] = { + [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_else] = 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), }, - [344] = { - [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), + [352] = { + [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_else] = 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), + }, + [353] = { + [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_else] = 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), }, - [345] = { - [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), + [354] = { + [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_else] = 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), }, - [346] = { - [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), + [355] = { + [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_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_else] = 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), }, - [347] = { - [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), + [356] = { + [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_else] = 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), }, - [348] = { - [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), + [357] = { + [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_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_else] = 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), }, - [349] = { - [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), + [358] = { + [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_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_else] = 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), }, - [350] = { - [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), + [359] = { + [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_else] = 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), }, - [351] = { + [360] = { [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), @@ -56410,7 +57542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -56479,894 +57610,795 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [352] = { - [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), - }, - [353] = { - [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), + [361] = { + [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_else] = 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), }, - [354] = { - [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), + [362] = { + [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_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_else] = 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), }, - [355] = { - [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), + [363] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), }, - [356] = { - [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), + [364] = { + [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_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_else] = 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), }, - [357] = { - [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), + [365] = { + [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_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_else] = 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), }, - [358] = { - [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), + [366] = { + [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_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_else] = 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), }, - [359] = { - [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_else] = 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), + [367] = { + [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_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_else] = 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), }, - [360] = { - [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_else] = 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), + [368] = { + [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_else] = 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), }, - [361] = { + [369] = { [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), @@ -57391,6 +58423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -57459,12 +58492,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [362] = { + [370] = { + [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_if_token2] = ACTIONS(1418), [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), [sym_preproc_directive] = ACTIONS(1418), @@ -57557,791 +58590,1576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [363] = { - [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), + [371] = { + [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_else] = 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), + }, + [372] = { + [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), + }, + [373] = { + [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_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_else] = 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), }, - [364] = { - [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), + [374] = { + [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), }, - [365] = { - [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), + [375] = { + [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), + }, + [376] = { + [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), }, - [366] = { - [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), + [377] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [367] = { - [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), + [378] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [368] = { - [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), + [379] = { + [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), + }, + [380] = { + [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), + }, + [381] = { + [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_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_else] = 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), + }, + [382] = { + [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), }, - [369] = { - [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), + [383] = { + [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), }, - [370] = { - [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), + [384] = { + [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_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_else] = 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), + }, + [385] = { + [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_else] = 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), }, - [371] = { + [386] = { + [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), + }, + [387] = { + [ts_builtin_sym_end] = ACTIONS(1420), [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -58370,7 +60188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -58439,2070 +60256,2167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym___extension__] = ACTIONS(1356), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym___inline] = ACTIONS(1356), - [anon_sym___inline__] = ACTIONS(1356), - [anon_sym___forceinline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym___try] = ACTIONS(1356), - [anon_sym___leave] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym___alignof__] = ACTIONS(1356), - [anon_sym___alignof] = ACTIONS(1356), - [anon_sym__alignof] = ACTIONS(1356), - [anon_sym_alignof] = ACTIONS(1356), - [anon_sym__Alignof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - }, - [373] = { - [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), - }, - [374] = { - [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), - }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [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_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), - }, - [376] = { - [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), + [388] = { + [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_else] = 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), }, - [377] = { - [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), + [389] = { + [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_else] = 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), }, - [378] = { - [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), + [390] = { + [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), }, - [379] = { - [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), + [391] = { + [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), + [sym_comment] = ACTIONS(3), + }, + [392] = { + [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_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_else] = 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), + }, + [393] = { + [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_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_else] = 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), }, - [380] = { - [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), + [394] = { + [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), }, - [381] = { - [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), + [395] = { + [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(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___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), }, - [382] = { - [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), + [396] = { + [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), + }, + [397] = { + [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), }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_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), + [398] = { + [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_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_else] = 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), }, - [384] = { - [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), + [399] = { + [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), }, - [385] = { - [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), + [400] = { + [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), + }, + [401] = { + [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), }, - [386] = { - [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), + [402] = { + [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), }, - [387] = { - [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), + [403] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, - [388] = { - [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), + [404] = { + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_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), }, - [389] = { - [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), + [405] = { + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [390] = { - [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), + [406] = { + [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), }, - [391] = { - [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), + [407] = { + [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), }, - [392] = { - [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), + [408] = { + [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), + }, + [409] = { + [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), }, - [393] = { + [410] = { [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), @@ -60527,6 +62441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -60595,110 +62510,992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [394] = { - [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), + [411] = { + [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), + }, + [412] = { + [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), + }, + [413] = { + [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_else] = 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), + }, + [414] = { + [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), + }, + [415] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + }, + [416] = { + [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), + }, + [417] = { + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, - [395] = { + [418] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), + [sym_comment] = ACTIONS(3), + }, + [419] = { + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + }, + [420] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), + [sym_comment] = ACTIONS(3), + }, + [421] = { + [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_if_token2] = ACTIONS(1350), [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), [sym_preproc_directive] = ACTIONS(1350), @@ -60791,737 +63588,1226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [396] = { - [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), + [422] = { + [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), + }, + [423] = { + [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_else] = 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), + }, + [424] = { + [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_else] = 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), + }, + [425] = { + [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), + }, + [426] = { + [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), }, - [397] = { - [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), + [427] = { + [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), }, - [398] = { - [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), + [428] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_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), }, - [399] = { - [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), + [429] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1325), + [aux_sym_preproc_def_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [sym_preproc_directive] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym___extension__] = ACTIONS(1325), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1323), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [anon_sym___inline] = ACTIONS(1325), + [anon_sym___inline__] = ACTIONS(1325), + [anon_sym___forceinline] = ACTIONS(1325), + [anon_sym_thread_local] = ACTIONS(1325), + [anon_sym___thread] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_constexpr] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym___restrict__] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym__Noreturn] = ACTIONS(1325), + [anon_sym_noreturn] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1325), + [anon_sym___leave] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [anon_sym___alignof__] = ACTIONS(1325), + [anon_sym___alignof] = ACTIONS(1325), + [anon_sym__alignof] = ACTIONS(1325), + [anon_sym_alignof] = ACTIONS(1325), + [anon_sym__Alignof] = ACTIONS(1325), + [anon_sym_offsetof] = ACTIONS(1325), + [anon_sym__Generic] = ACTIONS(1325), + [anon_sym_asm] = ACTIONS(1325), + [anon_sym___asm__] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [anon_sym_NULL] = ACTIONS(1325), + [anon_sym_nullptr] = ACTIONS(1325), [sym_comment] = ACTIONS(3), }, - [400] = { - [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), + [430] = { + [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), }, - [401] = { - [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), + [431] = { + [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), }, - [402] = { - [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), + [432] = { + [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_else] = 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), }, - [403] = { - [sym_attribute_declaration] = STATE(411), - [sym_compound_statement] = STATE(180), - [sym_attributed_statement] = STATE(180), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_switch_statement] = STATE(180), - [sym_case_statement] = STATE(180), - [sym_while_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_seh_try_statement] = STATE(180), - [sym_seh_leave_statement] = STATE(180), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(1562), + [433] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(2430), + [sym_attributed_statement] = STATE(2430), + [sym_labeled_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_if_statement] = STATE(2430), + [sym_switch_statement] = STATE(2430), + [sym_case_statement] = STATE(2430), + [sym_while_statement] = STATE(2430), + [sym_do_statement] = STATE(2430), + [sym_for_statement] = STATE(2430), + [sym_return_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_goto_statement] = STATE(2430), + [sym_seh_try_statement] = STATE(2430), + [sym_seh_leave_statement] = STATE(2430), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), + }, + [434] = { + [sym_attribute_declaration] = STATE(466), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym_seh_try_statement] = STATE(218), + [sym_seh_leave_statement] = STATE(218), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1605), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61530,7 +64816,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(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -61574,51 +64860,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(2371), - [sym_attributed_statement] = STATE(2371), - [sym_labeled_statement] = STATE(2371), - [sym_expression_statement] = STATE(2371), - [sym_if_statement] = STATE(2371), - [sym_switch_statement] = STATE(2371), - [sym_case_statement] = STATE(2371), - [sym_while_statement] = STATE(2371), - [sym_do_statement] = STATE(2371), - [sym_for_statement] = STATE(2371), - [sym_return_statement] = STATE(2371), - [sym_break_statement] = STATE(2371), - [sym_continue_statement] = STATE(2371), - [sym_goto_statement] = STATE(2371), - [sym_seh_try_statement] = STATE(2371), - [sym_seh_leave_statement] = STATE(2371), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), + [435] = { + [sym_attribute_declaration] = STATE(498), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(308), + [sym_labeled_statement] = STATE(308), + [sym_expression_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_switch_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_do_statement] = STATE(308), + [sym_for_statement] = STATE(308), + [sym_return_statement] = STATE(308), + [sym_break_statement] = STATE(308), + [sym_continue_statement] = STATE(308), + [sym_goto_statement] = STATE(308), + [sym_seh_try_statement] = STATE(308), + [sym_seh_leave_statement] = STATE(308), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), + [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), + }, + [436] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(285), + [sym_attributed_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym_seh_try_statement] = STATE(285), + [sym_seh_leave_statement] = STATE(285), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), + }, + [437] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(308), + [sym_labeled_statement] = STATE(308), + [sym_expression_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_switch_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_do_statement] = STATE(308), + [sym_for_statement] = STATE(308), + [sym_return_statement] = STATE(308), + [sym_break_statement] = STATE(308), + [sym_continue_statement] = STATE(308), + [sym_goto_statement] = STATE(308), + [sym_seh_try_statement] = STATE(308), + [sym_seh_leave_statement] = STATE(308), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), + }, + [438] = { + [sym_attribute_declaration] = STATE(438), + [sym_compound_statement] = STATE(391), + [sym_attributed_statement] = STATE(391), + [sym_labeled_statement] = STATE(391), + [sym_expression_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_switch_statement] = STATE(391), + [sym_case_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_do_statement] = STATE(391), + [sym_for_statement] = STATE(391), + [sym_return_statement] = STATE(391), + [sym_break_statement] = STATE(391), + [sym_continue_statement] = STATE(391), + [sym_goto_statement] = STATE(391), + [sym_seh_try_statement] = STATE(391), + [sym_seh_leave_statement] = STATE(391), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1636), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1642), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1660), + [anon_sym_goto] = ACTIONS(1663), + [anon_sym___try] = ACTIONS(1666), + [anon_sym___leave] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1675), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1681), + [anon_sym__Generic] = ACTIONS(1684), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym___asm__] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1693), + [anon_sym_u_SQUOTE] = ACTIONS(1693), + [anon_sym_U_SQUOTE] = ACTIONS(1693), + [anon_sym_u8_SQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_L_DQUOTE] = ACTIONS(1696), + [anon_sym_u_DQUOTE] = ACTIONS(1696), + [anon_sym_U_DQUOTE] = ACTIONS(1696), + [anon_sym_u8_DQUOTE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + }, + [439] = { + [sym_attribute_declaration] = STATE(485), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym_seh_try_statement] = STATE(90), + [sym_seh_leave_statement] = STATE(90), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [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), + }, + [440] = { + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym___try] = ACTIONS(1536), + [anon_sym___leave] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + }, + [441] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(401), + [sym_attributed_statement] = STATE(401), + [sym_labeled_statement] = STATE(401), + [sym_expression_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_switch_statement] = STATE(401), + [sym_case_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_do_statement] = STATE(401), + [sym_for_statement] = STATE(401), + [sym_return_statement] = STATE(401), + [sym_break_statement] = STATE(401), + [sym_continue_statement] = STATE(401), + [sym_goto_statement] = STATE(401), + [sym_seh_try_statement] = STATE(401), + [sym_seh_leave_statement] = STATE(401), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61627,20 +65495,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(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1707), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), @@ -61671,51 +65539,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(385), - [sym_attributed_statement] = STATE(402), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(400), - [sym_if_statement] = STATE(399), - [sym_switch_statement] = STATE(398), - [sym_case_statement] = STATE(397), - [sym_while_statement] = STATE(396), - [sym_do_statement] = STATE(395), - [sym_for_statement] = STATE(394), - [sym_return_statement] = STATE(393), - [sym_break_statement] = STATE(392), - [sym_continue_statement] = STATE(391), - [sym_goto_statement] = STATE(390), - [sym_seh_try_statement] = STATE(389), - [sym_seh_leave_statement] = STATE(388), - [sym__expression] = STATE(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1572), + [442] = { + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1544), + [anon_sym___leave] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + }, + [443] = { + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1550), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym___try] = ACTIONS(1548), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1550), + [anon_sym_L_SQUOTE] = ACTIONS(1550), + [anon_sym_u_SQUOTE] = ACTIONS(1550), + [anon_sym_U_SQUOTE] = ACTIONS(1550), + [anon_sym_u8_SQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + }, + [444] = { + [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), + }, + [445] = { + [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), + }, + [446] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(393), + [sym_attributed_statement] = STATE(392), + [sym_labeled_statement] = STATE(387), + [sym_expression_statement] = STATE(384), + [sym_if_statement] = STATE(381), + [sym_switch_statement] = STATE(373), + [sym_case_statement] = STATE(370), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(366), + [sym_for_statement] = STATE(365), + [sym_return_statement] = STATE(364), + [sym_break_statement] = STATE(362), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(357), + [sym_seh_try_statement] = STATE(355), + [sym_seh_leave_statement] = STATE(341), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61723,22 +65979,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(557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_if] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), @@ -61768,51 +66024,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(382), - [sym_attributed_statement] = STATE(382), - [sym_labeled_statement] = STATE(382), - [sym_expression_statement] = STATE(382), - [sym_if_statement] = STATE(382), - [sym_switch_statement] = STATE(382), - [sym_case_statement] = STATE(382), - [sym_while_statement] = STATE(382), - [sym_do_statement] = STATE(382), - [sym_for_statement] = STATE(382), - [sym_return_statement] = STATE(382), - [sym_break_statement] = STATE(382), - [sym_continue_statement] = STATE(382), - [sym_goto_statement] = STATE(382), - [sym_seh_try_statement] = STATE(382), - [sym_seh_leave_statement] = STATE(382), - [sym__expression] = STATE(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1572), + [447] = { + [sym_identifier] = ACTIONS(1556), + [aux_sym_preproc_include_token1] = ACTIONS(1556), + [aux_sym_preproc_def_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1556), + [sym_preproc_directive] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym___extension__] = ACTIONS(1556), + [anon_sym_typedef] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym___attribute__] = ACTIONS(1556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1558), + [anon_sym___declspec] = ACTIONS(1556), + [anon_sym___cdecl] = ACTIONS(1556), + [anon_sym___clrcall] = ACTIONS(1556), + [anon_sym___stdcall] = ACTIONS(1556), + [anon_sym___fastcall] = ACTIONS(1556), + [anon_sym___thiscall] = ACTIONS(1556), + [anon_sym___vectorcall] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_signed] = ACTIONS(1556), + [anon_sym_unsigned] = ACTIONS(1556), + [anon_sym_long] = ACTIONS(1556), + [anon_sym_short] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_auto] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_inline] = ACTIONS(1556), + [anon_sym___inline] = ACTIONS(1556), + [anon_sym___inline__] = ACTIONS(1556), + [anon_sym___forceinline] = ACTIONS(1556), + [anon_sym_thread_local] = ACTIONS(1556), + [anon_sym___thread] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_constexpr] = ACTIONS(1556), + [anon_sym_volatile] = ACTIONS(1556), + [anon_sym_restrict] = ACTIONS(1556), + [anon_sym___restrict__] = ACTIONS(1556), + [anon_sym__Atomic] = ACTIONS(1556), + [anon_sym__Noreturn] = ACTIONS(1556), + [anon_sym_noreturn] = ACTIONS(1556), + [sym_primitive_type] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_switch] = ACTIONS(1556), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_goto] = ACTIONS(1556), + [anon_sym___try] = ACTIONS(1556), + [anon_sym___leave] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [anon_sym_sizeof] = ACTIONS(1556), + [anon_sym___alignof__] = ACTIONS(1556), + [anon_sym___alignof] = ACTIONS(1556), + [anon_sym__alignof] = ACTIONS(1556), + [anon_sym_alignof] = ACTIONS(1556), + [anon_sym__Alignof] = ACTIONS(1556), + [anon_sym_offsetof] = ACTIONS(1556), + [anon_sym__Generic] = ACTIONS(1556), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [sym_number_literal] = ACTIONS(1558), + [anon_sym_L_SQUOTE] = ACTIONS(1558), + [anon_sym_u_SQUOTE] = ACTIONS(1558), + [anon_sym_U_SQUOTE] = ACTIONS(1558), + [anon_sym_u8_SQUOTE] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_L_DQUOTE] = ACTIONS(1558), + [anon_sym_u_DQUOTE] = ACTIONS(1558), + [anon_sym_U_DQUOTE] = ACTIONS(1558), + [anon_sym_u8_DQUOTE] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym_true] = ACTIONS(1556), + [sym_false] = ACTIONS(1556), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [448] = { + [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), + }, + [449] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(599), + [sym_attributed_statement] = STATE(599), + [sym_labeled_statement] = STATE(599), + [sym_expression_statement] = STATE(599), + [sym_if_statement] = STATE(599), + [sym_switch_statement] = STATE(599), + [sym_case_statement] = STATE(599), + [sym_while_statement] = STATE(599), + [sym_do_statement] = STATE(599), + [sym_for_statement] = STATE(599), + [sym_return_statement] = STATE(599), + [sym_break_statement] = STATE(599), + [sym_continue_statement] = STATE(599), + [sym_goto_statement] = STATE(599), + [sym_seh_try_statement] = STATE(599), + [sym_seh_leave_statement] = STATE(599), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61820,22 +66270,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(557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_if] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), @@ -61865,148 +66315,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [407] = { - [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), - }, - [408] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym_seh_try_statement] = STATE(308), - [sym_seh_leave_statement] = STATE(308), - [sym__expression] = STATE(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1574), + [450] = { + [sym_attribute_declaration] = STATE(498), + [sym_compound_statement] = STATE(285), + [sym_attributed_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym_seh_try_statement] = STATE(285), + [sym_seh_leave_statement] = STATE(285), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1607), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62014,8 +66367,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(1101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -62028,8 +66381,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(1103), - [anon_sym___leave] = ACTIONS(1105), + [anon_sym___try] = ACTIONS(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62047,257 +66400,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [409] = { - [sym_attribute_declaration] = STATE(409), - [sym_compound_statement] = STATE(328), - [sym_attributed_statement] = STATE(328), - [sym_labeled_statement] = STATE(328), - [sym_expression_statement] = STATE(328), - [sym_if_statement] = STATE(328), - [sym_switch_statement] = STATE(328), - [sym_case_statement] = STATE(328), - [sym_while_statement] = STATE(328), - [sym_do_statement] = STATE(328), - [sym_for_statement] = STATE(328), - [sym_return_statement] = STATE(328), - [sym_break_statement] = STATE(328), - [sym_continue_statement] = STATE(328), - [sym_goto_statement] = STATE(328), - [sym_seh_try_statement] = STATE(328), - [sym_seh_leave_statement] = STATE(328), - [sym__expression] = STATE(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1576), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_switch] = ACTIONS(1603), - [anon_sym_case] = ACTIONS(1606), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_goto] = ACTIONS(1630), - [anon_sym___try] = ACTIONS(1633), - [anon_sym___leave] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1642), - [anon_sym___alignof__] = ACTIONS(1645), - [anon_sym___alignof] = ACTIONS(1645), - [anon_sym__alignof] = ACTIONS(1645), - [anon_sym_alignof] = ACTIONS(1645), - [anon_sym__Alignof] = ACTIONS(1645), - [anon_sym_offsetof] = ACTIONS(1648), - [anon_sym__Generic] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1654), - [anon_sym___asm__] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1660), - [anon_sym_u_SQUOTE] = ACTIONS(1660), - [anon_sym_U_SQUOTE] = ACTIONS(1660), - [anon_sym_u8_SQUOTE] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_NULL] = ACTIONS(1669), - [anon_sym_nullptr] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - }, - [410] = { - [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), + [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), }, - [411] = { - [sym_attribute_declaration] = STATE(443), - [sym_compound_statement] = STATE(219), - [sym_attributed_statement] = STATE(219), - [sym_labeled_statement] = STATE(219), - [sym_expression_statement] = STATE(219), - [sym_if_statement] = STATE(219), - [sym_switch_statement] = STATE(219), - [sym_case_statement] = STATE(219), - [sym_while_statement] = STATE(219), - [sym_do_statement] = STATE(219), - [sym_for_statement] = STATE(219), - [sym_return_statement] = STATE(219), - [sym_break_statement] = STATE(219), - [sym_continue_statement] = STATE(219), - [sym_goto_statement] = STATE(219), - [sym_seh_try_statement] = STATE(219), - [sym_seh_leave_statement] = STATE(219), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(1562), + [451] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym_seh_try_statement] = STATE(395), + [sym_seh_leave_statement] = STATE(395), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62305,22 +66464,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(1564), - [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(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), @@ -62350,245 +66509,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [412] = { - [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), + [452] = { + [sym_attribute_declaration] = STATE(485), + [sym_compound_statement] = STATE(128), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(131), + [sym_if_statement] = STATE(132), + [sym_switch_statement] = STATE(133), + [sym_case_statement] = STATE(134), + [sym_while_statement] = STATE(136), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(139), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(143), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(145), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [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), }, - [413] = { - [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), + [453] = { + [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), }, - [414] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(285), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym_seh_try_statement] = STATE(285), - [sym_seh_leave_statement] = STATE(285), - [sym__expression] = STATE(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1574), + [454] = { + [sym_attribute_declaration] = STATE(498), + [sym_compound_statement] = STATE(165), + [sym_attributed_statement] = STATE(165), + [sym_labeled_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym_if_statement] = STATE(165), + [sym_switch_statement] = STATE(165), + [sym_case_statement] = STATE(165), + [sym_while_statement] = STATE(165), + [sym_do_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym_return_statement] = STATE(165), + [sym_break_statement] = STATE(165), + [sym_continue_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym_seh_try_statement] = STATE(165), + [sym_seh_leave_statement] = STATE(165), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1607), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62596,8 +66755,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(1101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -62610,8 +66769,105 @@ 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(1103), - [anon_sym___leave] = ACTIONS(1105), + [anon_sym___try] = ACTIONS(1157), + [anon_sym___leave] = ACTIONS(1159), + [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), + }, + [455] = { + [sym_attribute_declaration] = STATE(485), + [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(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(1709), + [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), @@ -62641,51 +66897,245 @@ 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(463), - [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(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1574), + [456] = { + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(1117), + [sym__string] = STATE(1117), + [sym_conditional_expression] = STATE(1117), + [sym_assignment_expression] = STATE(1117), + [sym_pointer_expression] = STATE(1117), + [sym_unary_expression] = STATE(1117), + [sym_binary_expression] = STATE(1117), + [sym_update_expression] = STATE(1117), + [sym_cast_expression] = STATE(1117), + [sym_sizeof_expression] = STATE(1117), + [sym_alignof_expression] = STATE(1117), + [sym_offsetof_expression] = STATE(1117), + [sym_generic_expression] = STATE(1117), + [sym_subscript_expression] = STATE(1117), + [sym_call_expression] = STATE(1117), + [sym_gnu_asm_expression] = STATE(1117), + [sym_field_expression] = STATE(1117), + [sym_compound_literal_expression] = STATE(1117), + [sym_parenthesized_expression] = STATE(1117), + [sym_initializer_list] = STATE(1112), + [sym_char_literal] = STATE(1117), + [sym_concatenated_string] = STATE(1117), + [sym_string_literal] = STATE(953), + [sym_null] = STATE(1117), + [sym_identifier] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1579), + [aux_sym_preproc_if_token2] = ACTIONS(1579), + [aux_sym_preproc_else_token1] = ACTIONS(1579), + [aux_sym_preproc_elif_token1] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1585), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1585), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1717), + [anon_sym___alignof__] = ACTIONS(1719), + [anon_sym___alignof] = ACTIONS(1719), + [anon_sym__alignof] = ACTIONS(1719), + [anon_sym_alignof] = ACTIONS(1719), + [anon_sym__Alignof] = ACTIONS(1719), + [anon_sym_offsetof] = ACTIONS(1721), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1725), + [anon_sym___asm__] = ACTIONS(1725), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), + [sym_number_literal] = ACTIONS(1727), + [anon_sym_L_SQUOTE] = ACTIONS(1729), + [anon_sym_u_SQUOTE] = ACTIONS(1729), + [anon_sym_U_SQUOTE] = ACTIONS(1729), + [anon_sym_u8_SQUOTE] = ACTIONS(1729), + [anon_sym_SQUOTE] = ACTIONS(1729), + [anon_sym_L_DQUOTE] = ACTIONS(1731), + [anon_sym_u_DQUOTE] = ACTIONS(1731), + [anon_sym_U_DQUOTE] = ACTIONS(1731), + [anon_sym_u8_DQUOTE] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [anon_sym_NULL] = ACTIONS(1735), + [anon_sym_nullptr] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [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), + }, + [458] = { + [sym_attribute_declaration] = STATE(438), + [sym_compound_statement] = STATE(391), + [sym_attributed_statement] = STATE(391), + [sym_labeled_statement] = STATE(391), + [sym_expression_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_switch_statement] = STATE(391), + [sym_case_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_do_statement] = STATE(391), + [sym_for_statement] = STATE(391), + [sym_return_statement] = STATE(391), + [sym_break_statement] = STATE(391), + [sym_continue_statement] = STATE(391), + [sym_goto_statement] = STATE(391), + [sym_seh_try_statement] = STATE(391), + [sym_seh_leave_statement] = STATE(391), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62693,22 +67143,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(1101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [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(1601), + [anon_sym_default] = ACTIONS(1603), + [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(1103), - [anon_sym___leave] = ACTIONS(1105), + [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), @@ -62738,51 +67188,148 @@ 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(409), - [sym_compound_statement] = STATE(328), - [sym_attributed_statement] = STATE(328), - [sym_labeled_statement] = STATE(328), - [sym_expression_statement] = STATE(328), - [sym_if_statement] = STATE(328), - [sym_switch_statement] = STATE(328), - [sym_case_statement] = STATE(328), - [sym_while_statement] = STATE(328), - [sym_do_statement] = STATE(328), - [sym_for_statement] = STATE(328), - [sym_return_statement] = STATE(328), - [sym_break_statement] = STATE(328), - [sym_continue_statement] = STATE(328), - [sym_goto_statement] = STATE(328), - [sym_seh_try_statement] = STATE(328), - [sym_seh_leave_statement] = STATE(328), - [sym__expression] = STATE(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(409), - [sym_identifier] = ACTIONS(1572), + [459] = { + [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), + }, + [460] = { + [sym_attribute_declaration] = STATE(434), + [sym_compound_statement] = STATE(96), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym_seh_try_statement] = STATE(96), + [sym_seh_leave_statement] = STATE(96), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(1605), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62790,22 +67337,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(557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_if] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -62835,51 +67382,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(345), - [sym_attributed_statement] = STATE(345), - [sym_labeled_statement] = STATE(345), - [sym_expression_statement] = STATE(345), - [sym_if_statement] = STATE(345), - [sym_switch_statement] = STATE(345), - [sym_case_statement] = STATE(345), - [sym_while_statement] = STATE(345), - [sym_do_statement] = STATE(345), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(345), - [sym_break_statement] = STATE(345), - [sym_continue_statement] = STATE(345), - [sym_goto_statement] = STATE(345), - [sym_seh_try_statement] = STATE(345), - [sym_seh_leave_statement] = STATE(345), - [sym__expression] = STATE(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1572), + [461] = { + [sym_attribute_declaration] = STATE(434), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(1605), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62887,22 +67434,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(557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_if] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -62921,1032 +67468,1226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [418] = { - [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), - }, - [419] = { - [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), - }, - [420] = { - [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), + [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), }, - [421] = { - [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), + [462] = { + [sym_attribute_declaration] = STATE(434), + [sym_compound_statement] = STATE(198), + [sym_attributed_statement] = STATE(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_case_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(198), + [sym_seh_leave_statement] = STATE(198), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), }, - [422] = { - [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), + [463] = { + [sym_identifier] = ACTIONS(1552), + [aux_sym_preproc_include_token1] = ACTIONS(1552), + [aux_sym_preproc_def_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1552), + [sym_preproc_directive] = ACTIONS(1552), + [anon_sym_LPAREN2] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym___extension__] = ACTIONS(1552), + [anon_sym_typedef] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym___attribute__] = ACTIONS(1552), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym___declspec] = ACTIONS(1552), + [anon_sym___cdecl] = ACTIONS(1552), + [anon_sym___clrcall] = ACTIONS(1552), + [anon_sym___stdcall] = ACTIONS(1552), + [anon_sym___fastcall] = ACTIONS(1552), + [anon_sym___thiscall] = ACTIONS(1552), + [anon_sym___vectorcall] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_signed] = ACTIONS(1552), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_auto] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_inline] = ACTIONS(1552), + [anon_sym___inline] = ACTIONS(1552), + [anon_sym___inline__] = ACTIONS(1552), + [anon_sym___forceinline] = ACTIONS(1552), + [anon_sym_thread_local] = ACTIONS(1552), + [anon_sym___thread] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_constexpr] = ACTIONS(1552), + [anon_sym_volatile] = ACTIONS(1552), + [anon_sym_restrict] = ACTIONS(1552), + [anon_sym___restrict__] = ACTIONS(1552), + [anon_sym__Atomic] = ACTIONS(1552), + [anon_sym__Noreturn] = ACTIONS(1552), + [anon_sym_noreturn] = ACTIONS(1552), + [sym_primitive_type] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1552), + [anon_sym___try] = ACTIONS(1552), + [anon_sym___leave] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1554), + [anon_sym_sizeof] = ACTIONS(1552), + [anon_sym___alignof__] = ACTIONS(1552), + [anon_sym___alignof] = ACTIONS(1552), + [anon_sym__alignof] = ACTIONS(1552), + [anon_sym_alignof] = ACTIONS(1552), + [anon_sym__Alignof] = ACTIONS(1552), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1552), + [anon_sym_asm] = ACTIONS(1552), + [anon_sym___asm__] = ACTIONS(1552), + [sym_number_literal] = ACTIONS(1554), + [anon_sym_L_SQUOTE] = ACTIONS(1554), + [anon_sym_u_SQUOTE] = ACTIONS(1554), + [anon_sym_U_SQUOTE] = ACTIONS(1554), + [anon_sym_u8_SQUOTE] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_L_DQUOTE] = ACTIONS(1554), + [anon_sym_u_DQUOTE] = ACTIONS(1554), + [anon_sym_U_DQUOTE] = ACTIONS(1554), + [anon_sym_u8_DQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym_true] = ACTIONS(1552), + [sym_false] = ACTIONS(1552), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_attribute_declaration] = STATE(423), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym_seh_try_statement] = STATE(301), - [sym_seh_leave_statement] = STATE(301), - [sym__expression] = STATE(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1672), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1687), - [anon_sym_default] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_do] = ACTIONS(1696), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym___try] = ACTIONS(1714), - [anon_sym___leave] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1642), - [anon_sym___alignof__] = ACTIONS(1645), - [anon_sym___alignof] = ACTIONS(1645), - [anon_sym__alignof] = ACTIONS(1645), - [anon_sym_alignof] = ACTIONS(1645), - [anon_sym__Alignof] = ACTIONS(1645), - [anon_sym_offsetof] = ACTIONS(1648), - [anon_sym__Generic] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1654), - [anon_sym___asm__] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1660), - [anon_sym_u_SQUOTE] = ACTIONS(1660), - [anon_sym_U_SQUOTE] = ACTIONS(1660), - [anon_sym_u8_SQUOTE] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_NULL] = ACTIONS(1669), - [anon_sym_nullptr] = ACTIONS(1669), + [464] = { + [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), }, - [424] = { - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token2] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___extension__] = ACTIONS(1514), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym___inline] = ACTIONS(1514), - [anon_sym___inline__] = ACTIONS(1514), - [anon_sym___forceinline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym___thread] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym___restrict__] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym__Noreturn] = ACTIONS(1514), - [anon_sym_noreturn] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym___try] = ACTIONS(1514), - [anon_sym___leave] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [anon_sym___alignof__] = ACTIONS(1514), - [anon_sym___alignof] = ACTIONS(1514), - [anon_sym__alignof] = ACTIONS(1514), - [anon_sym_alignof] = ACTIONS(1514), - [anon_sym__Alignof] = ACTIONS(1514), - [anon_sym_offsetof] = ACTIONS(1514), - [anon_sym__Generic] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1514), - [anon_sym___asm__] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [anon_sym_NULL] = ACTIONS(1514), - [anon_sym_nullptr] = ACTIONS(1514), + [465] = { + [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), }, - [425] = { - [sym_identifier] = ACTIONS(1526), - [aux_sym_preproc_include_token1] = ACTIONS(1526), - [aux_sym_preproc_def_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token2] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), - [sym_preproc_directive] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(1526), - [anon_sym_typedef] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym___attribute__] = ACTIONS(1526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), - [anon_sym___declspec] = ACTIONS(1526), - [anon_sym___cdecl] = ACTIONS(1526), - [anon_sym___clrcall] = ACTIONS(1526), - [anon_sym___stdcall] = ACTIONS(1526), - [anon_sym___fastcall] = ACTIONS(1526), - [anon_sym___thiscall] = ACTIONS(1526), - [anon_sym___vectorcall] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_signed] = ACTIONS(1526), - [anon_sym_unsigned] = ACTIONS(1526), - [anon_sym_long] = ACTIONS(1526), - [anon_sym_short] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_auto] = ACTIONS(1526), - [anon_sym_register] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym___inline] = ACTIONS(1526), - [anon_sym___inline__] = ACTIONS(1526), - [anon_sym___forceinline] = ACTIONS(1526), - [anon_sym_thread_local] = ACTIONS(1526), - [anon_sym___thread] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_constexpr] = ACTIONS(1526), - [anon_sym_volatile] = ACTIONS(1526), - [anon_sym_restrict] = ACTIONS(1526), - [anon_sym___restrict__] = ACTIONS(1526), - [anon_sym__Atomic] = ACTIONS(1526), - [anon_sym__Noreturn] = ACTIONS(1526), - [anon_sym_noreturn] = ACTIONS(1526), - [sym_primitive_type] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_switch] = ACTIONS(1526), - [anon_sym_case] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_goto] = ACTIONS(1526), - [anon_sym___try] = ACTIONS(1526), - [anon_sym___leave] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(1526), - [anon_sym___alignof] = ACTIONS(1526), - [anon_sym__alignof] = ACTIONS(1526), - [anon_sym_alignof] = ACTIONS(1526), - [anon_sym__Alignof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1526), - [anon_sym__Generic] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1526), - [anon_sym___asm__] = ACTIONS(1526), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1528), - [anon_sym_u_SQUOTE] = ACTIONS(1528), - [anon_sym_U_SQUOTE] = ACTIONS(1528), - [anon_sym_u8_SQUOTE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_L_DQUOTE] = ACTIONS(1528), - [anon_sym_u_DQUOTE] = ACTIONS(1528), - [anon_sym_U_DQUOTE] = ACTIONS(1528), - [anon_sym_u8_DQUOTE] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [anon_sym_NULL] = ACTIONS(1526), - [anon_sym_nullptr] = ACTIONS(1526), + [466] = { + [sym_attribute_declaration] = STATE(466), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym_seh_try_statement] = STATE(218), + [sym_seh_leave_statement] = STATE(218), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1737), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_goto] = ACTIONS(1776), + [anon_sym___try] = ACTIONS(1779), + [anon_sym___leave] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1675), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1681), + [anon_sym__Generic] = ACTIONS(1684), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym___asm__] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1693), + [anon_sym_u_SQUOTE] = ACTIONS(1693), + [anon_sym_U_SQUOTE] = ACTIONS(1693), + [anon_sym_u8_SQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_L_DQUOTE] = ACTIONS(1696), + [anon_sym_u_DQUOTE] = ACTIONS(1696), + [anon_sym_U_DQUOTE] = ACTIONS(1696), + [anon_sym_u8_DQUOTE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_identifier] = ACTIONS(1522), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym___extension__] = ACTIONS(1522), - [anon_sym_typedef] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), - [anon_sym___declspec] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_signed] = ACTIONS(1522), - [anon_sym_unsigned] = ACTIONS(1522), - [anon_sym_long] = ACTIONS(1522), - [anon_sym_short] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_auto] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym___inline] = ACTIONS(1522), - [anon_sym___inline__] = ACTIONS(1522), - [anon_sym___forceinline] = ACTIONS(1522), - [anon_sym_thread_local] = ACTIONS(1522), - [anon_sym___thread] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_constexpr] = ACTIONS(1522), - [anon_sym_volatile] = ACTIONS(1522), - [anon_sym_restrict] = ACTIONS(1522), - [anon_sym___restrict__] = ACTIONS(1522), - [anon_sym__Atomic] = ACTIONS(1522), - [anon_sym__Noreturn] = ACTIONS(1522), - [anon_sym_noreturn] = ACTIONS(1522), - [sym_primitive_type] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_goto] = ACTIONS(1522), - [anon_sym___try] = ACTIONS(1522), - [anon_sym___leave] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [anon_sym_sizeof] = ACTIONS(1522), - [anon_sym___alignof__] = ACTIONS(1522), - [anon_sym___alignof] = ACTIONS(1522), - [anon_sym__alignof] = ACTIONS(1522), - [anon_sym_alignof] = ACTIONS(1522), - [anon_sym__Alignof] = ACTIONS(1522), - [anon_sym_offsetof] = ACTIONS(1522), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1522), - [anon_sym___asm__] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(1524), - [anon_sym_L_SQUOTE] = ACTIONS(1524), - [anon_sym_u_SQUOTE] = ACTIONS(1524), - [anon_sym_U_SQUOTE] = ACTIONS(1524), - [anon_sym_u8_SQUOTE] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_L_DQUOTE] = ACTIONS(1524), - [anon_sym_u_DQUOTE] = ACTIONS(1524), - [anon_sym_U_DQUOTE] = ACTIONS(1524), - [anon_sym_u8_DQUOTE] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), + [467] = { + [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), }, - [427] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token2] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), - [sym_preproc_directive] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym___extension__] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___cdecl] = ACTIONS(1518), - [anon_sym___clrcall] = ACTIONS(1518), - [anon_sym___stdcall] = ACTIONS(1518), - [anon_sym___fastcall] = ACTIONS(1518), - [anon_sym___thiscall] = ACTIONS(1518), - [anon_sym___vectorcall] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_auto] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym___inline] = ACTIONS(1518), - [anon_sym___inline__] = ACTIONS(1518), - [anon_sym___forceinline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym___thread] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym___restrict__] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym__Noreturn] = ACTIONS(1518), - [anon_sym_noreturn] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym___try] = ACTIONS(1518), - [anon_sym___leave] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [anon_sym___alignof__] = ACTIONS(1518), - [anon_sym___alignof] = ACTIONS(1518), - [anon_sym__alignof] = ACTIONS(1518), - [anon_sym_alignof] = ACTIONS(1518), - [anon_sym__Alignof] = ACTIONS(1518), - [anon_sym_offsetof] = ACTIONS(1518), - [anon_sym__Generic] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1518), - [anon_sym___asm__] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [anon_sym_NULL] = ACTIONS(1518), - [anon_sym_nullptr] = ACTIONS(1518), + [468] = { + [sym_attribute_declaration] = STATE(468), + [sym_compound_statement] = STATE(416), + [sym_attributed_statement] = STATE(416), + [sym_labeled_statement] = STATE(416), + [sym_expression_statement] = STATE(416), + [sym_if_statement] = STATE(416), + [sym_switch_statement] = STATE(416), + [sym_case_statement] = STATE(416), + [sym_while_statement] = STATE(416), + [sym_do_statement] = STATE(416), + [sym_for_statement] = STATE(416), + [sym_return_statement] = STATE(416), + [sym_break_statement] = STATE(416), + [sym_continue_statement] = STATE(416), + [sym_goto_statement] = STATE(416), + [sym_seh_try_statement] = STATE(416), + [sym_seh_leave_statement] = STATE(416), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [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(1669), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1675), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1681), + [anon_sym__Generic] = ACTIONS(1684), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym___asm__] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1693), + [anon_sym_u_SQUOTE] = ACTIONS(1693), + [anon_sym_U_SQUOTE] = ACTIONS(1693), + [anon_sym_u8_SQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_L_DQUOTE] = ACTIONS(1696), + [anon_sym_u_DQUOTE] = ACTIONS(1696), + [anon_sym_U_DQUOTE] = ACTIONS(1696), + [anon_sym_u8_DQUOTE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [470] = { + [sym_attribute_declaration] = STATE(434), + [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(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(1827), + [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), + }, + [471] = { + [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), + }, + [472] = { + [sym_attribute_declaration] = STATE(434), + [sym_compound_statement] = STATE(191), + [sym_attributed_statement] = STATE(235), + [sym_labeled_statement] = STATE(237), + [sym_expression_statement] = STATE(238), + [sym_if_statement] = STATE(239), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(241), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(244), + [sym_for_statement] = STATE(245), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(225), + [sym_goto_statement] = STATE(224), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(222), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), + }, + [473] = { + [sym_attribute_declaration] = STATE(494), + [sym_compound_statement] = STATE(423), + [sym_attributed_statement] = STATE(423), + [sym_labeled_statement] = STATE(423), + [sym_expression_statement] = STATE(423), + [sym_if_statement] = STATE(423), + [sym_switch_statement] = STATE(423), + [sym_case_statement] = STATE(423), + [sym_while_statement] = STATE(423), + [sym_do_statement] = STATE(423), + [sym_for_statement] = STATE(423), + [sym_return_statement] = STATE(423), + [sym_break_statement] = STATE(423), + [sym_continue_statement] = STATE(423), + [sym_goto_statement] = STATE(423), + [sym_seh_try_statement] = STATE(423), + [sym_seh_leave_statement] = STATE(423), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [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), }, - [428] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym_seh_try_statement] = STATE(340), - [sym_seh_leave_statement] = STATE(340), - [sym__expression] = STATE(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1572), + [474] = { + [sym_attribute_declaration] = STATE(498), + [sym_compound_statement] = STATE(401), + [sym_attributed_statement] = STATE(401), + [sym_labeled_statement] = STATE(401), + [sym_expression_statement] = STATE(401), + [sym_if_statement] = STATE(401), + [sym_switch_statement] = STATE(401), + [sym_case_statement] = STATE(401), + [sym_while_statement] = STATE(401), + [sym_do_statement] = STATE(401), + [sym_for_statement] = STATE(401), + [sym_return_statement] = STATE(401), + [sym_break_statement] = STATE(401), + [sym_continue_statement] = STATE(401), + [sym_goto_statement] = STATE(401), + [sym_seh_try_statement] = STATE(401), + [sym_seh_leave_statement] = STATE(401), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1607), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63954,22 +68695,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(557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_if] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1831), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63999,51 +68740,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym__expression] = STATE(1313), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2275), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1572), + [475] = { + [sym_attribute_declaration] = STATE(475), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(1833), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_switch] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym___try] = ACTIONS(1875), + [anon_sym___leave] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1675), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1681), + [anon_sym__Generic] = ACTIONS(1684), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym___asm__] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1693), + [anon_sym_u_SQUOTE] = ACTIONS(1693), + [anon_sym_U_SQUOTE] = ACTIONS(1693), + [anon_sym_u8_SQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_L_DQUOTE] = ACTIONS(1696), + [anon_sym_u_DQUOTE] = ACTIONS(1696), + [anon_sym_U_DQUOTE] = ACTIONS(1696), + [anon_sym_u8_DQUOTE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [sym_attribute_declaration] = STATE(494), + [sym_compound_statement] = STATE(432), + [sym_attributed_statement] = STATE(432), + [sym_labeled_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_switch_statement] = STATE(432), + [sym_case_statement] = STATE(432), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_seh_try_statement] = STATE(432), + [sym_seh_leave_statement] = STATE(432), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1829), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64051,22 +68889,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(557), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_if] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(573), - [anon_sym_while] = ACTIONS(575), - [anon_sym_do] = ACTIONS(577), - [anon_sym_for] = ACTIONS(579), - [anon_sym_return] = ACTIONS(581), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(587), - [anon_sym___try] = ACTIONS(589), - [anon_sym___leave] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -64096,245 +68934,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_identifier] = ACTIONS(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1530), - [aux_sym_preproc_def_token1] = ACTIONS(1530), - [aux_sym_preproc_if_token1] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), - [sym_preproc_directive] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym___extension__] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym___attribute__] = ACTIONS(1530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), - [anon_sym___declspec] = ACTIONS(1530), - [anon_sym___cdecl] = ACTIONS(1530), - [anon_sym___clrcall] = ACTIONS(1530), - [anon_sym___stdcall] = ACTIONS(1530), - [anon_sym___fastcall] = ACTIONS(1530), - [anon_sym___thiscall] = ACTIONS(1530), - [anon_sym___vectorcall] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_signed] = ACTIONS(1530), - [anon_sym_unsigned] = ACTIONS(1530), - [anon_sym_long] = ACTIONS(1530), - [anon_sym_short] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_auto] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym___inline] = ACTIONS(1530), - [anon_sym___inline__] = ACTIONS(1530), - [anon_sym___forceinline] = ACTIONS(1530), - [anon_sym_thread_local] = ACTIONS(1530), - [anon_sym___thread] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_constexpr] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [anon_sym_restrict] = ACTIONS(1530), - [anon_sym___restrict__] = ACTIONS(1530), - [anon_sym__Atomic] = ACTIONS(1530), - [anon_sym__Noreturn] = ACTIONS(1530), - [anon_sym_noreturn] = ACTIONS(1530), - [sym_primitive_type] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_goto] = ACTIONS(1530), - [anon_sym___try] = ACTIONS(1530), - [anon_sym___leave] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [anon_sym_sizeof] = ACTIONS(1530), - [anon_sym___alignof__] = ACTIONS(1530), - [anon_sym___alignof] = ACTIONS(1530), - [anon_sym__alignof] = ACTIONS(1530), - [anon_sym_alignof] = ACTIONS(1530), - [anon_sym__Alignof] = ACTIONS(1530), - [anon_sym_offsetof] = ACTIONS(1530), - [anon_sym__Generic] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1530), - [anon_sym___asm__] = ACTIONS(1530), - [sym_number_literal] = ACTIONS(1532), - [anon_sym_L_SQUOTE] = ACTIONS(1532), - [anon_sym_u_SQUOTE] = ACTIONS(1532), - [anon_sym_U_SQUOTE] = ACTIONS(1532), - [anon_sym_u8_SQUOTE] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_L_DQUOTE] = ACTIONS(1532), - [anon_sym_u_DQUOTE] = ACTIONS(1532), - [anon_sym_U_DQUOTE] = ACTIONS(1532), - [anon_sym_u8_DQUOTE] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [anon_sym_NULL] = ACTIONS(1530), - [anon_sym_nullptr] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [sym_identifier] = ACTIONS(1510), - [aux_sym_preproc_include_token1] = ACTIONS(1510), - [aux_sym_preproc_def_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token2] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym___extension__] = ACTIONS(1510), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym___attribute__] = ACTIONS(1510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), - [anon_sym___declspec] = ACTIONS(1510), - [anon_sym___cdecl] = ACTIONS(1510), - [anon_sym___clrcall] = ACTIONS(1510), - [anon_sym___stdcall] = ACTIONS(1510), - [anon_sym___fastcall] = ACTIONS(1510), - [anon_sym___thiscall] = ACTIONS(1510), - [anon_sym___vectorcall] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym___inline] = ACTIONS(1510), - [anon_sym___inline__] = ACTIONS(1510), - [anon_sym___forceinline] = ACTIONS(1510), - [anon_sym_thread_local] = ACTIONS(1510), - [anon_sym___thread] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_constexpr] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym___restrict__] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym__Noreturn] = ACTIONS(1510), - [anon_sym_noreturn] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym___try] = ACTIONS(1510), - [anon_sym___leave] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1510), - [anon_sym___alignof__] = ACTIONS(1510), - [anon_sym___alignof] = ACTIONS(1510), - [anon_sym__alignof] = ACTIONS(1510), - [anon_sym_alignof] = ACTIONS(1510), - [anon_sym__Alignof] = ACTIONS(1510), - [anon_sym_offsetof] = ACTIONS(1510), - [anon_sym__Generic] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1510), - [anon_sym___asm__] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1512), - [anon_sym_u_SQUOTE] = ACTIONS(1512), - [anon_sym_U_SQUOTE] = ACTIONS(1512), - [anon_sym_u8_SQUOTE] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_L_DQUOTE] = ACTIONS(1512), - [anon_sym_u_DQUOTE] = ACTIONS(1512), - [anon_sym_U_DQUOTE] = ACTIONS(1512), - [anon_sym_u8_DQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [anon_sym_NULL] = ACTIONS(1510), - [anon_sym_nullptr] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - }, - [432] = { - [sym_attribute_declaration] = STATE(499), - [sym_compound_statement] = STATE(97), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_case_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(499), - [sym_identifier] = ACTIONS(1720), + [477] = { + [sym_attribute_declaration] = STATE(494), + [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(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1829), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64342,22 +68986,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(1564), - [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(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -64387,245 +69031,51 @@ 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(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token2] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), - [sym_preproc_directive] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym___extension__] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym___attribute__] = ACTIONS(1506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), - [anon_sym___declspec] = ACTIONS(1506), - [anon_sym___cdecl] = ACTIONS(1506), - [anon_sym___clrcall] = ACTIONS(1506), - [anon_sym___stdcall] = ACTIONS(1506), - [anon_sym___fastcall] = ACTIONS(1506), - [anon_sym___thiscall] = ACTIONS(1506), - [anon_sym___vectorcall] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_signed] = ACTIONS(1506), - [anon_sym_unsigned] = ACTIONS(1506), - [anon_sym_long] = ACTIONS(1506), - [anon_sym_short] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_auto] = ACTIONS(1506), - [anon_sym_register] = ACTIONS(1506), - [anon_sym_inline] = ACTIONS(1506), - [anon_sym___inline] = ACTIONS(1506), - [anon_sym___inline__] = ACTIONS(1506), - [anon_sym___forceinline] = ACTIONS(1506), - [anon_sym_thread_local] = ACTIONS(1506), - [anon_sym___thread] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_constexpr] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1506), - [anon_sym_restrict] = ACTIONS(1506), - [anon_sym___restrict__] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1506), - [anon_sym__Noreturn] = ACTIONS(1506), - [anon_sym_noreturn] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1506), - [anon_sym___try] = ACTIONS(1506), - [anon_sym___leave] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1506), - [anon_sym___alignof__] = ACTIONS(1506), - [anon_sym___alignof] = ACTIONS(1506), - [anon_sym__alignof] = ACTIONS(1506), - [anon_sym_alignof] = ACTIONS(1506), - [anon_sym__Alignof] = ACTIONS(1506), - [anon_sym_offsetof] = ACTIONS(1506), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1506), - [anon_sym___asm__] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1508), - [anon_sym_u_SQUOTE] = ACTIONS(1508), - [anon_sym_U_SQUOTE] = ACTIONS(1508), - [anon_sym_u8_SQUOTE] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_L_DQUOTE] = ACTIONS(1508), - [anon_sym_u_DQUOTE] = ACTIONS(1508), - [anon_sym_U_DQUOTE] = ACTIONS(1508), - [anon_sym_u8_DQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [anon_sym_NULL] = ACTIONS(1506), - [anon_sym_nullptr] = ACTIONS(1506), - [sym_comment] = ACTIONS(3), - }, - [434] = { - [sym_identifier] = ACTIONS(1494), - [aux_sym_preproc_include_token1] = ACTIONS(1494), - [aux_sym_preproc_def_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token2] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), - [sym_preproc_directive] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym___extension__] = ACTIONS(1494), - [anon_sym_typedef] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym___attribute__] = ACTIONS(1494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), - [anon_sym___declspec] = ACTIONS(1494), - [anon_sym___cdecl] = ACTIONS(1494), - [anon_sym___clrcall] = ACTIONS(1494), - [anon_sym___stdcall] = ACTIONS(1494), - [anon_sym___fastcall] = ACTIONS(1494), - [anon_sym___thiscall] = ACTIONS(1494), - [anon_sym___vectorcall] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_signed] = ACTIONS(1494), - [anon_sym_unsigned] = ACTIONS(1494), - [anon_sym_long] = ACTIONS(1494), - [anon_sym_short] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_auto] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1494), - [anon_sym_inline] = ACTIONS(1494), - [anon_sym___inline] = ACTIONS(1494), - [anon_sym___inline__] = ACTIONS(1494), - [anon_sym___forceinline] = ACTIONS(1494), - [anon_sym_thread_local] = ACTIONS(1494), - [anon_sym___thread] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_constexpr] = ACTIONS(1494), - [anon_sym_volatile] = ACTIONS(1494), - [anon_sym_restrict] = ACTIONS(1494), - [anon_sym___restrict__] = ACTIONS(1494), - [anon_sym__Atomic] = ACTIONS(1494), - [anon_sym__Noreturn] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [sym_primitive_type] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_do] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_goto] = ACTIONS(1494), - [anon_sym___try] = ACTIONS(1494), - [anon_sym___leave] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1496), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym___alignof__] = ACTIONS(1494), - [anon_sym___alignof] = ACTIONS(1494), - [anon_sym__alignof] = ACTIONS(1494), - [anon_sym_alignof] = ACTIONS(1494), - [anon_sym__Alignof] = ACTIONS(1494), - [anon_sym_offsetof] = ACTIONS(1494), - [anon_sym__Generic] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1494), - [anon_sym___asm__] = ACTIONS(1494), - [sym_number_literal] = ACTIONS(1496), - [anon_sym_L_SQUOTE] = ACTIONS(1496), - [anon_sym_u_SQUOTE] = ACTIONS(1496), - [anon_sym_U_SQUOTE] = ACTIONS(1496), - [anon_sym_u8_SQUOTE] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_L_DQUOTE] = ACTIONS(1496), - [anon_sym_u_DQUOTE] = ACTIONS(1496), - [anon_sym_U_DQUOTE] = ACTIONS(1496), - [anon_sym_u8_DQUOTE] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1496), - [sym_true] = ACTIONS(1494), - [sym_false] = ACTIONS(1494), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - }, - [435] = { - [sym_attribute_declaration] = STATE(411), - [sym_compound_statement] = STATE(207), - [sym_attributed_statement] = STATE(205), - [sym_labeled_statement] = STATE(200), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(192), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(206), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(176), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(183), - [sym_break_statement] = STATE(193), - [sym_continue_statement] = STATE(194), - [sym_goto_statement] = STATE(198), - [sym_seh_try_statement] = STATE(199), - [sym_seh_leave_statement] = STATE(202), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(1562), + [478] = { + [sym_attribute_declaration] = STATE(494), + [sym_compound_statement] = STATE(374), + [sym_attributed_statement] = STATE(374), + [sym_labeled_statement] = STATE(374), + [sym_expression_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_switch_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [sym_while_statement] = STATE(374), + [sym_do_statement] = STATE(374), + [sym_for_statement] = STATE(374), + [sym_return_statement] = STATE(374), + [sym_break_statement] = STATE(374), + [sym_continue_statement] = STATE(374), + [sym_goto_statement] = STATE(374), + [sym_seh_try_statement] = STATE(374), + [sym_seh_leave_statement] = STATE(374), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1829), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64633,22 +69083,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(1564), - [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(1599), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(1881), + [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), @@ -64678,148 +69128,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [436] = { - [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), - }, - [437] = { - [sym_attribute_declaration] = STATE(411), - [sym_compound_statement] = STATE(211), - [sym_attributed_statement] = STATE(211), - [sym_labeled_statement] = STATE(211), - [sym_expression_statement] = STATE(211), - [sym_if_statement] = STATE(211), - [sym_switch_statement] = STATE(211), - [sym_case_statement] = STATE(211), - [sym_while_statement] = STATE(211), - [sym_do_statement] = STATE(211), - [sym_for_statement] = STATE(211), - [sym_return_statement] = STATE(211), - [sym_break_statement] = STATE(211), - [sym_continue_statement] = STATE(211), - [sym_goto_statement] = STATE(211), - [sym_seh_try_statement] = STATE(211), - [sym_seh_leave_statement] = STATE(211), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(1562), + [479] = { + [sym_attribute_declaration] = STATE(434), + [sym_compound_statement] = STATE(94), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_case_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym_seh_try_statement] = STATE(94), + [sym_seh_leave_statement] = STATE(94), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(1605), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64828,7 +69181,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(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -64872,148 +69225,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [438] = { - [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), - }, - [439] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(559), - [sym_attributed_statement] = STATE(559), - [sym_labeled_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_switch_statement] = STATE(559), - [sym_case_statement] = STATE(559), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_seh_try_statement] = STATE(559), - [sym_seh_leave_statement] = STATE(559), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), + [480] = { + [sym_attribute_declaration] = STATE(434), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym_seh_try_statement] = STATE(219), + [sym_seh_leave_statement] = STATE(219), + [sym__expression] = STATE(1397), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(434), + [sym_identifier] = ACTIONS(1605), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65021,22 +69277,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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -65066,148 +69322,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_identifier] = ACTIONS(1530), - [aux_sym_preproc_include_token1] = ACTIONS(1530), - [aux_sym_preproc_def_token1] = ACTIONS(1530), - [aux_sym_preproc_if_token1] = ACTIONS(1530), - [aux_sym_preproc_if_token2] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), - [sym_preproc_directive] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym___extension__] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym___attribute__] = ACTIONS(1530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), - [anon_sym___declspec] = ACTIONS(1530), - [anon_sym___cdecl] = ACTIONS(1530), - [anon_sym___clrcall] = ACTIONS(1530), - [anon_sym___stdcall] = ACTIONS(1530), - [anon_sym___fastcall] = ACTIONS(1530), - [anon_sym___thiscall] = ACTIONS(1530), - [anon_sym___vectorcall] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_signed] = ACTIONS(1530), - [anon_sym_unsigned] = ACTIONS(1530), - [anon_sym_long] = ACTIONS(1530), - [anon_sym_short] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_auto] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym___inline] = ACTIONS(1530), - [anon_sym___inline__] = ACTIONS(1530), - [anon_sym___forceinline] = ACTIONS(1530), - [anon_sym_thread_local] = ACTIONS(1530), - [anon_sym___thread] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_constexpr] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [anon_sym_restrict] = ACTIONS(1530), - [anon_sym___restrict__] = ACTIONS(1530), - [anon_sym__Atomic] = ACTIONS(1530), - [anon_sym__Noreturn] = ACTIONS(1530), - [anon_sym_noreturn] = ACTIONS(1530), - [sym_primitive_type] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_goto] = ACTIONS(1530), - [anon_sym___try] = ACTIONS(1530), - [anon_sym___leave] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [anon_sym_sizeof] = ACTIONS(1530), - [anon_sym___alignof__] = ACTIONS(1530), - [anon_sym___alignof] = ACTIONS(1530), - [anon_sym__alignof] = ACTIONS(1530), - [anon_sym_alignof] = ACTIONS(1530), - [anon_sym__Alignof] = ACTIONS(1530), - [anon_sym_offsetof] = ACTIONS(1530), - [anon_sym__Generic] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1530), - [anon_sym___asm__] = ACTIONS(1530), - [sym_number_literal] = ACTIONS(1532), - [anon_sym_L_SQUOTE] = ACTIONS(1532), - [anon_sym_u_SQUOTE] = ACTIONS(1532), - [anon_sym_U_SQUOTE] = ACTIONS(1532), - [anon_sym_u8_SQUOTE] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_L_DQUOTE] = ACTIONS(1532), - [anon_sym_u_DQUOTE] = ACTIONS(1532), - [anon_sym_U_DQUOTE] = ACTIONS(1532), - [anon_sym_u8_DQUOTE] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [anon_sym_NULL] = ACTIONS(1530), - [anon_sym_nullptr] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - }, - [441] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(2403), - [sym_attributed_statement] = STATE(2403), - [sym_labeled_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_if_statement] = STATE(2403), - [sym_switch_statement] = STATE(2403), - [sym_case_statement] = STATE(2403), - [sym_while_statement] = STATE(2403), - [sym_do_statement] = STATE(2403), - [sym_for_statement] = STATE(2403), - [sym_return_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_goto_statement] = STATE(2403), - [sym_seh_try_statement] = STATE(2403), - [sym_seh_leave_statement] = STATE(2403), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), + [481] = { + [sym_attribute_declaration] = STATE(485), + [sym_compound_statement] = STATE(151), + [sym_attributed_statement] = STATE(151), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_case_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1705), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65215,22 +69374,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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -65260,492 +69419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_identifier] = ACTIONS(1502), - [aux_sym_preproc_include_token1] = ACTIONS(1502), - [aux_sym_preproc_def_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token2] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), - [sym_preproc_directive] = ACTIONS(1502), - [anon_sym_LPAREN2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym___extension__] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym___attribute__] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), - [anon_sym___declspec] = ACTIONS(1502), - [anon_sym___cdecl] = ACTIONS(1502), - [anon_sym___clrcall] = ACTIONS(1502), - [anon_sym___stdcall] = ACTIONS(1502), - [anon_sym___fastcall] = ACTIONS(1502), - [anon_sym___thiscall] = ACTIONS(1502), - [anon_sym___vectorcall] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1502), - [anon_sym_unsigned] = ACTIONS(1502), - [anon_sym_long] = ACTIONS(1502), - [anon_sym_short] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_auto] = ACTIONS(1502), - [anon_sym_register] = ACTIONS(1502), - [anon_sym_inline] = ACTIONS(1502), - [anon_sym___inline] = ACTIONS(1502), - [anon_sym___inline__] = ACTIONS(1502), - [anon_sym___forceinline] = ACTIONS(1502), - [anon_sym_thread_local] = ACTIONS(1502), - [anon_sym___thread] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_constexpr] = ACTIONS(1502), - [anon_sym_volatile] = ACTIONS(1502), - [anon_sym_restrict] = ACTIONS(1502), - [anon_sym___restrict__] = ACTIONS(1502), - [anon_sym__Atomic] = ACTIONS(1502), - [anon_sym__Noreturn] = ACTIONS(1502), - [anon_sym_noreturn] = ACTIONS(1502), - [sym_primitive_type] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_do] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_goto] = ACTIONS(1502), - [anon_sym___try] = ACTIONS(1502), - [anon_sym___leave] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1502), - [anon_sym___alignof__] = ACTIONS(1502), - [anon_sym___alignof] = ACTIONS(1502), - [anon_sym__alignof] = ACTIONS(1502), - [anon_sym_alignof] = ACTIONS(1502), - [anon_sym__Alignof] = ACTIONS(1502), - [anon_sym_offsetof] = ACTIONS(1502), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1502), - [anon_sym___asm__] = ACTIONS(1502), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1504), - [anon_sym_u_SQUOTE] = ACTIONS(1504), - [anon_sym_U_SQUOTE] = ACTIONS(1504), - [anon_sym_u8_SQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_L_DQUOTE] = ACTIONS(1504), - [anon_sym_u_DQUOTE] = ACTIONS(1504), - [anon_sym_U_DQUOTE] = ACTIONS(1504), - [anon_sym_u8_DQUOTE] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym_true] = ACTIONS(1502), - [sym_false] = ACTIONS(1502), - [anon_sym_NULL] = ACTIONS(1502), - [anon_sym_nullptr] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - }, - [443] = { - [sym_attribute_declaration] = STATE(443), - [sym_compound_statement] = STATE(219), - [sym_attributed_statement] = STATE(219), - [sym_labeled_statement] = STATE(219), - [sym_expression_statement] = STATE(219), - [sym_if_statement] = STATE(219), - [sym_switch_statement] = STATE(219), - [sym_case_statement] = STATE(219), - [sym_while_statement] = STATE(219), - [sym_do_statement] = STATE(219), - [sym_for_statement] = STATE(219), - [sym_return_statement] = STATE(219), - [sym_break_statement] = STATE(219), - [sym_continue_statement] = STATE(219), - [sym_goto_statement] = STATE(219), - [sym_seh_try_statement] = STATE(219), - [sym_seh_leave_statement] = STATE(219), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_goto] = ACTIONS(1761), - [anon_sym___try] = ACTIONS(1764), - [anon_sym___leave] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1642), - [anon_sym___alignof__] = ACTIONS(1645), - [anon_sym___alignof] = ACTIONS(1645), - [anon_sym__alignof] = ACTIONS(1645), - [anon_sym_alignof] = ACTIONS(1645), - [anon_sym__Alignof] = ACTIONS(1645), - [anon_sym_offsetof] = ACTIONS(1648), - [anon_sym__Generic] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1654), - [anon_sym___asm__] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1660), - [anon_sym_u_SQUOTE] = ACTIONS(1660), - [anon_sym_U_SQUOTE] = ACTIONS(1660), - [anon_sym_u8_SQUOTE] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_NULL] = ACTIONS(1669), - [anon_sym_nullptr] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - }, - [444] = { - [sym_identifier] = ACTIONS(1490), - [aux_sym_preproc_include_token1] = ACTIONS(1490), - [aux_sym_preproc_def_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token1] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), - [sym_preproc_directive] = ACTIONS(1490), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym___extension__] = ACTIONS(1490), - [anon_sym_typedef] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym___attribute__] = ACTIONS(1490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), - [anon_sym___declspec] = ACTIONS(1490), - [anon_sym___cdecl] = ACTIONS(1490), - [anon_sym___clrcall] = ACTIONS(1490), - [anon_sym___stdcall] = ACTIONS(1490), - [anon_sym___fastcall] = ACTIONS(1490), - [anon_sym___thiscall] = ACTIONS(1490), - [anon_sym___vectorcall] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_signed] = ACTIONS(1490), - [anon_sym_unsigned] = ACTIONS(1490), - [anon_sym_long] = ACTIONS(1490), - [anon_sym_short] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_auto] = ACTIONS(1490), - [anon_sym_register] = ACTIONS(1490), - [anon_sym_inline] = ACTIONS(1490), - [anon_sym___inline] = ACTIONS(1490), - [anon_sym___inline__] = ACTIONS(1490), - [anon_sym___forceinline] = ACTIONS(1490), - [anon_sym_thread_local] = ACTIONS(1490), - [anon_sym___thread] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_constexpr] = ACTIONS(1490), - [anon_sym_volatile] = ACTIONS(1490), - [anon_sym_restrict] = ACTIONS(1490), - [anon_sym___restrict__] = ACTIONS(1490), - [anon_sym__Atomic] = ACTIONS(1490), - [anon_sym__Noreturn] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [sym_primitive_type] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_goto] = ACTIONS(1490), - [anon_sym___try] = ACTIONS(1490), - [anon_sym___leave] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1490), - [anon_sym___alignof__] = ACTIONS(1490), - [anon_sym___alignof] = ACTIONS(1490), - [anon_sym__alignof] = ACTIONS(1490), - [anon_sym_alignof] = ACTIONS(1490), - [anon_sym__Alignof] = ACTIONS(1490), - [anon_sym_offsetof] = ACTIONS(1490), - [anon_sym__Generic] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1490), - [anon_sym___asm__] = ACTIONS(1490), - [sym_number_literal] = ACTIONS(1492), - [anon_sym_L_SQUOTE] = ACTIONS(1492), - [anon_sym_u_SQUOTE] = ACTIONS(1492), - [anon_sym_U_SQUOTE] = ACTIONS(1492), - [anon_sym_u8_SQUOTE] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_L_DQUOTE] = ACTIONS(1492), - [anon_sym_u_DQUOTE] = ACTIONS(1492), - [anon_sym_U_DQUOTE] = ACTIONS(1492), - [anon_sym_u8_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - }, - [445] = { - [sym_identifier] = ACTIONS(1498), - [aux_sym_preproc_include_token1] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token2] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1498), - [anon_sym_LPAREN2] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym___extension__] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym___attribute__] = ACTIONS(1498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), - [anon_sym___declspec] = ACTIONS(1498), - [anon_sym___cdecl] = ACTIONS(1498), - [anon_sym___clrcall] = ACTIONS(1498), - [anon_sym___stdcall] = ACTIONS(1498), - [anon_sym___fastcall] = ACTIONS(1498), - [anon_sym___thiscall] = ACTIONS(1498), - [anon_sym___vectorcall] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1498), - [anon_sym_unsigned] = ACTIONS(1498), - [anon_sym_long] = ACTIONS(1498), - [anon_sym_short] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_auto] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1498), - [anon_sym___inline] = ACTIONS(1498), - [anon_sym___inline__] = ACTIONS(1498), - [anon_sym___forceinline] = ACTIONS(1498), - [anon_sym_thread_local] = ACTIONS(1498), - [anon_sym___thread] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_constexpr] = ACTIONS(1498), - [anon_sym_volatile] = ACTIONS(1498), - [anon_sym_restrict] = ACTIONS(1498), - [anon_sym___restrict__] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1498), - [anon_sym__Noreturn] = ACTIONS(1498), - [anon_sym_noreturn] = ACTIONS(1498), - [sym_primitive_type] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_goto] = ACTIONS(1498), - [anon_sym___try] = ACTIONS(1498), - [anon_sym___leave] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1498), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1498), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1498), - [anon_sym___asm__] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1500), - [anon_sym_L_SQUOTE] = ACTIONS(1500), - [anon_sym_u_SQUOTE] = ACTIONS(1500), - [anon_sym_U_SQUOTE] = ACTIONS(1500), - [anon_sym_u8_SQUOTE] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_L_DQUOTE] = ACTIONS(1500), - [anon_sym_u_DQUOTE] = ACTIONS(1500), - [anon_sym_U_DQUOTE] = ACTIONS(1500), - [anon_sym_u8_DQUOTE] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1500), - [sym_true] = ACTIONS(1498), - [sym_false] = ACTIONS(1498), - [anon_sym_NULL] = ACTIONS(1498), - [anon_sym_nullptr] = ACTIONS(1498), - [sym_comment] = ACTIONS(3), - }, - [446] = { - [sym_identifier] = ACTIONS(1490), - [aux_sym_preproc_include_token1] = ACTIONS(1490), - [aux_sym_preproc_def_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token2] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), - [sym_preproc_directive] = ACTIONS(1490), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym___extension__] = ACTIONS(1490), - [anon_sym_typedef] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym___attribute__] = ACTIONS(1490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), - [anon_sym___declspec] = ACTIONS(1490), - [anon_sym___cdecl] = ACTIONS(1490), - [anon_sym___clrcall] = ACTIONS(1490), - [anon_sym___stdcall] = ACTIONS(1490), - [anon_sym___fastcall] = ACTIONS(1490), - [anon_sym___thiscall] = ACTIONS(1490), - [anon_sym___vectorcall] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_signed] = ACTIONS(1490), - [anon_sym_unsigned] = ACTIONS(1490), - [anon_sym_long] = ACTIONS(1490), - [anon_sym_short] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_auto] = ACTIONS(1490), - [anon_sym_register] = ACTIONS(1490), - [anon_sym_inline] = ACTIONS(1490), - [anon_sym___inline] = ACTIONS(1490), - [anon_sym___inline__] = ACTIONS(1490), - [anon_sym___forceinline] = ACTIONS(1490), - [anon_sym_thread_local] = ACTIONS(1490), - [anon_sym___thread] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_constexpr] = ACTIONS(1490), - [anon_sym_volatile] = ACTIONS(1490), - [anon_sym_restrict] = ACTIONS(1490), - [anon_sym___restrict__] = ACTIONS(1490), - [anon_sym__Atomic] = ACTIONS(1490), - [anon_sym__Noreturn] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [sym_primitive_type] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_goto] = ACTIONS(1490), - [anon_sym___try] = ACTIONS(1490), - [anon_sym___leave] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1490), - [anon_sym___alignof__] = ACTIONS(1490), - [anon_sym___alignof] = ACTIONS(1490), - [anon_sym__alignof] = ACTIONS(1490), - [anon_sym_alignof] = ACTIONS(1490), - [anon_sym__Alignof] = ACTIONS(1490), - [anon_sym_offsetof] = ACTIONS(1490), - [anon_sym__Generic] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1490), - [anon_sym___asm__] = ACTIONS(1490), - [sym_number_literal] = ACTIONS(1492), - [anon_sym_L_SQUOTE] = ACTIONS(1492), - [anon_sym_u_SQUOTE] = ACTIONS(1492), - [anon_sym_U_SQUOTE] = ACTIONS(1492), - [anon_sym_u8_SQUOTE] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_L_DQUOTE] = ACTIONS(1492), - [anon_sym_u_DQUOTE] = ACTIONS(1492), - [anon_sym_U_DQUOTE] = ACTIONS(1492), - [anon_sym_u8_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - }, - [447] = { + [482] = { [sym_identifier] = ACTIONS(1482), [aux_sym_preproc_include_token1] = ACTIONS(1482), [aux_sym_preproc_def_token1] = ACTIONS(1482), @@ -65842,51 +69516,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1482), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(2395), - [sym_attributed_statement] = STATE(2395), - [sym_labeled_statement] = STATE(2395), - [sym_expression_statement] = STATE(2395), - [sym_if_statement] = STATE(2395), - [sym_switch_statement] = STATE(2395), - [sym_case_statement] = STATE(2395), - [sym_while_statement] = STATE(2395), - [sym_do_statement] = STATE(2395), - [sym_for_statement] = STATE(2395), - [sym_return_statement] = STATE(2395), - [sym_break_statement] = STATE(2395), - [sym_continue_statement] = STATE(2395), - [sym_goto_statement] = STATE(2395), - [sym_seh_try_statement] = STATE(2395), - [sym_seh_leave_statement] = STATE(2395), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), + [483] = { + [sym_attribute_declaration] = STATE(494), + [sym_compound_statement] = STATE(369), + [sym_attributed_statement] = STATE(368), + [sym_labeled_statement] = STATE(359), + [sym_expression_statement] = STATE(356), + [sym_if_statement] = STATE(354), + [sym_switch_statement] = STATE(335), + [sym_case_statement] = STATE(326), + [sym_while_statement] = STATE(319), + [sym_do_statement] = STATE(318), + [sym_for_statement] = STATE(314), + [sym_return_statement] = STATE(305), + [sym_break_statement] = STATE(299), + [sym_continue_statement] = STATE(413), + [sym_goto_statement] = STATE(278), + [sym_seh_try_statement] = STATE(279), + [sym_seh_leave_statement] = STATE(280), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1829), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [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), + }, + [484] = { + [sym_attribute_declaration] = STATE(485), + [sym_compound_statement] = STATE(149), + [sym_attributed_statement] = STATE(149), + [sym_labeled_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym_if_statement] = STATE(149), + [sym_switch_statement] = STATE(149), + [sym_case_statement] = STATE(149), + [sym_while_statement] = STATE(149), + [sym_do_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym_return_statement] = STATE(149), + [sym_break_statement] = STATE(149), + [sym_continue_statement] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym_seh_try_statement] = STATE(149), + [sym_seh_leave_statement] = STATE(149), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [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), + }, + [485] = { + [sym_attribute_declaration] = STATE(475), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(1705), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65894,22 +69762,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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -65939,51 +69807,148 @@ 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(470), - [sym_compound_statement] = STATE(2387), - [sym_attributed_statement] = STATE(2387), - [sym_labeled_statement] = STATE(2387), - [sym_expression_statement] = STATE(2387), - [sym_if_statement] = STATE(2387), - [sym_switch_statement] = STATE(2387), - [sym_case_statement] = STATE(2387), - [sym_while_statement] = STATE(2387), - [sym_do_statement] = STATE(2387), - [sym_for_statement] = STATE(2387), - [sym_return_statement] = STATE(2387), - [sym_break_statement] = STATE(2387), - [sym_continue_statement] = STATE(2387), - [sym_goto_statement] = STATE(2387), - [sym_seh_try_statement] = STATE(2387), - [sym_seh_leave_statement] = STATE(2387), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), + [486] = { + [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), + }, + [487] = { + [sym_attribute_declaration] = STATE(516), + [sym_compound_statement] = STATE(168), + [sym_attributed_statement] = STATE(168), + [sym_labeled_statement] = STATE(168), + [sym_expression_statement] = STATE(168), + [sym_if_statement] = STATE(168), + [sym_switch_statement] = STATE(168), + [sym_case_statement] = STATE(168), + [sym_while_statement] = STATE(168), + [sym_do_statement] = STATE(168), + [sym_for_statement] = STATE(168), + [sym_return_statement] = STATE(168), + [sym_break_statement] = STATE(168), + [sym_continue_statement] = STATE(168), + [sym_goto_statement] = STATE(168), + [sym_seh_try_statement] = STATE(168), + [sym_seh_leave_statement] = STATE(168), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65991,22 +69956,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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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_SEMI] = ACTIONS(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -66036,439 +70001,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [450] = { - [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), - }, - [451] = { - [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), - }, - [452] = { - [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), - }, - [453] = { - [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), - }, - [454] = { - [sym_attribute_declaration] = STATE(473), - [sym_compound_statement] = STATE(350), - [sym_attributed_statement] = STATE(350), - [sym_labeled_statement] = STATE(350), - [sym_expression_statement] = STATE(350), - [sym_if_statement] = STATE(350), - [sym_switch_statement] = STATE(350), - [sym_case_statement] = STATE(350), - [sym_while_statement] = STATE(350), - [sym_do_statement] = STATE(350), - [sym_for_statement] = STATE(350), - [sym_return_statement] = STATE(350), - [sym_break_statement] = STATE(350), - [sym_continue_statement] = STATE(350), - [sym_goto_statement] = STATE(350), - [sym_seh_try_statement] = STATE(350), - [sym_seh_leave_statement] = STATE(350), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(1770), + [488] = { + [sym_attribute_declaration] = STATE(516), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym_seh_try_statement] = STATE(289), + [sym_seh_leave_statement] = STATE(289), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66476,22 +70053,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(1564), - [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(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -66521,51 +70098,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_attribute_declaration] = STATE(454), - [sym_compound_statement] = STATE(243), - [sym_attributed_statement] = STATE(243), - [sym_labeled_statement] = STATE(243), - [sym_expression_statement] = STATE(243), - [sym_if_statement] = STATE(243), - [sym_switch_statement] = STATE(243), - [sym_case_statement] = STATE(243), - [sym_while_statement] = STATE(243), - [sym_do_statement] = STATE(243), - [sym_for_statement] = STATE(243), - [sym_return_statement] = STATE(243), - [sym_break_statement] = STATE(243), - [sym_continue_statement] = STATE(243), - [sym_goto_statement] = STATE(243), - [sym_seh_try_statement] = STATE(243), - [sym_seh_leave_statement] = STATE(243), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(1770), + [489] = { + [sym_attribute_declaration] = STATE(498), + [sym_compound_statement] = STATE(393), + [sym_attributed_statement] = STATE(392), + [sym_labeled_statement] = STATE(387), + [sym_expression_statement] = STATE(384), + [sym_if_statement] = STATE(381), + [sym_switch_statement] = STATE(373), + [sym_case_statement] = STATE(370), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(366), + [sym_for_statement] = STATE(365), + [sym_return_statement] = STATE(364), + [sym_break_statement] = STATE(362), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(357), + [sym_seh_try_statement] = STATE(355), + [sym_seh_leave_statement] = STATE(341), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1607), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66573,22 +70150,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(1564), - [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(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -66618,148 +70195,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym_identifier] = ACTIONS(1498), - [aux_sym_preproc_include_token1] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1498), - [anon_sym_LPAREN2] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym___extension__] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym___attribute__] = ACTIONS(1498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), - [anon_sym___declspec] = ACTIONS(1498), - [anon_sym___cdecl] = ACTIONS(1498), - [anon_sym___clrcall] = ACTIONS(1498), - [anon_sym___stdcall] = ACTIONS(1498), - [anon_sym___fastcall] = ACTIONS(1498), - [anon_sym___thiscall] = ACTIONS(1498), - [anon_sym___vectorcall] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1498), - [anon_sym_unsigned] = ACTIONS(1498), - [anon_sym_long] = ACTIONS(1498), - [anon_sym_short] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_auto] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1498), - [anon_sym___inline] = ACTIONS(1498), - [anon_sym___inline__] = ACTIONS(1498), - [anon_sym___forceinline] = ACTIONS(1498), - [anon_sym_thread_local] = ACTIONS(1498), - [anon_sym___thread] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_constexpr] = ACTIONS(1498), - [anon_sym_volatile] = ACTIONS(1498), - [anon_sym_restrict] = ACTIONS(1498), - [anon_sym___restrict__] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1498), - [anon_sym__Noreturn] = ACTIONS(1498), - [anon_sym_noreturn] = ACTIONS(1498), - [sym_primitive_type] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_goto] = ACTIONS(1498), - [anon_sym___try] = ACTIONS(1498), - [anon_sym___leave] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1498), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1498), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1498), - [anon_sym___asm__] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1500), - [anon_sym_L_SQUOTE] = ACTIONS(1500), - [anon_sym_u_SQUOTE] = ACTIONS(1500), - [anon_sym_U_SQUOTE] = ACTIONS(1500), - [anon_sym_u8_SQUOTE] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_L_DQUOTE] = ACTIONS(1500), - [anon_sym_u_DQUOTE] = ACTIONS(1500), - [anon_sym_U_DQUOTE] = ACTIONS(1500), - [anon_sym_u8_DQUOTE] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1500), - [sym_true] = ACTIONS(1498), - [sym_false] = ACTIONS(1498), - [anon_sym_NULL] = ACTIONS(1498), - [anon_sym_nullptr] = ACTIONS(1498), - [sym_comment] = ACTIONS(3), - }, - [457] = { - [sym_attribute_declaration] = STATE(454), - [sym_compound_statement] = STATE(322), - [sym_attributed_statement] = STATE(322), - [sym_labeled_statement] = STATE(322), - [sym_expression_statement] = STATE(322), - [sym_if_statement] = STATE(322), - [sym_switch_statement] = STATE(322), - [sym_case_statement] = STATE(322), - [sym_while_statement] = STATE(322), - [sym_do_statement] = STATE(322), - [sym_for_statement] = STATE(322), - [sym_return_statement] = STATE(322), - [sym_break_statement] = STATE(322), - [sym_continue_statement] = STATE(322), - [sym_goto_statement] = STATE(322), - [sym_seh_try_statement] = STATE(322), - [sym_seh_leave_statement] = STATE(322), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(1770), + [490] = { + [sym_attribute_declaration] = STATE(485), + [sym_compound_statement] = STATE(92), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym_seh_try_statement] = STATE(92), + [sym_seh_leave_statement] = STATE(92), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1705), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66767,22 +70247,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(1564), - [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(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -66812,51 +70292,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_attribute_declaration] = STATE(411), - [sym_compound_statement] = STATE(189), - [sym_attributed_statement] = STATE(189), - [sym_labeled_statement] = STATE(189), - [sym_expression_statement] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_switch_statement] = STATE(189), - [sym_case_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_do_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_return_statement] = STATE(189), - [sym_break_statement] = STATE(189), - [sym_continue_statement] = STATE(189), - [sym_goto_statement] = STATE(189), - [sym_seh_try_statement] = STATE(189), - [sym_seh_leave_statement] = STATE(189), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(1562), + [491] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(602), + [sym_attributed_statement] = STATE(602), + [sym_labeled_statement] = STATE(602), + [sym_expression_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_switch_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_do_statement] = STATE(602), + [sym_for_statement] = STATE(602), + [sym_return_statement] = STATE(602), + [sym_break_statement] = STATE(602), + [sym_continue_statement] = STATE(602), + [sym_goto_statement] = STATE(602), + [sym_seh_try_statement] = STATE(602), + [sym_seh_leave_statement] = STATE(602), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66864,22 +70344,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(1564), - [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(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), @@ -66909,51 +70389,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_attribute_declaration] = STATE(454), - [sym_compound_statement] = STATE(306), - [sym_attributed_statement] = STATE(306), - [sym_labeled_statement] = STATE(306), - [sym_expression_statement] = STATE(306), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(306), - [sym_case_statement] = STATE(306), - [sym_while_statement] = STATE(306), - [sym_do_statement] = STATE(306), - [sym_for_statement] = STATE(306), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(306), - [sym_continue_statement] = STATE(306), - [sym_goto_statement] = STATE(306), - [sym_seh_try_statement] = STATE(306), - [sym_seh_leave_statement] = STATE(306), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(1770), + [492] = { + [sym_attribute_declaration] = STATE(485), + [sym_compound_statement] = STATE(152), + [sym_attributed_statement] = STATE(152), + [sym_labeled_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym_if_statement] = STATE(152), + [sym_switch_statement] = STATE(152), + [sym_case_statement] = STATE(152), + [sym_while_statement] = STATE(152), + [sym_do_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym_return_statement] = STATE(152), + [sym_break_statement] = STATE(152), + [sym_continue_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym_seh_try_statement] = STATE(152), + [sym_seh_leave_statement] = STATE(152), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2267), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1705), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66961,22 +70441,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(1564), - [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(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -67006,148 +70486,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [460] = { - [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), - }, - [461] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1720), + [493] = { + [sym_attribute_declaration] = STATE(516), + [sym_compound_statement] = STATE(363), + [sym_attributed_statement] = STATE(363), + [sym_labeled_statement] = STATE(363), + [sym_expression_statement] = STATE(363), + [sym_if_statement] = STATE(363), + [sym_switch_statement] = STATE(363), + [sym_case_statement] = STATE(363), + [sym_while_statement] = STATE(363), + [sym_do_statement] = STATE(363), + [sym_for_statement] = STATE(363), + [sym_return_statement] = STATE(363), + [sym_break_statement] = STATE(363), + [sym_continue_statement] = STATE(363), + [sym_goto_statement] = STATE(363), + [sym_seh_try_statement] = STATE(363), + [sym_seh_leave_statement] = STATE(363), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67155,22 +70538,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(1564), - [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(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -67200,51 +70583,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1720), + [494] = { + [sym_attribute_declaration] = STATE(468), + [sym_compound_statement] = STATE(416), + [sym_attributed_statement] = STATE(416), + [sym_labeled_statement] = STATE(416), + [sym_expression_statement] = STATE(416), + [sym_if_statement] = STATE(416), + [sym_switch_statement] = STATE(416), + [sym_case_statement] = STATE(416), + [sym_while_statement] = STATE(416), + [sym_do_statement] = STATE(416), + [sym_for_statement] = STATE(416), + [sym_return_statement] = STATE(416), + [sym_break_statement] = STATE(416), + [sym_continue_statement] = STATE(416), + [sym_goto_statement] = STATE(416), + [sym_seh_try_statement] = STATE(416), + [sym_seh_leave_statement] = STATE(416), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(1829), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67252,22 +70635,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(1564), - [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(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -67297,51 +70680,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [463] = { - [sym_attribute_declaration] = STATE(423), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym_seh_try_statement] = STATE(301), - [sym_seh_leave_statement] = STATE(301), - [sym__expression] = STATE(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1574), + [495] = { + [sym_attribute_declaration] = STATE(495), + [sym_compound_statement] = STATE(304), + [sym_attributed_statement] = STATE(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_case_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(1885), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_case] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym___try] = ACTIONS(1927), + [anon_sym___leave] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1675), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1681), + [anon_sym__Generic] = ACTIONS(1684), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym___asm__] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1693), + [anon_sym_u_SQUOTE] = ACTIONS(1693), + [anon_sym_U_SQUOTE] = ACTIONS(1693), + [anon_sym_u8_SQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_L_DQUOTE] = ACTIONS(1696), + [anon_sym_u_DQUOTE] = ACTIONS(1696), + [anon_sym_U_DQUOTE] = ACTIONS(1696), + [anon_sym_u8_DQUOTE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + }, + [496] = { + [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), + }, + [497] = { + [sym_attribute_declaration] = STATE(516), + [sym_compound_statement] = STATE(331), + [sym_attributed_statement] = STATE(331), + [sym_labeled_statement] = STATE(331), + [sym_expression_statement] = STATE(331), + [sym_if_statement] = STATE(331), + [sym_switch_statement] = STATE(331), + [sym_case_statement] = STATE(331), + [sym_while_statement] = STATE(331), + [sym_do_statement] = STATE(331), + [sym_for_statement] = STATE(331), + [sym_return_statement] = STATE(331), + [sym_break_statement] = STATE(331), + [sym_continue_statement] = STATE(331), + [sym_goto_statement] = STATE(331), + [sym_seh_try_statement] = STATE(331), + [sym_seh_leave_statement] = STATE(331), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67349,22 +70926,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(1101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [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(1103), - [anon_sym___leave] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -67394,245 +70971,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [464] = { - [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), - }, - [465] = { - [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), + [498] = { + [sym_attribute_declaration] = STATE(509), + [sym_compound_statement] = STATE(391), + [sym_attributed_statement] = STATE(391), + [sym_labeled_statement] = STATE(391), + [sym_expression_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_switch_statement] = STATE(391), + [sym_case_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_do_statement] = STATE(391), + [sym_for_statement] = STATE(391), + [sym_return_statement] = STATE(391), + [sym_break_statement] = STATE(391), + [sym_continue_statement] = STATE(391), + [sym_goto_statement] = STATE(391), + [sym_seh_try_statement] = STATE(391), + [sym_seh_leave_statement] = STATE(391), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), + [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), }, - [466] = { - [sym_attribute_declaration] = STATE(411), - [sym_compound_statement] = STATE(171), - [sym_attributed_statement] = STATE(171), - [sym_labeled_statement] = STATE(171), - [sym_expression_statement] = STATE(171), - [sym_if_statement] = STATE(171), - [sym_switch_statement] = STATE(171), - [sym_case_statement] = STATE(171), - [sym_while_statement] = STATE(171), - [sym_do_statement] = STATE(171), - [sym_for_statement] = STATE(171), - [sym_return_statement] = STATE(171), - [sym_break_statement] = STATE(171), - [sym_continue_statement] = STATE(171), - [sym_goto_statement] = STATE(171), - [sym_seh_try_statement] = STATE(171), - [sym_seh_leave_statement] = STATE(171), - [sym__expression] = STATE(1342), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2315), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(411), - [sym_identifier] = ACTIONS(1562), + [499] = { + [sym_attribute_declaration] = STATE(516), + [sym_compound_statement] = STATE(337), + [sym_attributed_statement] = STATE(338), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(340), + [sym_if_statement] = STATE(342), + [sym_switch_statement] = STATE(343), + [sym_case_statement] = STATE(344), + [sym_while_statement] = STATE(345), + [sym_do_statement] = STATE(346), + [sym_for_statement] = STATE(347), + [sym_return_statement] = STATE(348), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(350), + [sym_goto_statement] = STATE(351), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(353), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67640,22 +71120,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(1564), - [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(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -67685,342 +71165,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [467] = { - [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), - }, - [468] = { - [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), - }, - [469] = { - [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), + [500] = { + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym___try] = ACTIONS(1540), + [anon_sym___leave] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), [sym_comment] = ACTIONS(3), }, - [470] = { - [sym_attribute_declaration] = STATE(488), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym_seh_try_statement] = STATE(301), - [sym_seh_leave_statement] = STATE(301), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1566), + [501] = { + [sym_attribute_declaration] = STATE(498), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym_seh_try_statement] = STATE(395), + [sym_seh_leave_statement] = STATE(395), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1607), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68028,22 +71314,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(1564), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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(1157), + [anon_sym___leave] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68073,148 +71359,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [471] = { - [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), + [502] = { + [sym_identifier] = ACTIONS(1560), + [aux_sym_preproc_include_token1] = ACTIONS(1560), + [aux_sym_preproc_def_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token1] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1560), + [sym_preproc_directive] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym___extension__] = ACTIONS(1560), + [anon_sym_typedef] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym___attribute__] = ACTIONS(1560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym___declspec] = ACTIONS(1560), + [anon_sym___cdecl] = ACTIONS(1560), + [anon_sym___clrcall] = ACTIONS(1560), + [anon_sym___stdcall] = ACTIONS(1560), + [anon_sym___fastcall] = ACTIONS(1560), + [anon_sym___thiscall] = ACTIONS(1560), + [anon_sym___vectorcall] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_signed] = ACTIONS(1560), + [anon_sym_unsigned] = ACTIONS(1560), + [anon_sym_long] = ACTIONS(1560), + [anon_sym_short] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_auto] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_inline] = ACTIONS(1560), + [anon_sym___inline] = ACTIONS(1560), + [anon_sym___inline__] = ACTIONS(1560), + [anon_sym___forceinline] = ACTIONS(1560), + [anon_sym_thread_local] = ACTIONS(1560), + [anon_sym___thread] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_constexpr] = ACTIONS(1560), + [anon_sym_volatile] = ACTIONS(1560), + [anon_sym_restrict] = ACTIONS(1560), + [anon_sym___restrict__] = ACTIONS(1560), + [anon_sym__Atomic] = ACTIONS(1560), + [anon_sym__Noreturn] = ACTIONS(1560), + [anon_sym_noreturn] = ACTIONS(1560), + [sym_primitive_type] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_case] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_goto] = ACTIONS(1560), + [anon_sym___try] = ACTIONS(1560), + [anon_sym___leave] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_sizeof] = ACTIONS(1560), + [anon_sym___alignof__] = ACTIONS(1560), + [anon_sym___alignof] = ACTIONS(1560), + [anon_sym__alignof] = ACTIONS(1560), + [anon_sym_alignof] = ACTIONS(1560), + [anon_sym__Alignof] = ACTIONS(1560), + [anon_sym_offsetof] = ACTIONS(1560), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1560), + [anon_sym___asm__] = ACTIONS(1560), + [sym_number_literal] = ACTIONS(1562), + [anon_sym_L_SQUOTE] = ACTIONS(1562), + [anon_sym_u_SQUOTE] = ACTIONS(1562), + [anon_sym_U_SQUOTE] = ACTIONS(1562), + [anon_sym_u8_SQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_L_DQUOTE] = ACTIONS(1562), + [anon_sym_u_DQUOTE] = ACTIONS(1562), + [anon_sym_U_DQUOTE] = ACTIONS(1562), + [anon_sym_u8_DQUOTE] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [anon_sym_NULL] = ACTIONS(1560), + [anon_sym_nullptr] = ACTIONS(1560), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(113), - [sym_attributed_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym_seh_try_statement] = STATE(113), - [sym_seh_leave_statement] = STATE(113), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1720), + [503] = { + [sym_attribute_declaration] = STATE(516), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym_seh_try_statement] = STATE(154), + [sym_seh_leave_statement] = STATE(154), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68222,22 +71508,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(1564), - [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(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68267,148 +71553,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [473] = { - [sym_attribute_declaration] = STATE(473), - [sym_compound_statement] = STATE(350), - [sym_attributed_statement] = STATE(350), - [sym_labeled_statement] = STATE(350), - [sym_expression_statement] = STATE(350), - [sym_if_statement] = STATE(350), - [sym_switch_statement] = STATE(350), - [sym_case_statement] = STATE(350), - [sym_while_statement] = STATE(350), - [sym_do_statement] = STATE(350), - [sym_for_statement] = STATE(350), - [sym_return_statement] = STATE(350), - [sym_break_statement] = STATE(350), - [sym_continue_statement] = STATE(350), - [sym_goto_statement] = STATE(350), - [sym_seh_try_statement] = STATE(350), - [sym_seh_leave_statement] = STATE(350), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(1772), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_case] = ACTIONS(1787), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_goto] = ACTIONS(1811), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1642), - [anon_sym___alignof__] = ACTIONS(1645), - [anon_sym___alignof] = ACTIONS(1645), - [anon_sym__alignof] = ACTIONS(1645), - [anon_sym_alignof] = ACTIONS(1645), - [anon_sym__Alignof] = ACTIONS(1645), - [anon_sym_offsetof] = ACTIONS(1648), - [anon_sym__Generic] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1654), - [anon_sym___asm__] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1660), - [anon_sym_u_SQUOTE] = ACTIONS(1660), - [anon_sym_U_SQUOTE] = ACTIONS(1660), - [anon_sym_u8_SQUOTE] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_NULL] = ACTIONS(1669), - [anon_sym_nullptr] = ACTIONS(1669), + [504] = { + [sym_identifier] = ACTIONS(1552), + [aux_sym_preproc_include_token1] = ACTIONS(1552), + [aux_sym_preproc_def_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token2] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1552), + [sym_preproc_directive] = ACTIONS(1552), + [anon_sym_LPAREN2] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym___extension__] = ACTIONS(1552), + [anon_sym_typedef] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym___attribute__] = ACTIONS(1552), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym___declspec] = ACTIONS(1552), + [anon_sym___cdecl] = ACTIONS(1552), + [anon_sym___clrcall] = ACTIONS(1552), + [anon_sym___stdcall] = ACTIONS(1552), + [anon_sym___fastcall] = ACTIONS(1552), + [anon_sym___thiscall] = ACTIONS(1552), + [anon_sym___vectorcall] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_signed] = ACTIONS(1552), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_auto] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_inline] = ACTIONS(1552), + [anon_sym___inline] = ACTIONS(1552), + [anon_sym___inline__] = ACTIONS(1552), + [anon_sym___forceinline] = ACTIONS(1552), + [anon_sym_thread_local] = ACTIONS(1552), + [anon_sym___thread] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_constexpr] = ACTIONS(1552), + [anon_sym_volatile] = ACTIONS(1552), + [anon_sym_restrict] = ACTIONS(1552), + [anon_sym___restrict__] = ACTIONS(1552), + [anon_sym__Atomic] = ACTIONS(1552), + [anon_sym__Noreturn] = ACTIONS(1552), + [anon_sym_noreturn] = ACTIONS(1552), + [sym_primitive_type] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1552), + [anon_sym___try] = ACTIONS(1552), + [anon_sym___leave] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1554), + [anon_sym_sizeof] = ACTIONS(1552), + [anon_sym___alignof__] = ACTIONS(1552), + [anon_sym___alignof] = ACTIONS(1552), + [anon_sym__alignof] = ACTIONS(1552), + [anon_sym_alignof] = ACTIONS(1552), + [anon_sym__Alignof] = ACTIONS(1552), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1552), + [anon_sym_asm] = ACTIONS(1552), + [anon_sym___asm__] = ACTIONS(1552), + [sym_number_literal] = ACTIONS(1554), + [anon_sym_L_SQUOTE] = ACTIONS(1554), + [anon_sym_u_SQUOTE] = ACTIONS(1554), + [anon_sym_U_SQUOTE] = ACTIONS(1554), + [anon_sym_u8_SQUOTE] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_L_DQUOTE] = ACTIONS(1554), + [anon_sym_u_DQUOTE] = ACTIONS(1554), + [anon_sym_U_DQUOTE] = ACTIONS(1554), + [anon_sym_u8_DQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym_true] = ACTIONS(1552), + [sym_false] = ACTIONS(1552), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, - [474] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(304), - [sym_attributed_statement] = STATE(304), - [sym_labeled_statement] = STATE(304), - [sym_expression_statement] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_switch_statement] = STATE(304), - [sym_case_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_do_statement] = STATE(304), - [sym_for_statement] = STATE(304), - [sym_return_statement] = STATE(304), - [sym_break_statement] = STATE(304), - [sym_continue_statement] = STATE(304), - [sym_goto_statement] = STATE(304), - [sym_seh_try_statement] = STATE(304), - [sym_seh_leave_statement] = STATE(304), - [sym__expression] = STATE(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1574), + [505] = { + [sym_identifier] = ACTIONS(1564), + [aux_sym_preproc_include_token1] = ACTIONS(1564), + [aux_sym_preproc_def_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token1] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1564), + [sym_preproc_directive] = ACTIONS(1564), + [anon_sym_LPAREN2] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym___extension__] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym___attribute__] = ACTIONS(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym___declspec] = ACTIONS(1564), + [anon_sym___cdecl] = ACTIONS(1564), + [anon_sym___clrcall] = ACTIONS(1564), + [anon_sym___stdcall] = ACTIONS(1564), + [anon_sym___fastcall] = ACTIONS(1564), + [anon_sym___thiscall] = ACTIONS(1564), + [anon_sym___vectorcall] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_signed] = ACTIONS(1564), + [anon_sym_unsigned] = ACTIONS(1564), + [anon_sym_long] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_auto] = ACTIONS(1564), + [anon_sym_register] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym___inline] = ACTIONS(1564), + [anon_sym___inline__] = ACTIONS(1564), + [anon_sym___forceinline] = ACTIONS(1564), + [anon_sym_thread_local] = ACTIONS(1564), + [anon_sym___thread] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_constexpr] = ACTIONS(1564), + [anon_sym_volatile] = ACTIONS(1564), + [anon_sym_restrict] = ACTIONS(1564), + [anon_sym___restrict__] = ACTIONS(1564), + [anon_sym__Atomic] = ACTIONS(1564), + [anon_sym__Noreturn] = ACTIONS(1564), + [anon_sym_noreturn] = ACTIONS(1564), + [sym_primitive_type] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_goto] = ACTIONS(1564), + [anon_sym___try] = ACTIONS(1564), + [anon_sym___leave] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_sizeof] = ACTIONS(1564), + [anon_sym___alignof__] = ACTIONS(1564), + [anon_sym___alignof] = ACTIONS(1564), + [anon_sym__alignof] = ACTIONS(1564), + [anon_sym_alignof] = ACTIONS(1564), + [anon_sym__Alignof] = ACTIONS(1564), + [anon_sym_offsetof] = ACTIONS(1564), + [anon_sym__Generic] = ACTIONS(1564), + [anon_sym_asm] = ACTIONS(1564), + [anon_sym___asm__] = ACTIONS(1564), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1566), + [anon_sym_u_SQUOTE] = ACTIONS(1566), + [anon_sym_U_SQUOTE] = ACTIONS(1566), + [anon_sym_u8_SQUOTE] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_L_DQUOTE] = ACTIONS(1566), + [anon_sym_u_DQUOTE] = ACTIONS(1566), + [anon_sym_U_DQUOTE] = ACTIONS(1566), + [anon_sym_u8_DQUOTE] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [anon_sym_NULL] = ACTIONS(1564), + [anon_sym_nullptr] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + }, + [506] = { + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), + [sym_comment] = ACTIONS(3), + }, + [507] = { + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym___try] = ACTIONS(1528), + [anon_sym___leave] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [508] = { + [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), + }, + [509] = { + [sym_attribute_declaration] = STATE(509), + [sym_compound_statement] = STATE(391), + [sym_attributed_statement] = STATE(391), + [sym_labeled_statement] = STATE(391), + [sym_expression_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_switch_statement] = STATE(391), + [sym_case_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_do_statement] = STATE(391), + [sym_for_statement] = STATE(391), + [sym_return_statement] = STATE(391), + [sym_break_statement] = STATE(391), + [sym_continue_statement] = STATE(391), + [sym_goto_statement] = STATE(391), + [sym_seh_try_statement] = STATE(391), + [sym_seh_leave_statement] = STATE(391), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_switch] = ACTIONS(1636), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_do] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1660), + [anon_sym_goto] = ACTIONS(1663), + [anon_sym___try] = ACTIONS(1956), + [anon_sym___leave] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_sizeof] = ACTIONS(1675), + [anon_sym___alignof__] = ACTIONS(1678), + [anon_sym___alignof] = ACTIONS(1678), + [anon_sym__alignof] = ACTIONS(1678), + [anon_sym_alignof] = ACTIONS(1678), + [anon_sym__Alignof] = ACTIONS(1678), + [anon_sym_offsetof] = ACTIONS(1681), + [anon_sym__Generic] = ACTIONS(1684), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym___asm__] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1693), + [anon_sym_u_SQUOTE] = ACTIONS(1693), + [anon_sym_U_SQUOTE] = ACTIONS(1693), + [anon_sym_u8_SQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_L_DQUOTE] = ACTIONS(1696), + [anon_sym_u_DQUOTE] = ACTIONS(1696), + [anon_sym_U_DQUOTE] = ACTIONS(1696), + [anon_sym_u8_DQUOTE] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [anon_sym_NULL] = ACTIONS(1702), + [anon_sym_nullptr] = ACTIONS(1702), + [sym_comment] = ACTIONS(3), + }, + [510] = { + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym___try] = ACTIONS(1532), + [anon_sym___leave] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + }, + [511] = { + [sym_attribute_declaration] = STATE(516), + [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(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68416,22 +72284,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(1101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [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(1103), - [anon_sym___leave] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68461,783 +72329,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [475] = { - [sym_identifier] = ACTIONS(1526), - [aux_sym_preproc_include_token1] = ACTIONS(1526), - [aux_sym_preproc_def_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token1] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), - [sym_preproc_directive] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(1526), - [anon_sym_typedef] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym___attribute__] = ACTIONS(1526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), - [anon_sym___declspec] = ACTIONS(1526), - [anon_sym___cdecl] = ACTIONS(1526), - [anon_sym___clrcall] = ACTIONS(1526), - [anon_sym___stdcall] = ACTIONS(1526), - [anon_sym___fastcall] = ACTIONS(1526), - [anon_sym___thiscall] = ACTIONS(1526), - [anon_sym___vectorcall] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_signed] = ACTIONS(1526), - [anon_sym_unsigned] = ACTIONS(1526), - [anon_sym_long] = ACTIONS(1526), - [anon_sym_short] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_auto] = ACTIONS(1526), - [anon_sym_register] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym___inline] = ACTIONS(1526), - [anon_sym___inline__] = ACTIONS(1526), - [anon_sym___forceinline] = ACTIONS(1526), - [anon_sym_thread_local] = ACTIONS(1526), - [anon_sym___thread] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_constexpr] = ACTIONS(1526), - [anon_sym_volatile] = ACTIONS(1526), - [anon_sym_restrict] = ACTIONS(1526), - [anon_sym___restrict__] = ACTIONS(1526), - [anon_sym__Atomic] = ACTIONS(1526), - [anon_sym__Noreturn] = ACTIONS(1526), - [anon_sym_noreturn] = ACTIONS(1526), - [sym_primitive_type] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_switch] = ACTIONS(1526), - [anon_sym_case] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_goto] = ACTIONS(1526), - [anon_sym___try] = ACTIONS(1526), - [anon_sym___leave] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(1526), - [anon_sym___alignof] = ACTIONS(1526), - [anon_sym__alignof] = ACTIONS(1526), - [anon_sym_alignof] = ACTIONS(1526), - [anon_sym__Alignof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1526), - [anon_sym__Generic] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1526), - [anon_sym___asm__] = ACTIONS(1526), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1528), - [anon_sym_u_SQUOTE] = ACTIONS(1528), - [anon_sym_U_SQUOTE] = ACTIONS(1528), - [anon_sym_u8_SQUOTE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_L_DQUOTE] = ACTIONS(1528), - [anon_sym_u_DQUOTE] = ACTIONS(1528), - [anon_sym_U_DQUOTE] = ACTIONS(1528), - [anon_sym_u8_DQUOTE] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [anon_sym_NULL] = ACTIONS(1526), - [anon_sym_nullptr] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - }, - [476] = { - [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), - }, - [477] = { - [sym_identifier] = ACTIONS(1522), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym___extension__] = ACTIONS(1522), - [anon_sym_typedef] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), - [anon_sym___declspec] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_signed] = ACTIONS(1522), - [anon_sym_unsigned] = ACTIONS(1522), - [anon_sym_long] = ACTIONS(1522), - [anon_sym_short] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_auto] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym___inline] = ACTIONS(1522), - [anon_sym___inline__] = ACTIONS(1522), - [anon_sym___forceinline] = ACTIONS(1522), - [anon_sym_thread_local] = ACTIONS(1522), - [anon_sym___thread] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_constexpr] = ACTIONS(1522), - [anon_sym_volatile] = ACTIONS(1522), - [anon_sym_restrict] = ACTIONS(1522), - [anon_sym___restrict__] = ACTIONS(1522), - [anon_sym__Atomic] = ACTIONS(1522), - [anon_sym__Noreturn] = ACTIONS(1522), - [anon_sym_noreturn] = ACTIONS(1522), - [sym_primitive_type] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_goto] = ACTIONS(1522), - [anon_sym___try] = ACTIONS(1522), - [anon_sym___leave] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [anon_sym_sizeof] = ACTIONS(1522), - [anon_sym___alignof__] = ACTIONS(1522), - [anon_sym___alignof] = ACTIONS(1522), - [anon_sym__alignof] = ACTIONS(1522), - [anon_sym_alignof] = ACTIONS(1522), - [anon_sym__Alignof] = ACTIONS(1522), - [anon_sym_offsetof] = ACTIONS(1522), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1522), - [anon_sym___asm__] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(1524), - [anon_sym_L_SQUOTE] = ACTIONS(1524), - [anon_sym_u_SQUOTE] = ACTIONS(1524), - [anon_sym_U_SQUOTE] = ACTIONS(1524), - [anon_sym_u8_SQUOTE] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_L_DQUOTE] = ACTIONS(1524), - [anon_sym_u_DQUOTE] = ACTIONS(1524), - [anon_sym_U_DQUOTE] = ACTIONS(1524), - [anon_sym_u8_DQUOTE] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - }, - [478] = { - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token1] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), - [sym_preproc_directive] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym___extension__] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___cdecl] = ACTIONS(1518), - [anon_sym___clrcall] = ACTIONS(1518), - [anon_sym___stdcall] = ACTIONS(1518), - [anon_sym___fastcall] = ACTIONS(1518), - [anon_sym___thiscall] = ACTIONS(1518), - [anon_sym___vectorcall] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_auto] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym___inline] = ACTIONS(1518), - [anon_sym___inline__] = ACTIONS(1518), - [anon_sym___forceinline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym___thread] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym___restrict__] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym__Noreturn] = ACTIONS(1518), - [anon_sym_noreturn] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym___try] = ACTIONS(1518), - [anon_sym___leave] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [anon_sym___alignof__] = ACTIONS(1518), - [anon_sym___alignof] = ACTIONS(1518), - [anon_sym__alignof] = ACTIONS(1518), - [anon_sym_alignof] = ACTIONS(1518), - [anon_sym__Alignof] = ACTIONS(1518), - [anon_sym_offsetof] = ACTIONS(1518), - [anon_sym__Generic] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1518), - [anon_sym___asm__] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [anon_sym_NULL] = ACTIONS(1518), - [anon_sym_nullptr] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - }, - [479] = { - [sym__expression] = STATE(996), - [sym__expression_not_binary] = STATE(1073), - [sym__string] = STATE(1073), - [sym_conditional_expression] = STATE(1073), - [sym_assignment_expression] = STATE(1073), - [sym_pointer_expression] = STATE(1073), - [sym_unary_expression] = STATE(1073), - [sym_binary_expression] = STATE(1073), - [sym_update_expression] = STATE(1073), - [sym_cast_expression] = STATE(1073), - [sym_sizeof_expression] = STATE(1073), - [sym_alignof_expression] = STATE(1073), - [sym_offsetof_expression] = STATE(1073), - [sym_generic_expression] = STATE(1073), - [sym_subscript_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_gnu_asm_expression] = STATE(1073), - [sym_field_expression] = STATE(1073), - [sym_compound_literal_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_initializer_list] = STATE(1053), - [sym_char_literal] = STATE(1073), - [sym_concatenated_string] = STATE(1073), - [sym_string_literal] = STATE(910), - [sym_null] = STATE(1073), - [sym_identifier] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1540), - [aux_sym_preproc_if_token2] = ACTIONS(1540), - [aux_sym_preproc_else_token1] = ACTIONS(1540), - [aux_sym_preproc_elif_token1] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_STAR_EQ] = ACTIONS(1540), - [anon_sym_SLASH_EQ] = ACTIONS(1540), - [anon_sym_PERCENT_EQ] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1540), - [anon_sym_DASH_EQ] = ACTIONS(1540), - [anon_sym_LT_LT_EQ] = ACTIONS(1540), - [anon_sym_GT_GT_EQ] = ACTIONS(1540), - [anon_sym_AMP_EQ] = ACTIONS(1540), - [anon_sym_CARET_EQ] = ACTIONS(1540), - [anon_sym_PIPE_EQ] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1826), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - }, - [480] = { - [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), - }, - [481] = { - [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), + [512] = { + [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), }, - [482] = { - [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), + [513] = { + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, - [483] = { + [514] = { [sym_identifier] = ACTIONS(1454), [aux_sym_preproc_include_token1] = ACTIONS(1454), [aux_sym_preproc_def_token1] = ACTIONS(1454), @@ -69290,149 +72576,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [484] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(311), - [sym_attributed_statement] = STATE(313), - [sym_labeled_statement] = STATE(314), - [sym_expression_statement] = STATE(316), - [sym_if_statement] = STATE(317), - [sym_switch_statement] = STATE(318), - [sym_case_statement] = STATE(330), - [sym_while_statement] = STATE(331), - [sym_do_statement] = STATE(336), - [sym_for_statement] = STATE(338), - [sym_return_statement] = STATE(346), - [sym_break_statement] = STATE(347), - [sym_continue_statement] = STATE(365), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(368), - [sym_seh_leave_statement] = STATE(369), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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), + [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), }, - [485] = { - [sym_attribute_declaration] = STATE(470), + [515] = { + [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), + }, + [516] = { + [sym_attribute_declaration] = STATE(495), [sym_compound_statement] = STATE(304), [sym_attributed_statement] = STATE(304), [sym_labeled_statement] = STATE(304), @@ -69449,227 +72735,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(304), [sym_seh_try_statement] = STATE(304), [sym_seh_leave_statement] = STATE(304), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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_comment] = ACTIONS(3), - }, - [486] = { - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___extension__] = ACTIONS(1514), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym___inline] = ACTIONS(1514), - [anon_sym___inline__] = ACTIONS(1514), - [anon_sym___forceinline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym___thread] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym___restrict__] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym__Noreturn] = ACTIONS(1514), - [anon_sym_noreturn] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym___try] = ACTIONS(1514), - [anon_sym___leave] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [anon_sym___alignof__] = ACTIONS(1514), - [anon_sym___alignof] = ACTIONS(1514), - [anon_sym__alignof] = ACTIONS(1514), - [anon_sym_alignof] = ACTIONS(1514), - [anon_sym__Alignof] = ACTIONS(1514), - [anon_sym_offsetof] = ACTIONS(1514), - [anon_sym__Generic] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1514), - [anon_sym___asm__] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [anon_sym_NULL] = ACTIONS(1514), - [anon_sym_nullptr] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - }, - [487] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(311), - [sym_attributed_statement] = STATE(313), - [sym_labeled_statement] = STATE(314), - [sym_expression_statement] = STATE(316), - [sym_if_statement] = STATE(317), - [sym_switch_statement] = STATE(318), - [sym_case_statement] = STATE(330), - [sym_while_statement] = STATE(331), - [sym_do_statement] = STATE(336), - [sym_for_statement] = STATE(338), - [sym_return_statement] = STATE(346), - [sym_break_statement] = STATE(347), - [sym_continue_statement] = STATE(365), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(368), - [sym_seh_leave_statement] = STATE(369), - [sym__expression] = STATE(1348), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2343), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1574), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2332), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(1883), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69677,22 +72769,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(1101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), - [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(1103), - [anon_sym___leave] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(651), + [anon_sym_while] = ACTIONS(653), + [anon_sym_do] = ACTIONS(655), + [anon_sym_for] = ACTIONS(657), + [anon_sym_return] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(663), + [anon_sym_goto] = ACTIONS(665), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(669), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69722,205 +72814,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_attribute_declaration] = STATE(488), - [sym_compound_statement] = STATE(301), - [sym_attributed_statement] = STATE(301), - [sym_labeled_statement] = STATE(301), - [sym_expression_statement] = STATE(301), - [sym_if_statement] = STATE(301), - [sym_switch_statement] = STATE(301), - [sym_case_statement] = STATE(301), - [sym_while_statement] = STATE(301), - [sym_do_statement] = STATE(301), - [sym_for_statement] = STATE(301), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(301), - [sym_continue_statement] = STATE(301), - [sym_goto_statement] = STATE(301), - [sym_seh_try_statement] = STATE(301), - [sym_seh_leave_statement] = STATE(301), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1696), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_goto] = ACTIONS(1711), - [anon_sym___try] = ACTIONS(1864), - [anon_sym___leave] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1642), - [anon_sym___alignof__] = ACTIONS(1645), - [anon_sym___alignof] = ACTIONS(1645), - [anon_sym__alignof] = ACTIONS(1645), - [anon_sym_alignof] = ACTIONS(1645), - [anon_sym__Alignof] = ACTIONS(1645), - [anon_sym_offsetof] = ACTIONS(1648), - [anon_sym__Generic] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1654), - [anon_sym___asm__] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1660), - [anon_sym_u_SQUOTE] = ACTIONS(1660), - [anon_sym_U_SQUOTE] = ACTIONS(1660), - [anon_sym_u8_SQUOTE] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_NULL] = ACTIONS(1669), - [anon_sym_nullptr] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - }, - [489] = { - [sym_identifier] = ACTIONS(1510), - [aux_sym_preproc_include_token1] = ACTIONS(1510), - [aux_sym_preproc_def_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token1] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym___extension__] = ACTIONS(1510), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym___attribute__] = ACTIONS(1510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), - [anon_sym___declspec] = ACTIONS(1510), - [anon_sym___cdecl] = ACTIONS(1510), - [anon_sym___clrcall] = ACTIONS(1510), - [anon_sym___stdcall] = ACTIONS(1510), - [anon_sym___fastcall] = ACTIONS(1510), - [anon_sym___thiscall] = ACTIONS(1510), - [anon_sym___vectorcall] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym___inline] = ACTIONS(1510), - [anon_sym___inline__] = ACTIONS(1510), - [anon_sym___forceinline] = ACTIONS(1510), - [anon_sym_thread_local] = ACTIONS(1510), - [anon_sym___thread] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_constexpr] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym___restrict__] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym__Noreturn] = ACTIONS(1510), - [anon_sym_noreturn] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym___try] = ACTIONS(1510), - [anon_sym___leave] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1510), - [anon_sym___alignof__] = ACTIONS(1510), - [anon_sym___alignof] = ACTIONS(1510), - [anon_sym__alignof] = ACTIONS(1510), - [anon_sym_alignof] = ACTIONS(1510), - [anon_sym__Alignof] = ACTIONS(1510), - [anon_sym_offsetof] = ACTIONS(1510), - [anon_sym__Generic] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1510), - [anon_sym___asm__] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1512), - [anon_sym_u_SQUOTE] = ACTIONS(1512), - [anon_sym_U_SQUOTE] = ACTIONS(1512), - [anon_sym_u8_SQUOTE] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_L_DQUOTE] = ACTIONS(1512), - [anon_sym_u_DQUOTE] = ACTIONS(1512), - [anon_sym_U_DQUOTE] = ACTIONS(1512), - [anon_sym_u8_DQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [anon_sym_NULL] = ACTIONS(1510), - [anon_sym_nullptr] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - }, - [490] = { + [517] = { [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), @@ -69945,7 +72844,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -70013,205 +72911,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym_identifier] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), - [sym_preproc_directive] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym___extension__] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym___attribute__] = ACTIONS(1506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), - [anon_sym___declspec] = ACTIONS(1506), - [anon_sym___cdecl] = ACTIONS(1506), - [anon_sym___clrcall] = ACTIONS(1506), - [anon_sym___stdcall] = ACTIONS(1506), - [anon_sym___fastcall] = ACTIONS(1506), - [anon_sym___thiscall] = ACTIONS(1506), - [anon_sym___vectorcall] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_signed] = ACTIONS(1506), - [anon_sym_unsigned] = ACTIONS(1506), - [anon_sym_long] = ACTIONS(1506), - [anon_sym_short] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_auto] = ACTIONS(1506), - [anon_sym_register] = ACTIONS(1506), - [anon_sym_inline] = ACTIONS(1506), - [anon_sym___inline] = ACTIONS(1506), - [anon_sym___inline__] = ACTIONS(1506), - [anon_sym___forceinline] = ACTIONS(1506), - [anon_sym_thread_local] = ACTIONS(1506), - [anon_sym___thread] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_constexpr] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1506), - [anon_sym_restrict] = ACTIONS(1506), - [anon_sym___restrict__] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1506), - [anon_sym__Noreturn] = ACTIONS(1506), - [anon_sym_noreturn] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1506), - [anon_sym___try] = ACTIONS(1506), - [anon_sym___leave] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1506), - [anon_sym___alignof__] = ACTIONS(1506), - [anon_sym___alignof] = ACTIONS(1506), - [anon_sym__alignof] = ACTIONS(1506), - [anon_sym_alignof] = ACTIONS(1506), - [anon_sym__Alignof] = ACTIONS(1506), - [anon_sym_offsetof] = ACTIONS(1506), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1506), - [anon_sym___asm__] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1508), - [anon_sym_u_SQUOTE] = ACTIONS(1508), - [anon_sym_U_SQUOTE] = ACTIONS(1508), - [anon_sym_u8_SQUOTE] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_L_DQUOTE] = ACTIONS(1508), - [anon_sym_u_DQUOTE] = ACTIONS(1508), - [anon_sym_U_DQUOTE] = ACTIONS(1508), - [anon_sym_u8_DQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [anon_sym_NULL] = ACTIONS(1506), - [anon_sym_nullptr] = ACTIONS(1506), + [518] = { + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token2] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym___try] = ACTIONS(1544), + [anon_sym___leave] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_identifier] = ACTIONS(1494), - [aux_sym_preproc_include_token1] = ACTIONS(1494), - [aux_sym_preproc_def_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token1] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), - [sym_preproc_directive] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym___extension__] = ACTIONS(1494), - [anon_sym_typedef] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym___attribute__] = ACTIONS(1494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), - [anon_sym___declspec] = ACTIONS(1494), - [anon_sym___cdecl] = ACTIONS(1494), - [anon_sym___clrcall] = ACTIONS(1494), - [anon_sym___stdcall] = ACTIONS(1494), - [anon_sym___fastcall] = ACTIONS(1494), - [anon_sym___thiscall] = ACTIONS(1494), - [anon_sym___vectorcall] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_signed] = ACTIONS(1494), - [anon_sym_unsigned] = ACTIONS(1494), - [anon_sym_long] = ACTIONS(1494), - [anon_sym_short] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_auto] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1494), - [anon_sym_inline] = ACTIONS(1494), - [anon_sym___inline] = ACTIONS(1494), - [anon_sym___inline__] = ACTIONS(1494), - [anon_sym___forceinline] = ACTIONS(1494), - [anon_sym_thread_local] = ACTIONS(1494), - [anon_sym___thread] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_constexpr] = ACTIONS(1494), - [anon_sym_volatile] = ACTIONS(1494), - [anon_sym_restrict] = ACTIONS(1494), - [anon_sym___restrict__] = ACTIONS(1494), - [anon_sym__Atomic] = ACTIONS(1494), - [anon_sym__Noreturn] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [sym_primitive_type] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_do] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_goto] = ACTIONS(1494), - [anon_sym___try] = ACTIONS(1494), - [anon_sym___leave] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1496), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym___alignof__] = ACTIONS(1494), - [anon_sym___alignof] = ACTIONS(1494), - [anon_sym__alignof] = ACTIONS(1494), - [anon_sym_alignof] = ACTIONS(1494), - [anon_sym__Alignof] = ACTIONS(1494), - [anon_sym_offsetof] = ACTIONS(1494), - [anon_sym__Generic] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1494), - [anon_sym___asm__] = ACTIONS(1494), - [sym_number_literal] = ACTIONS(1496), - [anon_sym_L_SQUOTE] = ACTIONS(1496), - [anon_sym_u_SQUOTE] = ACTIONS(1496), - [anon_sym_U_SQUOTE] = ACTIONS(1496), - [anon_sym_u8_SQUOTE] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_L_DQUOTE] = ACTIONS(1496), - [anon_sym_u_DQUOTE] = ACTIONS(1496), - [anon_sym_U_DQUOTE] = ACTIONS(1496), - [anon_sym_u8_DQUOTE] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1496), - [sym_true] = ACTIONS(1494), - [sym_false] = ACTIONS(1494), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), + [519] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(2466), + [sym_attributed_statement] = STATE(2466), + [sym_labeled_statement] = STATE(2466), + [sym_expression_statement] = STATE(2466), + [sym_if_statement] = STATE(2466), + [sym_switch_statement] = STATE(2466), + [sym_case_statement] = STATE(2466), + [sym_while_statement] = STATE(2466), + [sym_do_statement] = STATE(2466), + [sym_for_statement] = STATE(2466), + [sym_return_statement] = STATE(2466), + [sym_break_statement] = STATE(2466), + [sym_continue_statement] = STATE(2466), + [sym_goto_statement] = STATE(2466), + [sym_seh_try_statement] = STATE(2466), + [sym_seh_leave_statement] = STATE(2466), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), }, - [493] = { + [520] = { + [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), + }, + [521] = { + [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), + }, + [522] = { + [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), + }, + [523] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(2351), + [sym_attributed_statement] = STATE(2351), + [sym_labeled_statement] = STATE(2351), + [sym_expression_statement] = STATE(2351), + [sym_if_statement] = STATE(2351), + [sym_switch_statement] = STATE(2351), + [sym_case_statement] = STATE(2351), + [sym_while_statement] = STATE(2351), + [sym_do_statement] = STATE(2351), + [sym_for_statement] = STATE(2351), + [sym_return_statement] = STATE(2351), + [sym_break_statement] = STATE(2351), + [sym_continue_statement] = STATE(2351), + [sym_goto_statement] = STATE(2351), + [sym_seh_try_statement] = STATE(2351), + [sym_seh_leave_statement] = STATE(2351), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), + }, + [524] = { [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), @@ -70236,7 +73523,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -70304,148 +73590,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym_attribute_declaration] = STATE(454), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(269), - [sym_labeled_statement] = STATE(259), - [sym_expression_statement] = STATE(273), - [sym_if_statement] = STATE(274), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(278), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(280), - [sym_for_statement] = STATE(283), - [sym_return_statement] = STATE(287), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(289), - [sym_goto_statement] = STATE(290), - [sym_seh_try_statement] = STATE(291), - [sym_seh_leave_statement] = STATE(294), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1564), - [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), + [525] = { + [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), }, - [495] = { - [sym_attribute_declaration] = STATE(454), - [sym_compound_statement] = STATE(255), - [sym_attributed_statement] = STATE(255), - [sym_labeled_statement] = STATE(255), - [sym_expression_statement] = STATE(255), - [sym_if_statement] = STATE(255), - [sym_switch_statement] = STATE(255), - [sym_case_statement] = STATE(255), - [sym_while_statement] = STATE(255), - [sym_do_statement] = STATE(255), - [sym_for_statement] = STATE(255), - [sym_return_statement] = STATE(255), - [sym_break_statement] = STATE(255), - [sym_continue_statement] = STATE(255), - [sym_goto_statement] = STATE(255), - [sym_seh_try_statement] = STATE(255), - [sym_seh_leave_statement] = STATE(255), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(454), - [sym_identifier] = ACTIONS(1770), + [526] = { + [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), + }, + [527] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(2448), + [sym_attributed_statement] = STATE(2448), + [sym_labeled_statement] = STATE(2448), + [sym_expression_statement] = STATE(2448), + [sym_if_statement] = STATE(2448), + [sym_switch_statement] = STATE(2448), + [sym_case_statement] = STATE(2448), + [sym_while_statement] = STATE(2448), + [sym_do_statement] = STATE(2448), + [sym_for_statement] = STATE(2448), + [sym_return_statement] = STATE(2448), + [sym_break_statement] = STATE(2448), + [sym_continue_statement] = STATE(2448), + [sym_goto_statement] = STATE(2448), + [sym_seh_try_statement] = STATE(2448), + [sym_seh_leave_statement] = STATE(2448), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70454,20 +73837,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(1564), - [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_LBRACK_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), @@ -70498,148 +73881,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym_identifier] = ACTIONS(1502), - [aux_sym_preproc_include_token1] = ACTIONS(1502), - [aux_sym_preproc_def_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token1] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), - [sym_preproc_directive] = ACTIONS(1502), - [anon_sym_LPAREN2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym___extension__] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym___attribute__] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), - [anon_sym___declspec] = ACTIONS(1502), - [anon_sym___cdecl] = ACTIONS(1502), - [anon_sym___clrcall] = ACTIONS(1502), - [anon_sym___stdcall] = ACTIONS(1502), - [anon_sym___fastcall] = ACTIONS(1502), - [anon_sym___thiscall] = ACTIONS(1502), - [anon_sym___vectorcall] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1502), - [anon_sym_unsigned] = ACTIONS(1502), - [anon_sym_long] = ACTIONS(1502), - [anon_sym_short] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_auto] = ACTIONS(1502), - [anon_sym_register] = ACTIONS(1502), - [anon_sym_inline] = ACTIONS(1502), - [anon_sym___inline] = ACTIONS(1502), - [anon_sym___inline__] = ACTIONS(1502), - [anon_sym___forceinline] = ACTIONS(1502), - [anon_sym_thread_local] = ACTIONS(1502), - [anon_sym___thread] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_constexpr] = ACTIONS(1502), - [anon_sym_volatile] = ACTIONS(1502), - [anon_sym_restrict] = ACTIONS(1502), - [anon_sym___restrict__] = ACTIONS(1502), - [anon_sym__Atomic] = ACTIONS(1502), - [anon_sym__Noreturn] = ACTIONS(1502), - [anon_sym_noreturn] = ACTIONS(1502), - [sym_primitive_type] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_do] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_goto] = ACTIONS(1502), - [anon_sym___try] = ACTIONS(1502), - [anon_sym___leave] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1502), - [anon_sym___alignof__] = ACTIONS(1502), - [anon_sym___alignof] = ACTIONS(1502), - [anon_sym__alignof] = ACTIONS(1502), - [anon_sym_alignof] = ACTIONS(1502), - [anon_sym__Alignof] = ACTIONS(1502), - [anon_sym_offsetof] = ACTIONS(1502), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1502), - [anon_sym___asm__] = ACTIONS(1502), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1504), - [anon_sym_u_SQUOTE] = ACTIONS(1504), - [anon_sym_U_SQUOTE] = ACTIONS(1504), - [anon_sym_u8_SQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_L_DQUOTE] = ACTIONS(1504), - [anon_sym_u_DQUOTE] = ACTIONS(1504), - [anon_sym_U_DQUOTE] = ACTIONS(1504), - [anon_sym_u8_DQUOTE] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym_true] = ACTIONS(1502), - [sym_false] = ACTIONS(1502), - [anon_sym_NULL] = ACTIONS(1502), - [anon_sym_nullptr] = ACTIONS(1502), + [528] = { + [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), }, - [497] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(136), - [sym_attributed_statement] = STATE(136), - [sym_labeled_statement] = STATE(136), - [sym_expression_statement] = STATE(136), - [sym_if_statement] = STATE(136), - [sym_switch_statement] = STATE(136), - [sym_case_statement] = STATE(136), - [sym_while_statement] = STATE(136), - [sym_do_statement] = STATE(136), - [sym_for_statement] = STATE(136), - [sym_return_statement] = STATE(136), - [sym_break_statement] = STATE(136), - [sym_continue_statement] = STATE(136), - [sym_goto_statement] = STATE(136), - [sym_seh_try_statement] = STATE(136), - [sym_seh_leave_statement] = STATE(136), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1720), + [529] = { + [sym_attribute_declaration] = STATE(498), + [sym_compound_statement] = STATE(160), + [sym_attributed_statement] = STATE(160), + [sym_labeled_statement] = STATE(160), + [sym_expression_statement] = STATE(160), + [sym_if_statement] = STATE(160), + [sym_switch_statement] = STATE(160), + [sym_case_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_do_statement] = STATE(160), + [sym_for_statement] = STATE(160), + [sym_return_statement] = STATE(160), + [sym_break_statement] = STATE(160), + [sym_continue_statement] = STATE(160), + [sym_goto_statement] = STATE(160), + [sym_seh_try_statement] = STATE(160), + [sym_seh_leave_statement] = STATE(160), + [sym__expression] = STATE(1391), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2303), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1607), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70647,290 +74030,96 @@ 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(1564), - [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), - }, - [498] = { - [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), - }, - [499] = { - [sym_attribute_declaration] = STATE(499), - [sym_compound_statement] = STATE(97), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_case_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(499), - [sym_identifier] = ACTIONS(1867), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1909), - [anon_sym___leave] = ACTIONS(1912), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1642), - [anon_sym___alignof__] = ACTIONS(1645), - [anon_sym___alignof] = ACTIONS(1645), - [anon_sym__alignof] = ACTIONS(1645), - [anon_sym_alignof] = ACTIONS(1645), - [anon_sym__Alignof] = ACTIONS(1645), - [anon_sym_offsetof] = ACTIONS(1648), - [anon_sym__Generic] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1654), - [anon_sym___asm__] = ACTIONS(1654), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1660), - [anon_sym_u_SQUOTE] = ACTIONS(1660), - [anon_sym_U_SQUOTE] = ACTIONS(1660), - [anon_sym_u8_SQUOTE] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [anon_sym_NULL] = ACTIONS(1669), - [anon_sym_nullptr] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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(1157), + [anon_sym___leave] = ACTIONS(1159), + [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), }, - [500] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(285), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym_seh_try_statement] = STATE(285), - [sym_seh_leave_statement] = STATE(285), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), + [530] = { + [sym_attribute_declaration] = STATE(458), + [sym_compound_statement] = STATE(2457), + [sym_attributed_statement] = STATE(2457), + [sym_labeled_statement] = STATE(2457), + [sym_expression_statement] = STATE(2457), + [sym_if_statement] = STATE(2457), + [sym_switch_statement] = STATE(2457), + [sym_case_statement] = STATE(2457), + [sym_while_statement] = STATE(2457), + [sym_do_statement] = STATE(2457), + [sym_for_statement] = STATE(2457), + [sym_return_statement] = STATE(2457), + [sym_break_statement] = STATE(2457), + [sym_continue_statement] = STATE(2457), + [sym_goto_statement] = STATE(2457), + [sym_seh_try_statement] = STATE(2457), + [sym_seh_leave_statement] = STATE(2457), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(458), + [sym_identifier] = ACTIONS(1597), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70939,20 +74128,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(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1263), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1603), + [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), @@ -70983,51 +74172,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [501] = { - [sym_attribute_declaration] = STATE(432), - [sym_compound_statement] = STATE(132), - [sym_attributed_statement] = STATE(129), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(126), - [sym_if_statement] = STATE(125), - [sym_switch_statement] = STATE(124), - [sym_case_statement] = STATE(123), - [sym_while_statement] = STATE(122), - [sym_do_statement] = STATE(121), - [sym_for_statement] = STATE(120), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(117), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(114), - [sym_seh_try_statement] = STATE(108), - [sym_seh_leave_statement] = STATE(106), - [sym__expression] = STATE(1286), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2150), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(1720), + [531] = { + [sym_attribute_declaration] = STATE(494), + [sym_compound_statement] = STATE(324), + [sym_attributed_statement] = STATE(324), + [sym_labeled_statement] = STATE(324), + [sym_expression_statement] = STATE(324), + [sym_if_statement] = STATE(324), + [sym_switch_statement] = STATE(324), + [sym_case_statement] = STATE(324), + [sym_while_statement] = STATE(324), + [sym_do_statement] = STATE(324), + [sym_for_statement] = STATE(324), + [sym_return_statement] = STATE(324), + [sym_break_statement] = STATE(324), + [sym_continue_statement] = STATE(324), + [sym_goto_statement] = STATE(324), + [sym_seh_try_statement] = STATE(324), + [sym_seh_leave_statement] = STATE(324), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1829), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71035,22 +74224,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(1564), - [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(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1599), + [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), @@ -71080,148 +74269,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [502] = { - [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), + [532] = { + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token2] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym___try] = ACTIONS(1532), + [anon_sym___leave] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), [sym_comment] = ACTIONS(3), }, - [503] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(2217), - [sym_attributed_statement] = STATE(2217), - [sym_labeled_statement] = STATE(2217), - [sym_expression_statement] = STATE(2217), - [sym_if_statement] = STATE(2217), - [sym_switch_statement] = STATE(2217), - [sym_case_statement] = STATE(2217), - [sym_while_statement] = STATE(2217), - [sym_do_statement] = STATE(2217), - [sym_for_statement] = STATE(2217), - [sym_return_statement] = STATE(2217), - [sym_break_statement] = STATE(2217), - [sym_continue_statement] = STATE(2217), - [sym_goto_statement] = STATE(2217), - [sym_seh_try_statement] = STATE(2217), - [sym_seh_leave_statement] = STATE(2217), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), + [533] = { + [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), + }, + [534] = { + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token2] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym___try] = ACTIONS(1528), + [anon_sym___leave] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), + [sym_comment] = ACTIONS(3), + }, + [535] = { + [sym_identifier] = ACTIONS(1560), + [aux_sym_preproc_include_token1] = ACTIONS(1560), + [aux_sym_preproc_def_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token2] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1560), + [sym_preproc_directive] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym___extension__] = ACTIONS(1560), + [anon_sym_typedef] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym___attribute__] = ACTIONS(1560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym___declspec] = ACTIONS(1560), + [anon_sym___cdecl] = ACTIONS(1560), + [anon_sym___clrcall] = ACTIONS(1560), + [anon_sym___stdcall] = ACTIONS(1560), + [anon_sym___fastcall] = ACTIONS(1560), + [anon_sym___thiscall] = ACTIONS(1560), + [anon_sym___vectorcall] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_signed] = ACTIONS(1560), + [anon_sym_unsigned] = ACTIONS(1560), + [anon_sym_long] = ACTIONS(1560), + [anon_sym_short] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_auto] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_inline] = ACTIONS(1560), + [anon_sym___inline] = ACTIONS(1560), + [anon_sym___inline__] = ACTIONS(1560), + [anon_sym___forceinline] = ACTIONS(1560), + [anon_sym_thread_local] = ACTIONS(1560), + [anon_sym___thread] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_constexpr] = ACTIONS(1560), + [anon_sym_volatile] = ACTIONS(1560), + [anon_sym_restrict] = ACTIONS(1560), + [anon_sym___restrict__] = ACTIONS(1560), + [anon_sym__Atomic] = ACTIONS(1560), + [anon_sym__Noreturn] = ACTIONS(1560), + [anon_sym_noreturn] = ACTIONS(1560), + [sym_primitive_type] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_case] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_goto] = ACTIONS(1560), + [anon_sym___try] = ACTIONS(1560), + [anon_sym___leave] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_sizeof] = ACTIONS(1560), + [anon_sym___alignof__] = ACTIONS(1560), + [anon_sym___alignof] = ACTIONS(1560), + [anon_sym__alignof] = ACTIONS(1560), + [anon_sym_alignof] = ACTIONS(1560), + [anon_sym__Alignof] = ACTIONS(1560), + [anon_sym_offsetof] = ACTIONS(1560), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1560), + [anon_sym___asm__] = ACTIONS(1560), + [sym_number_literal] = ACTIONS(1562), + [anon_sym_L_SQUOTE] = ACTIONS(1562), + [anon_sym_u_SQUOTE] = ACTIONS(1562), + [anon_sym_U_SQUOTE] = ACTIONS(1562), + [anon_sym_u8_SQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_L_DQUOTE] = ACTIONS(1562), + [anon_sym_u_DQUOTE] = ACTIONS(1562), + [anon_sym_U_DQUOTE] = ACTIONS(1562), + [anon_sym_u8_DQUOTE] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [anon_sym_NULL] = ACTIONS(1560), + [anon_sym_nullptr] = ACTIONS(1560), + [sym_comment] = ACTIONS(3), + }, + [536] = { + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym___try] = ACTIONS(1540), + [anon_sym___leave] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), + [sym_comment] = ACTIONS(3), + }, + [537] = { + [sym_attribute_declaration] = STATE(494), + [sym_compound_statement] = STATE(170), + [sym_attributed_statement] = STATE(170), + [sym_labeled_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [sym_if_statement] = STATE(170), + [sym_switch_statement] = STATE(170), + [sym_case_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_seh_try_statement] = STATE(170), + [sym_seh_leave_statement] = STATE(170), + [sym__expression] = STATE(1388), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2182), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_attributed_declarator_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1829), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71230,20 +74807,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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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(1599), + [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), @@ -71274,7 +74851,589 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [504] = { + [538] = { + [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), + }, + [539] = { + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), + [sym_comment] = ACTIONS(3), + }, + [540] = { + [sym_identifier] = ACTIONS(1556), + [aux_sym_preproc_include_token1] = ACTIONS(1556), + [aux_sym_preproc_def_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token2] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1556), + [sym_preproc_directive] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym___extension__] = ACTIONS(1556), + [anon_sym_typedef] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym___attribute__] = ACTIONS(1556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1558), + [anon_sym___declspec] = ACTIONS(1556), + [anon_sym___cdecl] = ACTIONS(1556), + [anon_sym___clrcall] = ACTIONS(1556), + [anon_sym___stdcall] = ACTIONS(1556), + [anon_sym___fastcall] = ACTIONS(1556), + [anon_sym___thiscall] = ACTIONS(1556), + [anon_sym___vectorcall] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_signed] = ACTIONS(1556), + [anon_sym_unsigned] = ACTIONS(1556), + [anon_sym_long] = ACTIONS(1556), + [anon_sym_short] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_auto] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_inline] = ACTIONS(1556), + [anon_sym___inline] = ACTIONS(1556), + [anon_sym___inline__] = ACTIONS(1556), + [anon_sym___forceinline] = ACTIONS(1556), + [anon_sym_thread_local] = ACTIONS(1556), + [anon_sym___thread] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_constexpr] = ACTIONS(1556), + [anon_sym_volatile] = ACTIONS(1556), + [anon_sym_restrict] = ACTIONS(1556), + [anon_sym___restrict__] = ACTIONS(1556), + [anon_sym__Atomic] = ACTIONS(1556), + [anon_sym__Noreturn] = ACTIONS(1556), + [anon_sym_noreturn] = ACTIONS(1556), + [sym_primitive_type] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_switch] = ACTIONS(1556), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_goto] = ACTIONS(1556), + [anon_sym___try] = ACTIONS(1556), + [anon_sym___leave] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [anon_sym_sizeof] = ACTIONS(1556), + [anon_sym___alignof__] = ACTIONS(1556), + [anon_sym___alignof] = ACTIONS(1556), + [anon_sym__alignof] = ACTIONS(1556), + [anon_sym_alignof] = ACTIONS(1556), + [anon_sym__Alignof] = ACTIONS(1556), + [anon_sym_offsetof] = ACTIONS(1556), + [anon_sym__Generic] = ACTIONS(1556), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [sym_number_literal] = ACTIONS(1558), + [anon_sym_L_SQUOTE] = ACTIONS(1558), + [anon_sym_u_SQUOTE] = ACTIONS(1558), + [anon_sym_U_SQUOTE] = ACTIONS(1558), + [anon_sym_u8_SQUOTE] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_L_DQUOTE] = ACTIONS(1558), + [anon_sym_u_DQUOTE] = ACTIONS(1558), + [anon_sym_U_DQUOTE] = ACTIONS(1558), + [anon_sym_u8_DQUOTE] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym_true] = ACTIONS(1556), + [sym_false] = ACTIONS(1556), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [541] = { + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token2] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1550), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym___try] = ACTIONS(1548), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1550), + [anon_sym_L_SQUOTE] = ACTIONS(1550), + [anon_sym_u_SQUOTE] = ACTIONS(1550), + [anon_sym_U_SQUOTE] = ACTIONS(1550), + [anon_sym_u8_SQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), + [sym_comment] = ACTIONS(3), + }, + [542] = { + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym___try] = ACTIONS(1536), + [anon_sym___leave] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), + [sym_comment] = ACTIONS(3), + }, + [543] = { + [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), + }, + [544] = { [sym_identifier] = ACTIONS(1470), [aux_sym_preproc_include_token1] = ACTIONS(1470), [aux_sym_preproc_def_token1] = ACTIONS(1470), @@ -71291,539 +75450,733 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [505] = { - [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), + [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), }, - [506] = { - [sym_attribute_declaration] = STATE(470), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym_seh_try_statement] = STATE(308), - [sym_seh_leave_statement] = STATE(308), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2190), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_attributed_declarator_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(1566), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1564), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1570), - [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), + [545] = { + [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), }, - [507] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1448), - [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_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_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), + [546] = { + [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_if_token2] = 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_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), }, - [508] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1456), - [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_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_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), + [547] = { + [sym_identifier] = ACTIONS(1564), + [aux_sym_preproc_include_token1] = ACTIONS(1564), + [aux_sym_preproc_def_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token2] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1564), + [sym_preproc_directive] = ACTIONS(1564), + [anon_sym_LPAREN2] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym___extension__] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym___attribute__] = ACTIONS(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym___declspec] = ACTIONS(1564), + [anon_sym___cdecl] = ACTIONS(1564), + [anon_sym___clrcall] = ACTIONS(1564), + [anon_sym___stdcall] = ACTIONS(1564), + [anon_sym___fastcall] = ACTIONS(1564), + [anon_sym___thiscall] = ACTIONS(1564), + [anon_sym___vectorcall] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_signed] = ACTIONS(1564), + [anon_sym_unsigned] = ACTIONS(1564), + [anon_sym_long] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_auto] = ACTIONS(1564), + [anon_sym_register] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym___inline] = ACTIONS(1564), + [anon_sym___inline__] = ACTIONS(1564), + [anon_sym___forceinline] = ACTIONS(1564), + [anon_sym_thread_local] = ACTIONS(1564), + [anon_sym___thread] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_constexpr] = ACTIONS(1564), + [anon_sym_volatile] = ACTIONS(1564), + [anon_sym_restrict] = ACTIONS(1564), + [anon_sym___restrict__] = ACTIONS(1564), + [anon_sym__Atomic] = ACTIONS(1564), + [anon_sym__Noreturn] = ACTIONS(1564), + [anon_sym_noreturn] = ACTIONS(1564), + [sym_primitive_type] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_goto] = ACTIONS(1564), + [anon_sym___try] = ACTIONS(1564), + [anon_sym___leave] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_sizeof] = ACTIONS(1564), + [anon_sym___alignof__] = ACTIONS(1564), + [anon_sym___alignof] = ACTIONS(1564), + [anon_sym__alignof] = ACTIONS(1564), + [anon_sym_alignof] = ACTIONS(1564), + [anon_sym__Alignof] = ACTIONS(1564), + [anon_sym_offsetof] = ACTIONS(1564), + [anon_sym__Generic] = ACTIONS(1564), + [anon_sym_asm] = ACTIONS(1564), + [anon_sym___asm__] = ACTIONS(1564), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1566), + [anon_sym_u_SQUOTE] = ACTIONS(1566), + [anon_sym_U_SQUOTE] = ACTIONS(1566), + [anon_sym_u8_SQUOTE] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_L_DQUOTE] = ACTIONS(1566), + [anon_sym_u_DQUOTE] = ACTIONS(1566), + [anon_sym_U_DQUOTE] = ACTIONS(1566), + [anon_sym_u8_DQUOTE] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [anon_sym_NULL] = ACTIONS(1564), + [anon_sym_nullptr] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + }, + [548] = { + [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), }, - [509] = { - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(884), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(884), - [sym_call_expression] = STATE(884), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(884), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(884), - [sym_initializer_list] = STATE(861), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_identifier] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), + [549] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1544), + [aux_sym_preproc_include_token1] = ACTIONS(1544), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1546), + [aux_sym_preproc_if_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1544), + [sym_preproc_directive] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1546), [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_RBRACK] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_STAR_EQ] = ACTIONS(1540), - [anon_sym_SLASH_EQ] = ACTIONS(1540), - [anon_sym_PERCENT_EQ] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1540), - [anon_sym_DASH_EQ] = ACTIONS(1540), - [anon_sym_LT_LT_EQ] = ACTIONS(1540), - [anon_sym_GT_GT_EQ] = ACTIONS(1540), - [anon_sym_AMP_EQ] = ACTIONS(1540), - [anon_sym_CARET_EQ] = ACTIONS(1540), - [anon_sym_PIPE_EQ] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1919), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1546), + [anon_sym___declspec] = ACTIONS(1544), + [anon_sym___cdecl] = ACTIONS(1544), + [anon_sym___clrcall] = ACTIONS(1544), + [anon_sym___stdcall] = ACTIONS(1544), + [anon_sym___fastcall] = ACTIONS(1544), + [anon_sym___thiscall] = ACTIONS(1544), + [anon_sym___vectorcall] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1544), + [anon_sym_unsigned] = ACTIONS(1544), + [anon_sym_long] = ACTIONS(1544), + [anon_sym_short] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_auto] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_inline] = ACTIONS(1544), + [anon_sym___inline] = ACTIONS(1544), + [anon_sym___inline__] = ACTIONS(1544), + [anon_sym___forceinline] = ACTIONS(1544), + [anon_sym_thread_local] = ACTIONS(1544), + [anon_sym___thread] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_constexpr] = ACTIONS(1544), + [anon_sym_volatile] = ACTIONS(1544), + [anon_sym_restrict] = ACTIONS(1544), + [anon_sym___restrict__] = ACTIONS(1544), + [anon_sym__Atomic] = ACTIONS(1544), + [anon_sym__Noreturn] = ACTIONS(1544), + [anon_sym_noreturn] = ACTIONS(1544), + [sym_primitive_type] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_switch] = ACTIONS(1544), + [anon_sym_case] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_goto] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1544), + [anon_sym___alignof__] = ACTIONS(1544), + [anon_sym___alignof] = ACTIONS(1544), + [anon_sym__alignof] = ACTIONS(1544), + [anon_sym_alignof] = ACTIONS(1544), + [anon_sym__Alignof] = ACTIONS(1544), + [anon_sym_offsetof] = ACTIONS(1544), + [anon_sym__Generic] = ACTIONS(1544), + [anon_sym_asm] = ACTIONS(1544), + [anon_sym___asm__] = ACTIONS(1544), + [sym_number_literal] = ACTIONS(1546), + [anon_sym_L_SQUOTE] = ACTIONS(1546), + [anon_sym_u_SQUOTE] = ACTIONS(1546), + [anon_sym_U_SQUOTE] = ACTIONS(1546), + [anon_sym_u8_SQUOTE] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1544), + [sym_false] = ACTIONS(1544), + [anon_sym_NULL] = ACTIONS(1544), + [anon_sym_nullptr] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1498), + [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___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_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), + }, + [551] = { + [sym__expression] = STATE(1141), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(894), + [sym_initializer_list] = STATE(928), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_identifier] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1964), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1585), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1585), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(1579), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1966), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -71833,8 +76186,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(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -71852,477 +76205,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1510), - [aux_sym_preproc_include_token1] = ACTIONS(1510), - [aux_sym_preproc_def_token1] = ACTIONS(1510), - [aux_sym_preproc_if_token1] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym___extension__] = ACTIONS(1510), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym___attribute__] = ACTIONS(1510), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), - [anon_sym___declspec] = ACTIONS(1510), - [anon_sym___cdecl] = ACTIONS(1510), - [anon_sym___clrcall] = ACTIONS(1510), - [anon_sym___stdcall] = ACTIONS(1510), - [anon_sym___fastcall] = ACTIONS(1510), - [anon_sym___thiscall] = ACTIONS(1510), - [anon_sym___vectorcall] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym___inline] = ACTIONS(1510), - [anon_sym___inline__] = ACTIONS(1510), - [anon_sym___forceinline] = ACTIONS(1510), - [anon_sym_thread_local] = ACTIONS(1510), - [anon_sym___thread] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_constexpr] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym___restrict__] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym__Noreturn] = ACTIONS(1510), - [anon_sym_noreturn] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1510), - [anon_sym___alignof__] = ACTIONS(1510), - [anon_sym___alignof] = ACTIONS(1510), - [anon_sym__alignof] = ACTIONS(1510), - [anon_sym_alignof] = ACTIONS(1510), - [anon_sym__Alignof] = ACTIONS(1510), - [anon_sym_offsetof] = ACTIONS(1510), - [anon_sym__Generic] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1510), - [anon_sym___asm__] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_L_SQUOTE] = ACTIONS(1512), - [anon_sym_u_SQUOTE] = ACTIONS(1512), - [anon_sym_U_SQUOTE] = ACTIONS(1512), - [anon_sym_u8_SQUOTE] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_L_DQUOTE] = ACTIONS(1512), - [anon_sym_u_DQUOTE] = ACTIONS(1512), - [anon_sym_U_DQUOTE] = ACTIONS(1512), - [anon_sym_u8_DQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [anon_sym_NULL] = ACTIONS(1510), - [anon_sym_nullptr] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [aux_sym_preproc_include_token1] = ACTIONS(1923), - [aux_sym_preproc_def_token1] = ACTIONS(1923), - [aux_sym_preproc_if_token1] = ACTIONS(1923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1923), - [sym_preproc_directive] = ACTIONS(1923), - [anon_sym_LPAREN2] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym___extension__] = ACTIONS(1923), - [anon_sym_typedef] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1923), - [anon_sym___attribute__] = ACTIONS(1923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1921), - [anon_sym___declspec] = ACTIONS(1923), - [anon_sym___cdecl] = ACTIONS(1923), - [anon_sym___clrcall] = ACTIONS(1923), - [anon_sym___stdcall] = ACTIONS(1923), - [anon_sym___fastcall] = ACTIONS(1923), - [anon_sym___thiscall] = ACTIONS(1923), - [anon_sym___vectorcall] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_signed] = ACTIONS(1923), - [anon_sym_unsigned] = ACTIONS(1923), - [anon_sym_long] = ACTIONS(1923), - [anon_sym_short] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_auto] = ACTIONS(1923), - [anon_sym_register] = ACTIONS(1923), - [anon_sym_inline] = ACTIONS(1923), - [anon_sym___inline] = ACTIONS(1923), - [anon_sym___inline__] = ACTIONS(1923), - [anon_sym___forceinline] = ACTIONS(1923), - [anon_sym_thread_local] = ACTIONS(1923), - [anon_sym___thread] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_constexpr] = ACTIONS(1923), - [anon_sym_volatile] = ACTIONS(1923), - [anon_sym_restrict] = ACTIONS(1923), - [anon_sym___restrict__] = ACTIONS(1923), - [anon_sym__Atomic] = ACTIONS(1923), - [anon_sym__Noreturn] = ACTIONS(1923), - [anon_sym_noreturn] = ACTIONS(1923), - [sym_primitive_type] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_union] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_goto] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_sizeof] = ACTIONS(1923), - [anon_sym___alignof__] = ACTIONS(1923), - [anon_sym___alignof] = ACTIONS(1923), - [anon_sym__alignof] = ACTIONS(1923), - [anon_sym_alignof] = ACTIONS(1923), - [anon_sym__Alignof] = ACTIONS(1923), - [anon_sym_offsetof] = ACTIONS(1923), - [anon_sym__Generic] = ACTIONS(1923), - [anon_sym_asm] = ACTIONS(1923), - [anon_sym___asm__] = ACTIONS(1923), - [sym_number_literal] = ACTIONS(1921), - [anon_sym_L_SQUOTE] = ACTIONS(1921), - [anon_sym_u_SQUOTE] = ACTIONS(1921), - [anon_sym_U_SQUOTE] = ACTIONS(1921), - [anon_sym_u8_SQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_L_DQUOTE] = ACTIONS(1921), - [anon_sym_u_DQUOTE] = ACTIONS(1921), - [anon_sym_U_DQUOTE] = ACTIONS(1921), - [anon_sym_u8_DQUOTE] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [anon_sym_NULL] = ACTIONS(1923), - [anon_sym_nullptr] = ACTIONS(1923), - [sym_comment] = ACTIONS(3), - }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1498), - [aux_sym_preproc_include_token1] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1498), - [anon_sym_LPAREN2] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym___extension__] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym___attribute__] = ACTIONS(1498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), - [anon_sym___declspec] = ACTIONS(1498), - [anon_sym___cdecl] = ACTIONS(1498), - [anon_sym___clrcall] = ACTIONS(1498), - [anon_sym___stdcall] = ACTIONS(1498), - [anon_sym___fastcall] = ACTIONS(1498), - [anon_sym___thiscall] = ACTIONS(1498), - [anon_sym___vectorcall] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1498), - [anon_sym_unsigned] = ACTIONS(1498), - [anon_sym_long] = ACTIONS(1498), - [anon_sym_short] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_auto] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1498), - [anon_sym___inline] = ACTIONS(1498), - [anon_sym___inline__] = ACTIONS(1498), - [anon_sym___forceinline] = ACTIONS(1498), - [anon_sym_thread_local] = ACTIONS(1498), - [anon_sym___thread] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_constexpr] = ACTIONS(1498), - [anon_sym_volatile] = ACTIONS(1498), - [anon_sym_restrict] = ACTIONS(1498), - [anon_sym___restrict__] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1498), - [anon_sym__Noreturn] = ACTIONS(1498), - [anon_sym_noreturn] = ACTIONS(1498), - [sym_primitive_type] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_goto] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1498), - [anon_sym___alignof__] = ACTIONS(1498), - [anon_sym___alignof] = ACTIONS(1498), - [anon_sym__alignof] = ACTIONS(1498), - [anon_sym_alignof] = ACTIONS(1498), - [anon_sym__Alignof] = ACTIONS(1498), - [anon_sym_offsetof] = ACTIONS(1498), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1498), - [anon_sym___asm__] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1500), - [anon_sym_L_SQUOTE] = ACTIONS(1500), - [anon_sym_u_SQUOTE] = ACTIONS(1500), - [anon_sym_U_SQUOTE] = ACTIONS(1500), - [anon_sym_u8_SQUOTE] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_L_DQUOTE] = ACTIONS(1500), - [anon_sym_u_DQUOTE] = ACTIONS(1500), - [anon_sym_U_DQUOTE] = ACTIONS(1500), - [anon_sym_u8_DQUOTE] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1500), - [sym_true] = ACTIONS(1498), - [sym_false] = ACTIONS(1498), - [anon_sym_NULL] = ACTIONS(1498), - [anon_sym_nullptr] = ACTIONS(1498), + [552] = { + [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), }, - [513] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1514), - [aux_sym_preproc_include_token1] = ACTIONS(1514), - [aux_sym_preproc_def_token1] = ACTIONS(1514), - [aux_sym_preproc_if_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym___extension__] = ACTIONS(1514), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym___attribute__] = ACTIONS(1514), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), - [anon_sym___declspec] = ACTIONS(1514), - [anon_sym___cdecl] = ACTIONS(1514), - [anon_sym___clrcall] = ACTIONS(1514), - [anon_sym___stdcall] = ACTIONS(1514), - [anon_sym___fastcall] = ACTIONS(1514), - [anon_sym___thiscall] = ACTIONS(1514), - [anon_sym___vectorcall] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym___inline] = ACTIONS(1514), - [anon_sym___inline__] = ACTIONS(1514), - [anon_sym___forceinline] = ACTIONS(1514), - [anon_sym_thread_local] = ACTIONS(1514), - [anon_sym___thread] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_constexpr] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym___restrict__] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym__Noreturn] = ACTIONS(1514), - [anon_sym_noreturn] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1514), - [anon_sym___alignof__] = ACTIONS(1514), - [anon_sym___alignof] = ACTIONS(1514), - [anon_sym__alignof] = ACTIONS(1514), - [anon_sym_alignof] = ACTIONS(1514), - [anon_sym__Alignof] = ACTIONS(1514), - [anon_sym_offsetof] = ACTIONS(1514), - [anon_sym__Generic] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1514), - [anon_sym___asm__] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1516), - [anon_sym_L_SQUOTE] = ACTIONS(1516), - [anon_sym_u_SQUOTE] = ACTIONS(1516), - [anon_sym_U_SQUOTE] = ACTIONS(1516), - [anon_sym_u8_SQUOTE] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_L_DQUOTE] = ACTIONS(1516), - [anon_sym_u_DQUOTE] = ACTIONS(1516), - [anon_sym_U_DQUOTE] = ACTIONS(1516), - [anon_sym_u8_DQUOTE] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [anon_sym_NULL] = ACTIONS(1514), - [anon_sym_nullptr] = ACTIONS(1514), + [553] = { + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1548), + [aux_sym_preproc_include_token1] = ACTIONS(1548), + [aux_sym_preproc_def_token1] = ACTIONS(1548), + [aux_sym_preproc_if_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1548), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_typedef] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym___attribute__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1550), + [anon_sym___declspec] = ACTIONS(1548), + [anon_sym___cdecl] = ACTIONS(1548), + [anon_sym___clrcall] = ACTIONS(1548), + [anon_sym___stdcall] = ACTIONS(1548), + [anon_sym___fastcall] = ACTIONS(1548), + [anon_sym___thiscall] = ACTIONS(1548), + [anon_sym___vectorcall] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1548), + [anon_sym_unsigned] = ACTIONS(1548), + [anon_sym_long] = ACTIONS(1548), + [anon_sym_short] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_auto] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_inline] = ACTIONS(1548), + [anon_sym___inline] = ACTIONS(1548), + [anon_sym___inline__] = ACTIONS(1548), + [anon_sym___forceinline] = ACTIONS(1548), + [anon_sym_thread_local] = ACTIONS(1548), + [anon_sym___thread] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_constexpr] = ACTIONS(1548), + [anon_sym_volatile] = ACTIONS(1548), + [anon_sym_restrict] = ACTIONS(1548), + [anon_sym___restrict__] = ACTIONS(1548), + [anon_sym__Atomic] = ACTIONS(1548), + [anon_sym__Noreturn] = ACTIONS(1548), + [anon_sym_noreturn] = ACTIONS(1548), + [sym_primitive_type] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(1548), + [anon_sym___alignof] = ACTIONS(1548), + [anon_sym__alignof] = ACTIONS(1548), + [anon_sym_alignof] = ACTIONS(1548), + [anon_sym__Alignof] = ACTIONS(1548), + [anon_sym_offsetof] = ACTIONS(1548), + [anon_sym__Generic] = ACTIONS(1548), + [anon_sym_asm] = ACTIONS(1548), + [anon_sym___asm__] = ACTIONS(1548), + [sym_number_literal] = ACTIONS(1550), + [anon_sym_L_SQUOTE] = ACTIONS(1550), + [anon_sym_u_SQUOTE] = ACTIONS(1550), + [anon_sym_U_SQUOTE] = ACTIONS(1550), + [anon_sym_u8_SQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_L_DQUOTE] = ACTIONS(1550), + [anon_sym_u_DQUOTE] = ACTIONS(1550), + [anon_sym_U_DQUOTE] = ACTIONS(1550), + [anon_sym_u8_DQUOTE] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym_true] = ACTIONS(1548), + [sym_false] = ACTIONS(1548), + [anon_sym_NULL] = ACTIONS(1548), + [anon_sym_nullptr] = ACTIONS(1548), [sym_comment] = ACTIONS(3), }, - [514] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym___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), + [554] = { + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, - [515] = { + [555] = { [ts_builtin_sym_end] = ACTIONS(1476), [sym_identifier] = ACTIONS(1474), [aux_sym_preproc_include_token1] = ACTIONS(1474), @@ -72416,665 +76581,853 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(3), }, - [516] = { - [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), + [556] = { + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1528), + [aux_sym_preproc_include_token1] = ACTIONS(1528), + [aux_sym_preproc_def_token1] = ACTIONS(1528), + [aux_sym_preproc_if_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1528), + [sym_preproc_directive] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym___extension__] = ACTIONS(1528), + [anon_sym_typedef] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym___attribute__] = ACTIONS(1528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1530), + [anon_sym___declspec] = ACTIONS(1528), + [anon_sym___cdecl] = ACTIONS(1528), + [anon_sym___clrcall] = ACTIONS(1528), + [anon_sym___stdcall] = ACTIONS(1528), + [anon_sym___fastcall] = ACTIONS(1528), + [anon_sym___thiscall] = ACTIONS(1528), + [anon_sym___vectorcall] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_signed] = ACTIONS(1528), + [anon_sym_unsigned] = ACTIONS(1528), + [anon_sym_long] = ACTIONS(1528), + [anon_sym_short] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_auto] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_inline] = ACTIONS(1528), + [anon_sym___inline] = ACTIONS(1528), + [anon_sym___inline__] = ACTIONS(1528), + [anon_sym___forceinline] = ACTIONS(1528), + [anon_sym_thread_local] = ACTIONS(1528), + [anon_sym___thread] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_constexpr] = ACTIONS(1528), + [anon_sym_volatile] = ACTIONS(1528), + [anon_sym_restrict] = ACTIONS(1528), + [anon_sym___restrict__] = ACTIONS(1528), + [anon_sym__Atomic] = ACTIONS(1528), + [anon_sym__Noreturn] = ACTIONS(1528), + [anon_sym_noreturn] = ACTIONS(1528), + [sym_primitive_type] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1528), + [anon_sym_case] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_goto] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym___alignof__] = ACTIONS(1528), + [anon_sym___alignof] = ACTIONS(1528), + [anon_sym__alignof] = ACTIONS(1528), + [anon_sym_alignof] = ACTIONS(1528), + [anon_sym__Alignof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1528), + [anon_sym__Generic] = ACTIONS(1528), + [anon_sym_asm] = ACTIONS(1528), + [anon_sym___asm__] = ACTIONS(1528), + [sym_number_literal] = ACTIONS(1530), + [anon_sym_L_SQUOTE] = ACTIONS(1530), + [anon_sym_u_SQUOTE] = ACTIONS(1530), + [anon_sym_U_SQUOTE] = ACTIONS(1530), + [anon_sym_u8_SQUOTE] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_L_DQUOTE] = ACTIONS(1530), + [anon_sym_u_DQUOTE] = ACTIONS(1530), + [anon_sym_U_DQUOTE] = ACTIONS(1530), + [anon_sym_u8_DQUOTE] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), + [anon_sym_NULL] = ACTIONS(1528), + [anon_sym_nullptr] = ACTIONS(1528), [sym_comment] = ACTIONS(3), }, - [517] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [aux_sym_preproc_include_token1] = ACTIONS(1927), - [aux_sym_preproc_def_token1] = ACTIONS(1927), - [aux_sym_preproc_if_token1] = ACTIONS(1927), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1927), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1927), - [sym_preproc_directive] = ACTIONS(1927), - [anon_sym_LPAREN2] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym___extension__] = ACTIONS(1927), - [anon_sym_typedef] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym___attribute__] = ACTIONS(1927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1925), - [anon_sym___declspec] = ACTIONS(1927), - [anon_sym___cdecl] = ACTIONS(1927), - [anon_sym___clrcall] = ACTIONS(1927), - [anon_sym___stdcall] = ACTIONS(1927), - [anon_sym___fastcall] = ACTIONS(1927), - [anon_sym___thiscall] = ACTIONS(1927), - [anon_sym___vectorcall] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_signed] = ACTIONS(1927), - [anon_sym_unsigned] = ACTIONS(1927), - [anon_sym_long] = ACTIONS(1927), - [anon_sym_short] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_auto] = ACTIONS(1927), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_inline] = ACTIONS(1927), - [anon_sym___inline] = ACTIONS(1927), - [anon_sym___inline__] = ACTIONS(1927), - [anon_sym___forceinline] = ACTIONS(1927), - [anon_sym_thread_local] = ACTIONS(1927), - [anon_sym___thread] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_constexpr] = ACTIONS(1927), - [anon_sym_volatile] = ACTIONS(1927), - [anon_sym_restrict] = ACTIONS(1927), - [anon_sym___restrict__] = ACTIONS(1927), - [anon_sym__Atomic] = ACTIONS(1927), - [anon_sym__Noreturn] = ACTIONS(1927), - [anon_sym_noreturn] = ACTIONS(1927), - [sym_primitive_type] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_union] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_switch] = ACTIONS(1927), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_goto] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_sizeof] = ACTIONS(1927), - [anon_sym___alignof__] = ACTIONS(1927), - [anon_sym___alignof] = ACTIONS(1927), - [anon_sym__alignof] = ACTIONS(1927), - [anon_sym_alignof] = ACTIONS(1927), - [anon_sym__Alignof] = ACTIONS(1927), - [anon_sym_offsetof] = ACTIONS(1927), - [anon_sym__Generic] = ACTIONS(1927), - [anon_sym_asm] = ACTIONS(1927), - [anon_sym___asm__] = ACTIONS(1927), - [sym_number_literal] = ACTIONS(1925), - [anon_sym_L_SQUOTE] = ACTIONS(1925), - [anon_sym_u_SQUOTE] = ACTIONS(1925), - [anon_sym_U_SQUOTE] = ACTIONS(1925), - [anon_sym_u8_SQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_L_DQUOTE] = ACTIONS(1925), - [anon_sym_u_DQUOTE] = ACTIONS(1925), - [anon_sym_U_DQUOTE] = ACTIONS(1925), - [anon_sym_u8_DQUOTE] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [anon_sym_NULL] = ACTIONS(1927), - [anon_sym_nullptr] = ACTIONS(1927), + [557] = { + [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), }, - [518] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1526), - [aux_sym_preproc_include_token1] = ACTIONS(1526), - [aux_sym_preproc_def_token1] = ACTIONS(1526), - [aux_sym_preproc_if_token1] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), - [sym_preproc_directive] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym___extension__] = ACTIONS(1526), - [anon_sym_typedef] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym___attribute__] = ACTIONS(1526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), - [anon_sym___declspec] = ACTIONS(1526), - [anon_sym___cdecl] = ACTIONS(1526), - [anon_sym___clrcall] = ACTIONS(1526), - [anon_sym___stdcall] = ACTIONS(1526), - [anon_sym___fastcall] = ACTIONS(1526), - [anon_sym___thiscall] = ACTIONS(1526), - [anon_sym___vectorcall] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_signed] = ACTIONS(1526), - [anon_sym_unsigned] = ACTIONS(1526), - [anon_sym_long] = ACTIONS(1526), - [anon_sym_short] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_auto] = ACTIONS(1526), - [anon_sym_register] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym___inline] = ACTIONS(1526), - [anon_sym___inline__] = ACTIONS(1526), - [anon_sym___forceinline] = ACTIONS(1526), - [anon_sym_thread_local] = ACTIONS(1526), - [anon_sym___thread] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_constexpr] = ACTIONS(1526), - [anon_sym_volatile] = ACTIONS(1526), - [anon_sym_restrict] = ACTIONS(1526), - [anon_sym___restrict__] = ACTIONS(1526), - [anon_sym__Atomic] = ACTIONS(1526), - [anon_sym__Noreturn] = ACTIONS(1526), - [anon_sym_noreturn] = ACTIONS(1526), - [sym_primitive_type] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_switch] = ACTIONS(1526), - [anon_sym_case] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_goto] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(1526), - [anon_sym___alignof] = ACTIONS(1526), - [anon_sym__alignof] = ACTIONS(1526), - [anon_sym_alignof] = ACTIONS(1526), - [anon_sym__Alignof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1526), - [anon_sym__Generic] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1526), - [anon_sym___asm__] = ACTIONS(1526), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1528), - [anon_sym_u_SQUOTE] = ACTIONS(1528), - [anon_sym_U_SQUOTE] = ACTIONS(1528), - [anon_sym_u8_SQUOTE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_L_DQUOTE] = ACTIONS(1528), - [anon_sym_u_DQUOTE] = ACTIONS(1528), - [anon_sym_U_DQUOTE] = ACTIONS(1528), - [anon_sym_u8_DQUOTE] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [anon_sym_NULL] = ACTIONS(1526), - [anon_sym_nullptr] = ACTIONS(1526), + [558] = { + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1564), + [aux_sym_preproc_include_token1] = ACTIONS(1564), + [aux_sym_preproc_def_token1] = ACTIONS(1564), + [aux_sym_preproc_if_token1] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1564), + [sym_preproc_directive] = ACTIONS(1564), + [anon_sym_LPAREN2] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym___extension__] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym___attribute__] = ACTIONS(1564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym___declspec] = ACTIONS(1564), + [anon_sym___cdecl] = ACTIONS(1564), + [anon_sym___clrcall] = ACTIONS(1564), + [anon_sym___stdcall] = ACTIONS(1564), + [anon_sym___fastcall] = ACTIONS(1564), + [anon_sym___thiscall] = ACTIONS(1564), + [anon_sym___vectorcall] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_signed] = ACTIONS(1564), + [anon_sym_unsigned] = ACTIONS(1564), + [anon_sym_long] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_auto] = ACTIONS(1564), + [anon_sym_register] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym___inline] = ACTIONS(1564), + [anon_sym___inline__] = ACTIONS(1564), + [anon_sym___forceinline] = ACTIONS(1564), + [anon_sym_thread_local] = ACTIONS(1564), + [anon_sym___thread] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_constexpr] = ACTIONS(1564), + [anon_sym_volatile] = ACTIONS(1564), + [anon_sym_restrict] = ACTIONS(1564), + [anon_sym___restrict__] = ACTIONS(1564), + [anon_sym__Atomic] = ACTIONS(1564), + [anon_sym__Noreturn] = ACTIONS(1564), + [anon_sym_noreturn] = ACTIONS(1564), + [sym_primitive_type] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_goto] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_sizeof] = ACTIONS(1564), + [anon_sym___alignof__] = ACTIONS(1564), + [anon_sym___alignof] = ACTIONS(1564), + [anon_sym__alignof] = ACTIONS(1564), + [anon_sym_alignof] = ACTIONS(1564), + [anon_sym__Alignof] = ACTIONS(1564), + [anon_sym_offsetof] = ACTIONS(1564), + [anon_sym__Generic] = ACTIONS(1564), + [anon_sym_asm] = ACTIONS(1564), + [anon_sym___asm__] = ACTIONS(1564), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1566), + [anon_sym_u_SQUOTE] = ACTIONS(1566), + [anon_sym_U_SQUOTE] = ACTIONS(1566), + [anon_sym_u8_SQUOTE] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_L_DQUOTE] = ACTIONS(1566), + [anon_sym_u_DQUOTE] = ACTIONS(1566), + [anon_sym_U_DQUOTE] = ACTIONS(1566), + [anon_sym_u8_DQUOTE] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [anon_sym_NULL] = ACTIONS(1564), + [anon_sym_nullptr] = ACTIONS(1564), [sym_comment] = ACTIONS(3), }, - [519] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1502), - [aux_sym_preproc_include_token1] = ACTIONS(1502), - [aux_sym_preproc_def_token1] = ACTIONS(1502), - [aux_sym_preproc_if_token1] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), - [sym_preproc_directive] = ACTIONS(1502), - [anon_sym_LPAREN2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym___extension__] = ACTIONS(1502), - [anon_sym_typedef] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym___attribute__] = ACTIONS(1502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), - [anon_sym___declspec] = ACTIONS(1502), - [anon_sym___cdecl] = ACTIONS(1502), - [anon_sym___clrcall] = ACTIONS(1502), - [anon_sym___stdcall] = ACTIONS(1502), - [anon_sym___fastcall] = ACTIONS(1502), - [anon_sym___thiscall] = ACTIONS(1502), - [anon_sym___vectorcall] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1502), - [anon_sym_unsigned] = ACTIONS(1502), - [anon_sym_long] = ACTIONS(1502), - [anon_sym_short] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_auto] = ACTIONS(1502), - [anon_sym_register] = ACTIONS(1502), - [anon_sym_inline] = ACTIONS(1502), - [anon_sym___inline] = ACTIONS(1502), - [anon_sym___inline__] = ACTIONS(1502), - [anon_sym___forceinline] = ACTIONS(1502), - [anon_sym_thread_local] = ACTIONS(1502), - [anon_sym___thread] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_constexpr] = ACTIONS(1502), - [anon_sym_volatile] = ACTIONS(1502), - [anon_sym_restrict] = ACTIONS(1502), - [anon_sym___restrict__] = ACTIONS(1502), - [anon_sym__Atomic] = ACTIONS(1502), - [anon_sym__Noreturn] = ACTIONS(1502), - [anon_sym_noreturn] = ACTIONS(1502), - [sym_primitive_type] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_do] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_goto] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1502), - [anon_sym___alignof__] = ACTIONS(1502), - [anon_sym___alignof] = ACTIONS(1502), - [anon_sym__alignof] = ACTIONS(1502), - [anon_sym_alignof] = ACTIONS(1502), - [anon_sym__Alignof] = ACTIONS(1502), - [anon_sym_offsetof] = ACTIONS(1502), - [anon_sym__Generic] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1502), - [anon_sym___asm__] = ACTIONS(1502), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1504), - [anon_sym_u_SQUOTE] = ACTIONS(1504), - [anon_sym_U_SQUOTE] = ACTIONS(1504), - [anon_sym_u8_SQUOTE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_L_DQUOTE] = ACTIONS(1504), - [anon_sym_u_DQUOTE] = ACTIONS(1504), - [anon_sym_U_DQUOTE] = ACTIONS(1504), - [anon_sym_u8_DQUOTE] = ACTIONS(1504), - [anon_sym_DQUOTE] = ACTIONS(1504), - [sym_true] = ACTIONS(1502), - [sym_false] = ACTIONS(1502), - [anon_sym_NULL] = ACTIONS(1502), - [anon_sym_nullptr] = ACTIONS(1502), + [559] = { + [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), }, - [520] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [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___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_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), + [560] = { + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1560), + [aux_sym_preproc_include_token1] = ACTIONS(1560), + [aux_sym_preproc_def_token1] = ACTIONS(1560), + [aux_sym_preproc_if_token1] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1560), + [sym_preproc_directive] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym___extension__] = ACTIONS(1560), + [anon_sym_typedef] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym___attribute__] = ACTIONS(1560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), + [anon_sym___declspec] = ACTIONS(1560), + [anon_sym___cdecl] = ACTIONS(1560), + [anon_sym___clrcall] = ACTIONS(1560), + [anon_sym___stdcall] = ACTIONS(1560), + [anon_sym___fastcall] = ACTIONS(1560), + [anon_sym___thiscall] = ACTIONS(1560), + [anon_sym___vectorcall] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_signed] = ACTIONS(1560), + [anon_sym_unsigned] = ACTIONS(1560), + [anon_sym_long] = ACTIONS(1560), + [anon_sym_short] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_auto] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_inline] = ACTIONS(1560), + [anon_sym___inline] = ACTIONS(1560), + [anon_sym___inline__] = ACTIONS(1560), + [anon_sym___forceinline] = ACTIONS(1560), + [anon_sym_thread_local] = ACTIONS(1560), + [anon_sym___thread] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_constexpr] = ACTIONS(1560), + [anon_sym_volatile] = ACTIONS(1560), + [anon_sym_restrict] = ACTIONS(1560), + [anon_sym___restrict__] = ACTIONS(1560), + [anon_sym__Atomic] = ACTIONS(1560), + [anon_sym__Noreturn] = ACTIONS(1560), + [anon_sym_noreturn] = ACTIONS(1560), + [sym_primitive_type] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_case] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_goto] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_sizeof] = ACTIONS(1560), + [anon_sym___alignof__] = ACTIONS(1560), + [anon_sym___alignof] = ACTIONS(1560), + [anon_sym__alignof] = ACTIONS(1560), + [anon_sym_alignof] = ACTIONS(1560), + [anon_sym__Alignof] = ACTIONS(1560), + [anon_sym_offsetof] = ACTIONS(1560), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1560), + [anon_sym___asm__] = ACTIONS(1560), + [sym_number_literal] = ACTIONS(1562), + [anon_sym_L_SQUOTE] = ACTIONS(1562), + [anon_sym_u_SQUOTE] = ACTIONS(1562), + [anon_sym_U_SQUOTE] = ACTIONS(1562), + [anon_sym_u8_SQUOTE] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_L_DQUOTE] = ACTIONS(1562), + [anon_sym_u_DQUOTE] = ACTIONS(1562), + [anon_sym_U_DQUOTE] = ACTIONS(1562), + [anon_sym_u8_DQUOTE] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [anon_sym_NULL] = ACTIONS(1560), + [anon_sym_nullptr] = ACTIONS(1560), [sym_comment] = ACTIONS(3), }, - [521] = { - [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), + [561] = { + [ts_builtin_sym_end] = ACTIONS(1506), + [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___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_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), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1532), + [aux_sym_preproc_include_token1] = ACTIONS(1532), + [aux_sym_preproc_def_token1] = ACTIONS(1532), + [aux_sym_preproc_if_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1532), + [sym_preproc_directive] = ACTIONS(1532), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym___extension__] = ACTIONS(1532), + [anon_sym_typedef] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym___attribute__] = ACTIONS(1532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1534), + [anon_sym___declspec] = ACTIONS(1532), + [anon_sym___cdecl] = ACTIONS(1532), + [anon_sym___clrcall] = ACTIONS(1532), + [anon_sym___stdcall] = ACTIONS(1532), + [anon_sym___fastcall] = ACTIONS(1532), + [anon_sym___thiscall] = ACTIONS(1532), + [anon_sym___vectorcall] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_signed] = ACTIONS(1532), + [anon_sym_unsigned] = ACTIONS(1532), + [anon_sym_long] = ACTIONS(1532), + [anon_sym_short] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_auto] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_inline] = ACTIONS(1532), + [anon_sym___inline] = ACTIONS(1532), + [anon_sym___inline__] = ACTIONS(1532), + [anon_sym___forceinline] = ACTIONS(1532), + [anon_sym_thread_local] = ACTIONS(1532), + [anon_sym___thread] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_constexpr] = ACTIONS(1532), + [anon_sym_volatile] = ACTIONS(1532), + [anon_sym_restrict] = ACTIONS(1532), + [anon_sym___restrict__] = ACTIONS(1532), + [anon_sym__Atomic] = ACTIONS(1532), + [anon_sym__Noreturn] = ACTIONS(1532), + [anon_sym_noreturn] = ACTIONS(1532), + [sym_primitive_type] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_case] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_goto] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(1532), + [anon_sym___alignof] = ACTIONS(1532), + [anon_sym__alignof] = ACTIONS(1532), + [anon_sym_alignof] = ACTIONS(1532), + [anon_sym__Alignof] = ACTIONS(1532), + [anon_sym_offsetof] = ACTIONS(1532), + [anon_sym__Generic] = ACTIONS(1532), + [anon_sym_asm] = ACTIONS(1532), + [anon_sym___asm__] = ACTIONS(1532), + [sym_number_literal] = ACTIONS(1534), + [anon_sym_L_SQUOTE] = ACTIONS(1534), + [anon_sym_u_SQUOTE] = ACTIONS(1534), + [anon_sym_U_SQUOTE] = ACTIONS(1534), + [anon_sym_u8_SQUOTE] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_L_DQUOTE] = ACTIONS(1534), + [anon_sym_u_DQUOTE] = ACTIONS(1534), + [anon_sym_U_DQUOTE] = ACTIONS(1534), + [anon_sym_u8_DQUOTE] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym_true] = ACTIONS(1532), + [sym_false] = ACTIONS(1532), + [anon_sym_NULL] = ACTIONS(1532), + [anon_sym_nullptr] = ACTIONS(1532), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [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), }, - [522] = { - [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), + [564] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1540), + [aux_sym_preproc_include_token1] = ACTIONS(1540), + [aux_sym_preproc_def_token1] = ACTIONS(1540), + [aux_sym_preproc_if_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1540), + [sym_preproc_directive] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym___extension__] = ACTIONS(1540), + [anon_sym_typedef] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1542), + [anon_sym___declspec] = ACTIONS(1540), + [anon_sym___cdecl] = ACTIONS(1540), + [anon_sym___clrcall] = ACTIONS(1540), + [anon_sym___stdcall] = ACTIONS(1540), + [anon_sym___fastcall] = ACTIONS(1540), + [anon_sym___thiscall] = ACTIONS(1540), + [anon_sym___vectorcall] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_signed] = ACTIONS(1540), + [anon_sym_unsigned] = ACTIONS(1540), + [anon_sym_long] = ACTIONS(1540), + [anon_sym_short] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_auto] = ACTIONS(1540), + [anon_sym_register] = ACTIONS(1540), + [anon_sym_inline] = ACTIONS(1540), + [anon_sym___inline] = ACTIONS(1540), + [anon_sym___inline__] = ACTIONS(1540), + [anon_sym___forceinline] = ACTIONS(1540), + [anon_sym_thread_local] = ACTIONS(1540), + [anon_sym___thread] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_constexpr] = ACTIONS(1540), + [anon_sym_volatile] = ACTIONS(1540), + [anon_sym_restrict] = ACTIONS(1540), + [anon_sym___restrict__] = ACTIONS(1540), + [anon_sym__Atomic] = ACTIONS(1540), + [anon_sym__Noreturn] = ACTIONS(1540), + [anon_sym_noreturn] = ACTIONS(1540), + [sym_primitive_type] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_goto] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_sizeof] = ACTIONS(1540), + [anon_sym___alignof__] = ACTIONS(1540), + [anon_sym___alignof] = ACTIONS(1540), + [anon_sym__alignof] = ACTIONS(1540), + [anon_sym_alignof] = ACTIONS(1540), + [anon_sym__Alignof] = ACTIONS(1540), + [anon_sym_offsetof] = ACTIONS(1540), + [anon_sym__Generic] = ACTIONS(1540), + [anon_sym_asm] = ACTIONS(1540), + [anon_sym___asm__] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_L_SQUOTE] = ACTIONS(1542), + [anon_sym_u_SQUOTE] = ACTIONS(1542), + [anon_sym_U_SQUOTE] = ACTIONS(1542), + [anon_sym_u8_SQUOTE] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_L_DQUOTE] = ACTIONS(1542), + [anon_sym_u_DQUOTE] = ACTIONS(1542), + [anon_sym_U_DQUOTE] = ACTIONS(1542), + [anon_sym_u8_DQUOTE] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [sym_true] = ACTIONS(1540), + [sym_false] = ACTIONS(1540), + [anon_sym_NULL] = ACTIONS(1540), + [anon_sym_nullptr] = ACTIONS(1540), [sym_comment] = ACTIONS(3), }, - [523] = { + [565] = { [ts_builtin_sym_end] = ACTIONS(1468), [sym_identifier] = ACTIONS(1466), [aux_sym_preproc_include_token1] = ACTIONS(1466), @@ -73168,1041 +77521,759 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [524] = { - [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), - }, - [525] = { - [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), - }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1490), - [aux_sym_preproc_include_token1] = ACTIONS(1490), - [aux_sym_preproc_def_token1] = ACTIONS(1490), - [aux_sym_preproc_if_token1] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), - [sym_preproc_directive] = ACTIONS(1490), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym___extension__] = ACTIONS(1490), - [anon_sym_typedef] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym___attribute__] = ACTIONS(1490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), - [anon_sym___declspec] = ACTIONS(1490), - [anon_sym___cdecl] = ACTIONS(1490), - [anon_sym___clrcall] = ACTIONS(1490), - [anon_sym___stdcall] = ACTIONS(1490), - [anon_sym___fastcall] = ACTIONS(1490), - [anon_sym___thiscall] = ACTIONS(1490), - [anon_sym___vectorcall] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_signed] = ACTIONS(1490), - [anon_sym_unsigned] = ACTIONS(1490), - [anon_sym_long] = ACTIONS(1490), - [anon_sym_short] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_auto] = ACTIONS(1490), - [anon_sym_register] = ACTIONS(1490), - [anon_sym_inline] = ACTIONS(1490), - [anon_sym___inline] = ACTIONS(1490), - [anon_sym___inline__] = ACTIONS(1490), - [anon_sym___forceinline] = ACTIONS(1490), - [anon_sym_thread_local] = ACTIONS(1490), - [anon_sym___thread] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_constexpr] = ACTIONS(1490), - [anon_sym_volatile] = ACTIONS(1490), - [anon_sym_restrict] = ACTIONS(1490), - [anon_sym___restrict__] = ACTIONS(1490), - [anon_sym__Atomic] = ACTIONS(1490), - [anon_sym__Noreturn] = ACTIONS(1490), - [anon_sym_noreturn] = ACTIONS(1490), - [sym_primitive_type] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_do] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_goto] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_sizeof] = ACTIONS(1490), - [anon_sym___alignof__] = ACTIONS(1490), - [anon_sym___alignof] = ACTIONS(1490), - [anon_sym__alignof] = ACTIONS(1490), - [anon_sym_alignof] = ACTIONS(1490), - [anon_sym__Alignof] = ACTIONS(1490), - [anon_sym_offsetof] = ACTIONS(1490), - [anon_sym__Generic] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1490), - [anon_sym___asm__] = ACTIONS(1490), - [sym_number_literal] = ACTIONS(1492), - [anon_sym_L_SQUOTE] = ACTIONS(1492), - [anon_sym_u_SQUOTE] = ACTIONS(1492), - [anon_sym_U_SQUOTE] = ACTIONS(1492), - [anon_sym_u8_SQUOTE] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_L_DQUOTE] = ACTIONS(1492), - [anon_sym_u_DQUOTE] = ACTIONS(1492), - [anon_sym_U_DQUOTE] = ACTIONS(1492), - [anon_sym_u8_DQUOTE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [anon_sym_NULL] = ACTIONS(1490), - [anon_sym_nullptr] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - }, - [527] = { - [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), + [566] = { + [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), }, - [528] = { - [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), + [567] = { + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(3), }, - [529] = { - [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), + [568] = { + [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), }, - [530] = { - [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), + [569] = { + [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), }, - [531] = { - [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), + [570] = { + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), + [sym_preproc_directive] = ACTIONS(1970), + [anon_sym_LPAREN2] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym___extension__] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym___attribute__] = ACTIONS(1970), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1970), + [anon_sym___cdecl] = ACTIONS(1970), + [anon_sym___clrcall] = ACTIONS(1970), + [anon_sym___stdcall] = ACTIONS(1970), + [anon_sym___fastcall] = ACTIONS(1970), + [anon_sym___thiscall] = ACTIONS(1970), + [anon_sym___vectorcall] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1970), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_auto] = ACTIONS(1970), + [anon_sym_register] = ACTIONS(1970), + [anon_sym_inline] = ACTIONS(1970), + [anon_sym___inline] = ACTIONS(1970), + [anon_sym___inline__] = ACTIONS(1970), + [anon_sym___forceinline] = ACTIONS(1970), + [anon_sym_thread_local] = ACTIONS(1970), + [anon_sym___thread] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_constexpr] = ACTIONS(1970), + [anon_sym_volatile] = ACTIONS(1970), + [anon_sym_restrict] = ACTIONS(1970), + [anon_sym___restrict__] = ACTIONS(1970), + [anon_sym__Atomic] = ACTIONS(1970), + [anon_sym__Noreturn] = ACTIONS(1970), + [anon_sym_noreturn] = ACTIONS(1970), + [sym_primitive_type] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_goto] = ACTIONS(1970), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_sizeof] = ACTIONS(1970), + [anon_sym___alignof__] = ACTIONS(1970), + [anon_sym___alignof] = ACTIONS(1970), + [anon_sym__alignof] = ACTIONS(1970), + [anon_sym_alignof] = ACTIONS(1970), + [anon_sym__Alignof] = ACTIONS(1970), + [anon_sym_offsetof] = ACTIONS(1970), + [anon_sym__Generic] = ACTIONS(1970), + [anon_sym_asm] = ACTIONS(1970), + [anon_sym___asm__] = ACTIONS(1970), + [sym_number_literal] = ACTIONS(1968), + [anon_sym_L_SQUOTE] = ACTIONS(1968), + [anon_sym_u_SQUOTE] = ACTIONS(1968), + [anon_sym_U_SQUOTE] = ACTIONS(1968), + [anon_sym_u8_SQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_L_DQUOTE] = ACTIONS(1968), + [anon_sym_u_DQUOTE] = ACTIONS(1968), + [anon_sym_U_DQUOTE] = ACTIONS(1968), + [anon_sym_u8_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [anon_sym_NULL] = ACTIONS(1970), + [anon_sym_nullptr] = ACTIONS(1970), [sym_comment] = ACTIONS(3), }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1494), - [aux_sym_preproc_include_token1] = ACTIONS(1494), - [aux_sym_preproc_def_token1] = ACTIONS(1494), - [aux_sym_preproc_if_token1] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), - [sym_preproc_directive] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym___extension__] = ACTIONS(1494), - [anon_sym_typedef] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym___attribute__] = ACTIONS(1494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), - [anon_sym___declspec] = ACTIONS(1494), - [anon_sym___cdecl] = ACTIONS(1494), - [anon_sym___clrcall] = ACTIONS(1494), - [anon_sym___stdcall] = ACTIONS(1494), - [anon_sym___fastcall] = ACTIONS(1494), - [anon_sym___thiscall] = ACTIONS(1494), - [anon_sym___vectorcall] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_signed] = ACTIONS(1494), - [anon_sym_unsigned] = ACTIONS(1494), - [anon_sym_long] = ACTIONS(1494), - [anon_sym_short] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_auto] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1494), - [anon_sym_inline] = ACTIONS(1494), - [anon_sym___inline] = ACTIONS(1494), - [anon_sym___inline__] = ACTIONS(1494), - [anon_sym___forceinline] = ACTIONS(1494), - [anon_sym_thread_local] = ACTIONS(1494), - [anon_sym___thread] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_constexpr] = ACTIONS(1494), - [anon_sym_volatile] = ACTIONS(1494), - [anon_sym_restrict] = ACTIONS(1494), - [anon_sym___restrict__] = ACTIONS(1494), - [anon_sym__Atomic] = ACTIONS(1494), - [anon_sym__Noreturn] = ACTIONS(1494), - [anon_sym_noreturn] = ACTIONS(1494), - [sym_primitive_type] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_do] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_goto] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1496), - [anon_sym_sizeof] = ACTIONS(1494), - [anon_sym___alignof__] = ACTIONS(1494), - [anon_sym___alignof] = ACTIONS(1494), - [anon_sym__alignof] = ACTIONS(1494), - [anon_sym_alignof] = ACTIONS(1494), - [anon_sym__Alignof] = ACTIONS(1494), - [anon_sym_offsetof] = ACTIONS(1494), - [anon_sym__Generic] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1494), - [anon_sym___asm__] = ACTIONS(1494), - [sym_number_literal] = ACTIONS(1496), - [anon_sym_L_SQUOTE] = ACTIONS(1496), - [anon_sym_u_SQUOTE] = ACTIONS(1496), - [anon_sym_U_SQUOTE] = ACTIONS(1496), - [anon_sym_u8_SQUOTE] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_L_DQUOTE] = ACTIONS(1496), - [anon_sym_u_DQUOTE] = ACTIONS(1496), - [anon_sym_U_DQUOTE] = ACTIONS(1496), - [anon_sym_u8_DQUOTE] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1496), - [sym_true] = ACTIONS(1494), - [sym_false] = ACTIONS(1494), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), + [571] = { + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym___attribute__] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1538), + [anon_sym___declspec] = ACTIONS(1536), + [anon_sym___cdecl] = ACTIONS(1536), + [anon_sym___clrcall] = ACTIONS(1536), + [anon_sym___stdcall] = ACTIONS(1536), + [anon_sym___fastcall] = ACTIONS(1536), + [anon_sym___thiscall] = ACTIONS(1536), + [anon_sym___vectorcall] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1536), + [anon_sym_unsigned] = ACTIONS(1536), + [anon_sym_long] = ACTIONS(1536), + [anon_sym_short] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(1536), + [anon_sym___inline] = ACTIONS(1536), + [anon_sym___inline__] = ACTIONS(1536), + [anon_sym___forceinline] = ACTIONS(1536), + [anon_sym_thread_local] = ACTIONS(1536), + [anon_sym___thread] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_constexpr] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1536), + [anon_sym_restrict] = ACTIONS(1536), + [anon_sym___restrict__] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1536), + [anon_sym__Noreturn] = ACTIONS(1536), + [anon_sym_noreturn] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1536), + [anon_sym_case] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1536), + [anon_sym___alignof__] = ACTIONS(1536), + [anon_sym___alignof] = ACTIONS(1536), + [anon_sym__alignof] = ACTIONS(1536), + [anon_sym_alignof] = ACTIONS(1536), + [anon_sym__Alignof] = ACTIONS(1536), + [anon_sym_offsetof] = ACTIONS(1536), + [anon_sym__Generic] = ACTIONS(1536), + [anon_sym_asm] = ACTIONS(1536), + [anon_sym___asm__] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1538), + [anon_sym_L_SQUOTE] = ACTIONS(1538), + [anon_sym_u_SQUOTE] = ACTIONS(1538), + [anon_sym_U_SQUOTE] = ACTIONS(1538), + [anon_sym_u8_SQUOTE] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_L_DQUOTE] = ACTIONS(1538), + [anon_sym_u_DQUOTE] = ACTIONS(1538), + [anon_sym_U_DQUOTE] = ACTIONS(1538), + [anon_sym_u8_DQUOTE] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [anon_sym_NULL] = ACTIONS(1536), + [anon_sym_nullptr] = ACTIONS(1536), [sym_comment] = ACTIONS(3), }, - [533] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1518), - [aux_sym_preproc_include_token1] = ACTIONS(1518), - [aux_sym_preproc_def_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token1] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), - [sym_preproc_directive] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym___extension__] = ACTIONS(1518), - [anon_sym_typedef] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), - [anon_sym___declspec] = ACTIONS(1518), - [anon_sym___cdecl] = ACTIONS(1518), - [anon_sym___clrcall] = ACTIONS(1518), - [anon_sym___stdcall] = ACTIONS(1518), - [anon_sym___fastcall] = ACTIONS(1518), - [anon_sym___thiscall] = ACTIONS(1518), - [anon_sym___vectorcall] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_auto] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym___inline] = ACTIONS(1518), - [anon_sym___inline__] = ACTIONS(1518), - [anon_sym___forceinline] = ACTIONS(1518), - [anon_sym_thread_local] = ACTIONS(1518), - [anon_sym___thread] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_constexpr] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_restrict] = ACTIONS(1518), - [anon_sym___restrict__] = ACTIONS(1518), - [anon_sym__Atomic] = ACTIONS(1518), - [anon_sym__Noreturn] = ACTIONS(1518), - [anon_sym_noreturn] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [anon_sym_sizeof] = ACTIONS(1518), - [anon_sym___alignof__] = ACTIONS(1518), - [anon_sym___alignof] = ACTIONS(1518), - [anon_sym__alignof] = ACTIONS(1518), - [anon_sym_alignof] = ACTIONS(1518), - [anon_sym__Alignof] = ACTIONS(1518), - [anon_sym_offsetof] = ACTIONS(1518), - [anon_sym__Generic] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1518), - [anon_sym___asm__] = ACTIONS(1518), - [sym_number_literal] = ACTIONS(1520), - [anon_sym_L_SQUOTE] = ACTIONS(1520), - [anon_sym_u_SQUOTE] = ACTIONS(1520), - [anon_sym_U_SQUOTE] = ACTIONS(1520), - [anon_sym_u8_SQUOTE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_L_DQUOTE] = ACTIONS(1520), - [anon_sym_u_DQUOTE] = ACTIONS(1520), - [anon_sym_U_DQUOTE] = ACTIONS(1520), - [anon_sym_u8_DQUOTE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [anon_sym_NULL] = ACTIONS(1518), - [anon_sym_nullptr] = ACTIONS(1518), + [572] = { + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_LPAREN2] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym___extension__] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym___attribute__] = ACTIONS(1974), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1974), + [anon_sym___cdecl] = ACTIONS(1974), + [anon_sym___clrcall] = ACTIONS(1974), + [anon_sym___stdcall] = ACTIONS(1974), + [anon_sym___fastcall] = ACTIONS(1974), + [anon_sym___thiscall] = ACTIONS(1974), + [anon_sym___vectorcall] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_auto] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym___inline] = ACTIONS(1974), + [anon_sym___inline__] = ACTIONS(1974), + [anon_sym___forceinline] = ACTIONS(1974), + [anon_sym_thread_local] = ACTIONS(1974), + [anon_sym___thread] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym___restrict__] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym__Noreturn] = ACTIONS(1974), + [anon_sym_noreturn] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1974), + [anon_sym___alignof__] = ACTIONS(1974), + [anon_sym___alignof] = ACTIONS(1974), + [anon_sym__alignof] = ACTIONS(1974), + [anon_sym_alignof] = ACTIONS(1974), + [anon_sym__Alignof] = ACTIONS(1974), + [anon_sym_offsetof] = ACTIONS(1974), + [anon_sym__Generic] = ACTIONS(1974), + [anon_sym_asm] = ACTIONS(1974), + [anon_sym___asm__] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1972), + [anon_sym_L_SQUOTE] = ACTIONS(1972), + [anon_sym_u_SQUOTE] = ACTIONS(1972), + [anon_sym_U_SQUOTE] = ACTIONS(1972), + [anon_sym_u8_SQUOTE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_L_DQUOTE] = ACTIONS(1972), + [anon_sym_u_DQUOTE] = ACTIONS(1972), + [anon_sym_U_DQUOTE] = ACTIONS(1972), + [anon_sym_u8_DQUOTE] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [anon_sym_NULL] = ACTIONS(1974), + [anon_sym_nullptr] = ACTIONS(1974), [sym_comment] = ACTIONS(3), }, - [534] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1522), - [aux_sym_preproc_include_token1] = ACTIONS(1522), - [aux_sym_preproc_def_token1] = ACTIONS(1522), - [aux_sym_preproc_if_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym___extension__] = ACTIONS(1522), - [anon_sym_typedef] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), - [anon_sym___declspec] = ACTIONS(1522), - [anon_sym___cdecl] = ACTIONS(1522), - [anon_sym___clrcall] = ACTIONS(1522), - [anon_sym___stdcall] = ACTIONS(1522), - [anon_sym___fastcall] = ACTIONS(1522), - [anon_sym___thiscall] = ACTIONS(1522), - [anon_sym___vectorcall] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_signed] = ACTIONS(1522), - [anon_sym_unsigned] = ACTIONS(1522), - [anon_sym_long] = ACTIONS(1522), - [anon_sym_short] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_auto] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym___inline] = ACTIONS(1522), - [anon_sym___inline__] = ACTIONS(1522), - [anon_sym___forceinline] = ACTIONS(1522), - [anon_sym_thread_local] = ACTIONS(1522), - [anon_sym___thread] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_constexpr] = ACTIONS(1522), - [anon_sym_volatile] = ACTIONS(1522), - [anon_sym_restrict] = ACTIONS(1522), - [anon_sym___restrict__] = ACTIONS(1522), - [anon_sym__Atomic] = ACTIONS(1522), - [anon_sym__Noreturn] = ACTIONS(1522), - [anon_sym_noreturn] = ACTIONS(1522), - [sym_primitive_type] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_goto] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [anon_sym_sizeof] = ACTIONS(1522), - [anon_sym___alignof__] = ACTIONS(1522), - [anon_sym___alignof] = ACTIONS(1522), - [anon_sym__alignof] = ACTIONS(1522), - [anon_sym_alignof] = ACTIONS(1522), - [anon_sym__Alignof] = ACTIONS(1522), - [anon_sym_offsetof] = ACTIONS(1522), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1522), - [anon_sym___asm__] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(1524), - [anon_sym_L_SQUOTE] = ACTIONS(1524), - [anon_sym_u_SQUOTE] = ACTIONS(1524), - [anon_sym_U_SQUOTE] = ACTIONS(1524), - [anon_sym_u8_SQUOTE] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_L_DQUOTE] = ACTIONS(1524), - [anon_sym_u_DQUOTE] = ACTIONS(1524), - [anon_sym_U_DQUOTE] = ACTIONS(1524), - [anon_sym_u8_DQUOTE] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [anon_sym_NULL] = ACTIONS(1522), - [anon_sym_nullptr] = ACTIONS(1522), + [573] = { + [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), }, - [535] = { + [574] = { [ts_builtin_sym_end] = ACTIONS(1460), [sym_identifier] = ACTIONS(1458), [aux_sym_preproc_include_token1] = ACTIONS(1458), @@ -74296,137 +78367,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [536] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), - [sym_preproc_directive] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym___extension__] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym___attribute__] = ACTIONS(1506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), - [anon_sym___declspec] = ACTIONS(1506), - [anon_sym___cdecl] = ACTIONS(1506), - [anon_sym___clrcall] = ACTIONS(1506), - [anon_sym___stdcall] = ACTIONS(1506), - [anon_sym___fastcall] = ACTIONS(1506), - [anon_sym___thiscall] = ACTIONS(1506), - [anon_sym___vectorcall] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_signed] = ACTIONS(1506), - [anon_sym_unsigned] = ACTIONS(1506), - [anon_sym_long] = ACTIONS(1506), - [anon_sym_short] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_auto] = ACTIONS(1506), - [anon_sym_register] = ACTIONS(1506), - [anon_sym_inline] = ACTIONS(1506), - [anon_sym___inline] = ACTIONS(1506), - [anon_sym___inline__] = ACTIONS(1506), - [anon_sym___forceinline] = ACTIONS(1506), - [anon_sym_thread_local] = ACTIONS(1506), - [anon_sym___thread] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_constexpr] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1506), - [anon_sym_restrict] = ACTIONS(1506), - [anon_sym___restrict__] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1506), - [anon_sym__Noreturn] = ACTIONS(1506), - [anon_sym_noreturn] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_goto] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1506), - [anon_sym___alignof__] = ACTIONS(1506), - [anon_sym___alignof] = ACTIONS(1506), - [anon_sym__alignof] = ACTIONS(1506), - [anon_sym_alignof] = ACTIONS(1506), - [anon_sym__Alignof] = ACTIONS(1506), - [anon_sym_offsetof] = ACTIONS(1506), - [anon_sym__Generic] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1506), - [anon_sym___asm__] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_L_SQUOTE] = ACTIONS(1508), - [anon_sym_u_SQUOTE] = ACTIONS(1508), - [anon_sym_U_SQUOTE] = ACTIONS(1508), - [anon_sym_u8_SQUOTE] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_L_DQUOTE] = ACTIONS(1508), - [anon_sym_u_DQUOTE] = ACTIONS(1508), - [anon_sym_U_DQUOTE] = ACTIONS(1508), - [anon_sym_u8_DQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [anon_sym_NULL] = ACTIONS(1506), - [anon_sym_nullptr] = ACTIONS(1506), + [575] = { + [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), }, - [537] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2221), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [576] = { + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1552), + [aux_sym_preproc_include_token1] = ACTIONS(1552), + [aux_sym_preproc_def_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1552), + [sym_preproc_directive] = ACTIONS(1552), + [anon_sym_LPAREN2] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym___extension__] = ACTIONS(1552), + [anon_sym_typedef] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym___attribute__] = ACTIONS(1552), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym___declspec] = ACTIONS(1552), + [anon_sym___cdecl] = ACTIONS(1552), + [anon_sym___clrcall] = ACTIONS(1552), + [anon_sym___stdcall] = ACTIONS(1552), + [anon_sym___fastcall] = ACTIONS(1552), + [anon_sym___thiscall] = ACTIONS(1552), + [anon_sym___vectorcall] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_signed] = ACTIONS(1552), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_auto] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_inline] = ACTIONS(1552), + [anon_sym___inline] = ACTIONS(1552), + [anon_sym___inline__] = ACTIONS(1552), + [anon_sym___forceinline] = ACTIONS(1552), + [anon_sym_thread_local] = ACTIONS(1552), + [anon_sym___thread] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_constexpr] = ACTIONS(1552), + [anon_sym_volatile] = ACTIONS(1552), + [anon_sym_restrict] = ACTIONS(1552), + [anon_sym___restrict__] = ACTIONS(1552), + [anon_sym__Atomic] = ACTIONS(1552), + [anon_sym__Noreturn] = ACTIONS(1552), + [anon_sym_noreturn] = ACTIONS(1552), + [sym_primitive_type] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1554), + [anon_sym_sizeof] = ACTIONS(1552), + [anon_sym___alignof__] = ACTIONS(1552), + [anon_sym___alignof] = ACTIONS(1552), + [anon_sym__alignof] = ACTIONS(1552), + [anon_sym_alignof] = ACTIONS(1552), + [anon_sym__Alignof] = ACTIONS(1552), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1552), + [anon_sym_asm] = ACTIONS(1552), + [anon_sym___asm__] = ACTIONS(1552), + [sym_number_literal] = ACTIONS(1554), + [anon_sym_L_SQUOTE] = ACTIONS(1554), + [anon_sym_u_SQUOTE] = ACTIONS(1554), + [anon_sym_U_SQUOTE] = ACTIONS(1554), + [anon_sym_u8_SQUOTE] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_L_DQUOTE] = ACTIONS(1554), + [anon_sym_u_DQUOTE] = ACTIONS(1554), + [anon_sym_U_DQUOTE] = ACTIONS(1554), + [anon_sym_u8_DQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym_true] = ACTIONS(1552), + [sym_false] = ACTIONS(1552), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [577] = { + [ts_builtin_sym_end] = ACTIONS(1558), + [sym_identifier] = ACTIONS(1556), + [aux_sym_preproc_include_token1] = ACTIONS(1556), + [aux_sym_preproc_def_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1556), + [sym_preproc_directive] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym___extension__] = ACTIONS(1556), + [anon_sym_typedef] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym___attribute__] = ACTIONS(1556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1558), + [anon_sym___declspec] = ACTIONS(1556), + [anon_sym___cdecl] = ACTIONS(1556), + [anon_sym___clrcall] = ACTIONS(1556), + [anon_sym___stdcall] = ACTIONS(1556), + [anon_sym___fastcall] = ACTIONS(1556), + [anon_sym___thiscall] = ACTIONS(1556), + [anon_sym___vectorcall] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_signed] = ACTIONS(1556), + [anon_sym_unsigned] = ACTIONS(1556), + [anon_sym_long] = ACTIONS(1556), + [anon_sym_short] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_auto] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_inline] = ACTIONS(1556), + [anon_sym___inline] = ACTIONS(1556), + [anon_sym___inline__] = ACTIONS(1556), + [anon_sym___forceinline] = ACTIONS(1556), + [anon_sym_thread_local] = ACTIONS(1556), + [anon_sym___thread] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_constexpr] = ACTIONS(1556), + [anon_sym_volatile] = ACTIONS(1556), + [anon_sym_restrict] = ACTIONS(1556), + [anon_sym___restrict__] = ACTIONS(1556), + [anon_sym__Atomic] = ACTIONS(1556), + [anon_sym__Noreturn] = ACTIONS(1556), + [anon_sym_noreturn] = ACTIONS(1556), + [sym_primitive_type] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_switch] = ACTIONS(1556), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_goto] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [anon_sym_sizeof] = ACTIONS(1556), + [anon_sym___alignof__] = ACTIONS(1556), + [anon_sym___alignof] = ACTIONS(1556), + [anon_sym__alignof] = ACTIONS(1556), + [anon_sym_alignof] = ACTIONS(1556), + [anon_sym__Alignof] = ACTIONS(1556), + [anon_sym_offsetof] = ACTIONS(1556), + [anon_sym__Generic] = ACTIONS(1556), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [sym_number_literal] = ACTIONS(1558), + [anon_sym_L_SQUOTE] = ACTIONS(1558), + [anon_sym_u_SQUOTE] = ACTIONS(1558), + [anon_sym_U_SQUOTE] = ACTIONS(1558), + [anon_sym_u8_SQUOTE] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_L_DQUOTE] = ACTIONS(1558), + [anon_sym_u_DQUOTE] = ACTIONS(1558), + [anon_sym_U_DQUOTE] = ACTIONS(1558), + [anon_sym_u8_DQUOTE] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [sym_true] = ACTIONS(1556), + [sym_false] = ACTIONS(1556), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [578] = { + [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), + }, + [579] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2283), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74435,10 +78788,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -74448,7 +78801,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -74480,43 +78833,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2142), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [580] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1376), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2240), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2207), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74525,10 +78878,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -74538,7 +78891,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -74570,43 +78923,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1288), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2157), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2303), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [581] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2249), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74615,10 +78968,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -74628,7 +78981,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -74660,43 +79013,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1288), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2157), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2200), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [582] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1376), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2240), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2334), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74705,10 +79058,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -74718,7 +79071,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -74750,43 +79103,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2143), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [583] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2188), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74795,10 +79148,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -74808,7 +79161,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -74840,43 +79193,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2394), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [584] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2341), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74885,10 +79238,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -74898,7 +79251,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -74930,43 +79283,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2300), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [585] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1376), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2240), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2191), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74975,10 +79328,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -74988,7 +79341,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75020,43 +79373,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [544] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2164), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [586] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1376), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2240), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2284), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75065,10 +79418,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75078,7 +79431,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75110,43 +79463,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [545] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1288), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2157), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2139), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [587] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2426), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75155,10 +79508,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75168,7 +79521,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75200,43 +79553,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [546] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2346), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [588] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2195), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75245,10 +79598,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75258,7 +79611,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75290,43 +79643,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [547] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1288), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2157), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2156), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [589] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2309), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75335,10 +79688,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75348,7 +79701,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75380,43 +79733,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2195), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [590] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2241), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75425,10 +79778,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75438,7 +79791,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75470,43 +79823,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [549] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2153), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [591] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2436), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75515,10 +79868,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75528,7 +79881,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75560,43 +79913,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [550] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2232), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [592] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2246), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75605,10 +79958,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75618,7 +79971,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75650,43 +80003,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [551] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2367), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [593] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2454), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75695,10 +80048,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75708,7 +80061,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75740,43 +80093,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_type_qualifier] = STATE(1373), - [sym__type_specifier] = STATE(1398), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__expression] = STATE(1327), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_comma_expression] = STATE(2222), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_type_descriptor] = STATE(2274), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__type_definition_type_repeat1] = STATE(1373), - [aux_sym_sized_type_specifier_repeat1] = STATE(1403), - [sym_identifier] = ACTIONS(1929), + [594] = { + [sym_type_qualifier] = STATE(1404), + [sym__type_specifier] = STATE(1440), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__expression] = STATE(1393), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_comma_expression] = STATE(2200), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_type_descriptor] = STATE(2393), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__type_definition_type_repeat1] = STATE(1404), + [aux_sym_sized_type_specifier_repeat1] = STATE(1455), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75785,10 +80138,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(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1978), + [anon_sym_unsigned] = ACTIONS(1978), + [anon_sym_long] = ACTIONS(1978), + [anon_sym_short] = ACTIONS(1978), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -75798,7 +80151,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(1933), + [anon_sym_enum] = ACTIONS(1980), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -75830,241 +80183,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym_identifier] = ACTIONS(1935), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_LPAREN2] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym___extension__] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym___attribute__] = ACTIONS(1935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1937), - [anon_sym___declspec] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_signed] = ACTIONS(1935), - [anon_sym_unsigned] = ACTIONS(1935), - [anon_sym_long] = ACTIONS(1935), - [anon_sym_short] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_EQ] = ACTIONS(1937), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_auto] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_inline] = ACTIONS(1935), - [anon_sym___inline] = ACTIONS(1935), - [anon_sym___inline__] = ACTIONS(1935), - [anon_sym___forceinline] = ACTIONS(1935), - [anon_sym_thread_local] = ACTIONS(1935), - [anon_sym___thread] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [anon_sym_constexpr] = ACTIONS(1935), - [anon_sym_volatile] = ACTIONS(1935), - [anon_sym_restrict] = ACTIONS(1935), - [anon_sym___restrict__] = ACTIONS(1935), - [anon_sym__Atomic] = ACTIONS(1935), - [anon_sym__Noreturn] = ACTIONS(1935), - [anon_sym_noreturn] = ACTIONS(1935), - [sym_primitive_type] = ACTIONS(1935), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_COLON] = ACTIONS(1937), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_union] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_switch] = ACTIONS(1935), - [anon_sym_case] = ACTIONS(1935), - [anon_sym_default] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_goto] = ACTIONS(1935), - [anon_sym___try] = ACTIONS(1935), - [anon_sym___leave] = ACTIONS(1935), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_PLUS_PLUS] = ACTIONS(1937), - [anon_sym_sizeof] = ACTIONS(1935), - [anon_sym___alignof__] = ACTIONS(1935), - [anon_sym___alignof] = ACTIONS(1935), - [anon_sym__alignof] = ACTIONS(1935), - [anon_sym_alignof] = ACTIONS(1935), - [anon_sym__Alignof] = ACTIONS(1935), - [anon_sym_offsetof] = ACTIONS(1935), - [anon_sym__Generic] = ACTIONS(1935), - [anon_sym_asm] = ACTIONS(1935), - [anon_sym___asm__] = ACTIONS(1935), - [sym_number_literal] = ACTIONS(1937), - [anon_sym_L_SQUOTE] = ACTIONS(1937), - [anon_sym_u_SQUOTE] = ACTIONS(1937), - [anon_sym_U_SQUOTE] = ACTIONS(1937), - [anon_sym_u8_SQUOTE] = ACTIONS(1937), - [anon_sym_SQUOTE] = ACTIONS(1937), - [anon_sym_L_DQUOTE] = ACTIONS(1937), - [anon_sym_u_DQUOTE] = ACTIONS(1937), - [anon_sym_U_DQUOTE] = ACTIONS(1937), - [anon_sym_u8_DQUOTE] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym_true] = ACTIONS(1935), - [sym_false] = ACTIONS(1935), - [anon_sym_NULL] = ACTIONS(1935), - [anon_sym_nullptr] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - }, - [554] = { - [sym__expression] = STATE(902), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(983), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(983), - [sym_call_expression] = STATE(983), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(983), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(983), - [sym_initializer_list] = STATE(861), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(890), - [sym_null] = STATE(884), - [sym_identifier] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1540), - [aux_sym_preproc_if_token2] = ACTIONS(1540), - [aux_sym_preproc_else_token1] = ACTIONS(1540), - [aux_sym_preproc_elif_token1] = ACTIONS(1546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1540), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1943), - [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(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), - [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), + [595] = { + [sym_identifier] = ACTIONS(1982), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_TILDE] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_PLUS] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym___extension__] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym___attribute__] = ACTIONS(1982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym___declspec] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1982), + [anon_sym_auto] = ACTIONS(1982), + [anon_sym_register] = ACTIONS(1982), + [anon_sym_inline] = ACTIONS(1982), + [anon_sym___inline] = ACTIONS(1982), + [anon_sym___inline__] = ACTIONS(1982), + [anon_sym___forceinline] = ACTIONS(1982), + [anon_sym_thread_local] = ACTIONS(1982), + [anon_sym___thread] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [anon_sym_constexpr] = ACTIONS(1982), + [anon_sym_volatile] = ACTIONS(1982), + [anon_sym_restrict] = ACTIONS(1982), + [anon_sym___restrict__] = ACTIONS(1982), + [anon_sym__Atomic] = ACTIONS(1982), + [anon_sym__Noreturn] = ACTIONS(1982), + [anon_sym_noreturn] = ACTIONS(1982), + [sym_primitive_type] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_COLON] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1982), + [anon_sym_union] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_switch] = ACTIONS(1982), + [anon_sym_case] = ACTIONS(1982), + [anon_sym_default] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_do] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_goto] = ACTIONS(1982), + [anon_sym___try] = ACTIONS(1982), + [anon_sym___leave] = ACTIONS(1982), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_sizeof] = ACTIONS(1982), + [anon_sym___alignof__] = ACTIONS(1982), + [anon_sym___alignof] = ACTIONS(1982), + [anon_sym__alignof] = ACTIONS(1982), + [anon_sym_alignof] = ACTIONS(1982), + [anon_sym__Alignof] = ACTIONS(1982), + [anon_sym_offsetof] = ACTIONS(1982), + [anon_sym__Generic] = ACTIONS(1982), + [anon_sym_asm] = ACTIONS(1982), + [anon_sym___asm__] = ACTIONS(1982), + [sym_number_literal] = ACTIONS(1984), + [anon_sym_L_SQUOTE] = ACTIONS(1984), + [anon_sym_u_SQUOTE] = ACTIONS(1984), + [anon_sym_U_SQUOTE] = ACTIONS(1984), + [anon_sym_u8_SQUOTE] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1984), + [anon_sym_L_DQUOTE] = ACTIONS(1984), + [anon_sym_u_DQUOTE] = ACTIONS(1984), + [anon_sym_U_DQUOTE] = ACTIONS(1984), + [anon_sym_u8_DQUOTE] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1984), + [sym_true] = ACTIONS(1982), + [sym_false] = ACTIONS(1982), + [anon_sym_NULL] = ACTIONS(1982), + [anon_sym_nullptr] = ACTIONS(1982), [sym_comment] = ACTIONS(3), }, - [555] = { - [sym__expression] = STATE(902), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(861), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_identifier] = ACTIONS(1945), - [anon_sym_COMMA] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), + [596] = { + [sym__expression] = STATE(934), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(928), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_identifier] = ACTIONS(1986), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym___attribute__] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_COLON] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -76075,8 +80340,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(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -76094,236 +80359,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [556] = { - [sym_identifier] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1949), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_LPAREN2] = ACTIONS(1949), - [anon_sym_BANG] = ACTIONS(1949), - [anon_sym_TILDE] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1949), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_SEMI] = ACTIONS(1949), - [anon_sym___extension__] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym___attribute__] = ACTIONS(1947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1949), - [anon_sym___declspec] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_signed] = ACTIONS(1947), - [anon_sym_unsigned] = ACTIONS(1947), - [anon_sym_long] = ACTIONS(1947), - [anon_sym_short] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_EQ] = ACTIONS(1949), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_auto] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_inline] = ACTIONS(1947), - [anon_sym___inline] = ACTIONS(1947), - [anon_sym___inline__] = ACTIONS(1947), - [anon_sym___forceinline] = ACTIONS(1947), - [anon_sym_thread_local] = ACTIONS(1947), - [anon_sym___thread] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_constexpr] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1947), - [anon_sym_restrict] = ACTIONS(1947), - [anon_sym___restrict__] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1947), - [anon_sym__Noreturn] = ACTIONS(1947), - [anon_sym_noreturn] = ACTIONS(1947), - [sym_primitive_type] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1947), - [anon_sym_case] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_goto] = ACTIONS(1947), - [anon_sym___try] = ACTIONS(1947), - [anon_sym___leave] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1949), - [anon_sym_PLUS_PLUS] = ACTIONS(1949), - [anon_sym_sizeof] = ACTIONS(1947), - [anon_sym___alignof__] = ACTIONS(1947), - [anon_sym___alignof] = ACTIONS(1947), - [anon_sym__alignof] = ACTIONS(1947), - [anon_sym_alignof] = ACTIONS(1947), - [anon_sym__Alignof] = ACTIONS(1947), - [anon_sym_offsetof] = ACTIONS(1947), - [anon_sym__Generic] = ACTIONS(1947), - [anon_sym_asm] = ACTIONS(1947), - [anon_sym___asm__] = ACTIONS(1947), - [sym_number_literal] = ACTIONS(1949), - [anon_sym_L_SQUOTE] = ACTIONS(1949), - [anon_sym_u_SQUOTE] = ACTIONS(1949), - [anon_sym_U_SQUOTE] = ACTIONS(1949), - [anon_sym_u8_SQUOTE] = ACTIONS(1949), - [anon_sym_SQUOTE] = ACTIONS(1949), - [anon_sym_L_DQUOTE] = ACTIONS(1949), - [anon_sym_u_DQUOTE] = ACTIONS(1949), - [anon_sym_U_DQUOTE] = ACTIONS(1949), - [anon_sym_u8_DQUOTE] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [anon_sym_NULL] = ACTIONS(1947), - [anon_sym_nullptr] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - }, - [557] = { - [sym__expression] = STATE(996), - [sym__expression_not_binary] = STATE(1073), - [sym__string] = STATE(1073), - [sym_conditional_expression] = STATE(1073), - [sym_assignment_expression] = STATE(1073), - [sym_pointer_expression] = STATE(1088), - [sym_unary_expression] = STATE(1073), - [sym_binary_expression] = STATE(1073), - [sym_update_expression] = STATE(1073), - [sym_cast_expression] = STATE(1073), - [sym_sizeof_expression] = STATE(1073), - [sym_alignof_expression] = STATE(1073), - [sym_offsetof_expression] = STATE(1073), - [sym_generic_expression] = STATE(1073), - [sym_subscript_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_gnu_asm_expression] = STATE(1073), - [sym_field_expression] = STATE(1088), - [sym_compound_literal_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1088), - [sym_initializer_list] = STATE(1053), - [sym_char_literal] = STATE(1073), - [sym_concatenated_string] = STATE(1073), - [sym_string_literal] = STATE(910), - [sym_null] = STATE(1073), - [sym_identifier] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1540), - [aux_sym_preproc_if_token2] = ACTIONS(1540), - [aux_sym_preproc_else_token1] = ACTIONS(1540), - [aux_sym_preproc_elif_token1] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1955), - [anon_sym___alignof__] = ACTIONS(1828), - [anon_sym___alignof] = ACTIONS(1828), - [anon_sym__alignof] = ACTIONS(1828), - [anon_sym_alignof] = ACTIONS(1828), - [anon_sym__Alignof] = ACTIONS(1828), - [anon_sym_offsetof] = ACTIONS(1830), - [anon_sym__Generic] = ACTIONS(1832), - [anon_sym_asm] = ACTIONS(1834), - [anon_sym___asm__] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1838), - [anon_sym_u_SQUOTE] = ACTIONS(1838), - [anon_sym_U_SQUOTE] = ACTIONS(1838), - [anon_sym_u8_SQUOTE] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [anon_sym_NULL] = ACTIONS(1844), - [anon_sym_nullptr] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), - }, - [558] = { - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_initializer_list] = STATE(861), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [sym_identifier] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_RBRACK] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1963), + [597] = { + [sym__expression] = STATE(934), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1020), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1020), + [sym_initializer_list] = STATE(928), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(942), + [sym_null] = STATE(894), + [sym_identifier] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1579), + [aux_sym_preproc_if_token2] = ACTIONS(1579), + [aux_sym_preproc_else_token1] = ACTIONS(1579), + [aux_sym_preproc_elif_token1] = ACTIONS(1585), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1579), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1992), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -76333,8 +80428,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(1546), - [anon_sym_DASH_GT] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -76352,8 +80447,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [559] = { - [sym_else_clause] = STATE(325), + [598] = { + [sym_identifier] = ACTIONS(1994), + [anon_sym_COMMA] = ACTIONS(1996), + [anon_sym_RPAREN] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_TILDE] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_PLUS] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym___extension__] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym___attribute__] = ACTIONS(1994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_signed] = ACTIONS(1994), + [anon_sym_unsigned] = ACTIONS(1994), + [anon_sym_long] = ACTIONS(1994), + [anon_sym_short] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_EQ] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_auto] = ACTIONS(1994), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_inline] = ACTIONS(1994), + [anon_sym___inline] = ACTIONS(1994), + [anon_sym___inline__] = ACTIONS(1994), + [anon_sym___forceinline] = ACTIONS(1994), + [anon_sym_thread_local] = ACTIONS(1994), + [anon_sym___thread] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_constexpr] = ACTIONS(1994), + [anon_sym_volatile] = ACTIONS(1994), + [anon_sym_restrict] = ACTIONS(1994), + [anon_sym___restrict__] = ACTIONS(1994), + [anon_sym__Atomic] = ACTIONS(1994), + [anon_sym__Noreturn] = ACTIONS(1994), + [anon_sym_noreturn] = ACTIONS(1994), + [sym_primitive_type] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_COLON] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_switch] = ACTIONS(1994), + [anon_sym_case] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_goto] = ACTIONS(1994), + [anon_sym___try] = ACTIONS(1994), + [anon_sym___leave] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym_PLUS_PLUS] = ACTIONS(1996), + [anon_sym_sizeof] = ACTIONS(1994), + [anon_sym___alignof__] = ACTIONS(1994), + [anon_sym___alignof] = ACTIONS(1994), + [anon_sym__alignof] = ACTIONS(1994), + [anon_sym_alignof] = ACTIONS(1994), + [anon_sym__Alignof] = ACTIONS(1994), + [anon_sym_offsetof] = ACTIONS(1994), + [anon_sym__Generic] = ACTIONS(1994), + [anon_sym_asm] = ACTIONS(1994), + [anon_sym___asm__] = ACTIONS(1994), + [sym_number_literal] = ACTIONS(1996), + [anon_sym_L_SQUOTE] = ACTIONS(1996), + [anon_sym_u_SQUOTE] = ACTIONS(1996), + [anon_sym_U_SQUOTE] = ACTIONS(1996), + [anon_sym_u8_SQUOTE] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_L_DQUOTE] = ACTIONS(1996), + [anon_sym_u_DQUOTE] = ACTIONS(1996), + [anon_sym_U_DQUOTE] = ACTIONS(1996), + [anon_sym_u8_DQUOTE] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym_true] = ACTIONS(1994), + [sym_false] = ACTIONS(1994), + [anon_sym_NULL] = ACTIONS(1994), + [anon_sym_nullptr] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + }, + [599] = { + [sym_else_clause] = STATE(411), + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(601), [sym_identifier] = ACTIONS(1292), [anon_sym_LPAREN2] = ACTIONS(1294), [anon_sym_BANG] = ACTIONS(1294), @@ -76396,7 +80581,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(1965), + [anon_sym_else] = ACTIONS(1292), [anon_sym_switch] = ACTIONS(1292), [anon_sym_while] = ACTIONS(1292), [anon_sym_do] = ACTIONS(1292), @@ -76436,165 +80621,509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [560] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(1986), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [600] = { + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(1117), + [sym__string] = STATE(1117), + [sym_conditional_expression] = STATE(1117), + [sym_assignment_expression] = STATE(1117), + [sym_pointer_expression] = STATE(1116), + [sym_unary_expression] = STATE(1117), + [sym_binary_expression] = STATE(1117), + [sym_update_expression] = STATE(1117), + [sym_cast_expression] = STATE(1117), + [sym_sizeof_expression] = STATE(1117), + [sym_alignof_expression] = STATE(1117), + [sym_offsetof_expression] = STATE(1117), + [sym_generic_expression] = STATE(1117), + [sym_subscript_expression] = STATE(1116), + [sym_call_expression] = STATE(1116), + [sym_gnu_asm_expression] = STATE(1117), + [sym_field_expression] = STATE(1116), + [sym_compound_literal_expression] = STATE(1117), + [sym_parenthesized_expression] = STATE(1116), + [sym_initializer_list] = STATE(1112), + [sym_char_literal] = STATE(1117), + [sym_concatenated_string] = STATE(1117), + [sym_string_literal] = STATE(953), + [sym_null] = STATE(1117), + [sym_identifier] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(1579), + [aux_sym_preproc_if_token2] = ACTIONS(1579), + [aux_sym_preproc_else_token1] = ACTIONS(1579), + [aux_sym_preproc_elif_token1] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(2002), + [anon_sym___alignof__] = ACTIONS(1719), + [anon_sym___alignof] = ACTIONS(1719), + [anon_sym__alignof] = ACTIONS(1719), + [anon_sym_alignof] = ACTIONS(1719), + [anon_sym__Alignof] = ACTIONS(1719), + [anon_sym_offsetof] = ACTIONS(1721), + [anon_sym__Generic] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1725), + [anon_sym___asm__] = ACTIONS(1725), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), + [sym_number_literal] = ACTIONS(1727), + [anon_sym_L_SQUOTE] = ACTIONS(1729), + [anon_sym_u_SQUOTE] = ACTIONS(1729), + [anon_sym_U_SQUOTE] = ACTIONS(1729), + [anon_sym_u8_SQUOTE] = ACTIONS(1729), + [anon_sym_SQUOTE] = ACTIONS(1729), + [anon_sym_L_DQUOTE] = ACTIONS(1731), + [anon_sym_u_DQUOTE] = ACTIONS(1731), + [anon_sym_U_DQUOTE] = ACTIONS(1731), + [anon_sym_u8_DQUOTE] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [anon_sym_NULL] = ACTIONS(1735), + [anon_sym_nullptr] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + }, + [601] = { + [sym_else_clause] = STATE(400), + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(603), + [sym_identifier] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym___try] = ACTIONS(1296), + [anon_sym___leave] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + }, + [602] = { + [sym_else_clause] = STATE(411), + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(601), + [sym_identifier] = 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_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(2004), + [anon_sym_switch] = 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), + }, + [603] = { + [sym_else_if_clause] = STATE(409), + [aux_sym_if_statement_repeat1] = STATE(603), + [sym_identifier] = 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_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(2006), + [anon_sym_switch] = 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), + }, + [604] = { + [sym__expression] = STATE(1141), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_initializer_list] = STATE(928), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [sym_identifier] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(2015), + [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(1585), + [anon_sym_DASH_GT] = ACTIONS(1579), + [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), }, - [561] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(1990), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [605] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2039), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -76602,165 +81131,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [562] = { - [sym_identifier] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_TILDE] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym___extension__] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(1999), - [anon_sym___attribute__] = ACTIONS(1999), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2001), - [anon_sym___declspec] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1999), - [anon_sym_unsigned] = ACTIONS(1999), - [anon_sym_long] = ACTIONS(1999), - [anon_sym_short] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_auto] = ACTIONS(1999), - [anon_sym_register] = ACTIONS(1999), - [anon_sym_inline] = ACTIONS(1999), - [anon_sym___inline] = ACTIONS(1999), - [anon_sym___inline__] = ACTIONS(1999), - [anon_sym___forceinline] = ACTIONS(1999), - [anon_sym_thread_local] = ACTIONS(1999), - [anon_sym___thread] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_constexpr] = ACTIONS(1999), - [anon_sym_volatile] = ACTIONS(1999), - [anon_sym_restrict] = ACTIONS(1999), - [anon_sym___restrict__] = ACTIONS(1999), - [anon_sym__Atomic] = ACTIONS(1999), - [anon_sym__Noreturn] = ACTIONS(1999), - [anon_sym_noreturn] = ACTIONS(1999), - [sym_primitive_type] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_union] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_switch] = ACTIONS(1997), - [anon_sym_case] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_goto] = ACTIONS(1997), - [anon_sym___try] = ACTIONS(1997), - [anon_sym___leave] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(1995), - [anon_sym_sizeof] = ACTIONS(1997), - [anon_sym___alignof__] = ACTIONS(1997), - [anon_sym___alignof] = ACTIONS(1997), - [anon_sym__alignof] = ACTIONS(1997), - [anon_sym_alignof] = ACTIONS(1997), - [anon_sym__Alignof] = ACTIONS(1997), - [anon_sym_offsetof] = ACTIONS(1997), - [anon_sym__Generic] = ACTIONS(1997), - [anon_sym_asm] = ACTIONS(1997), - [anon_sym___asm__] = ACTIONS(1997), - [sym_number_literal] = ACTIONS(1995), - [anon_sym_L_SQUOTE] = ACTIONS(1995), - [anon_sym_u_SQUOTE] = ACTIONS(1995), - [anon_sym_U_SQUOTE] = ACTIONS(1995), - [anon_sym_u8_SQUOTE] = ACTIONS(1995), - [anon_sym_SQUOTE] = ACTIONS(1995), - [anon_sym_L_DQUOTE] = ACTIONS(1995), - [anon_sym_u_DQUOTE] = ACTIONS(1995), - [anon_sym_U_DQUOTE] = ACTIONS(1995), - [anon_sym_u8_DQUOTE] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym_true] = ACTIONS(1997), - [sym_false] = ACTIONS(1997), - [anon_sym_NULL] = ACTIONS(1997), - [anon_sym_nullptr] = ACTIONS(1997), + [606] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), + [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_comment] = ACTIONS(3), }, - [563] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [607] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2045), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -76768,82 +81297,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [564] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [608] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2039), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -76851,82 +81380,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [565] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [609] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2047), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -76934,82 +81463,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [566] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [610] = { + [sym_identifier] = ACTIONS(2049), + [anon_sym_LPAREN2] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_PLUS] = ACTIONS(2054), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym___extension__] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym___attribute__] = ACTIONS(2056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2058), + [anon_sym___declspec] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2056), + [anon_sym_unsigned] = ACTIONS(2056), + [anon_sym_long] = ACTIONS(2056), + [anon_sym_short] = ACTIONS(2056), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_auto] = ACTIONS(2056), + [anon_sym_register] = ACTIONS(2056), + [anon_sym_inline] = ACTIONS(2056), + [anon_sym___inline] = ACTIONS(2056), + [anon_sym___inline__] = ACTIONS(2056), + [anon_sym___forceinline] = ACTIONS(2056), + [anon_sym_thread_local] = ACTIONS(2056), + [anon_sym___thread] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_constexpr] = ACTIONS(2056), + [anon_sym_volatile] = ACTIONS(2056), + [anon_sym_restrict] = ACTIONS(2056), + [anon_sym___restrict__] = ACTIONS(2056), + [anon_sym__Atomic] = ACTIONS(2056), + [anon_sym__Noreturn] = ACTIONS(2056), + [anon_sym_noreturn] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_switch] = ACTIONS(2054), + [anon_sym_case] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_do] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_goto] = ACTIONS(2054), + [anon_sym___try] = ACTIONS(2054), + [anon_sym___leave] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(2052), + [anon_sym_sizeof] = ACTIONS(2054), + [anon_sym___alignof__] = ACTIONS(2054), + [anon_sym___alignof] = ACTIONS(2054), + [anon_sym__alignof] = ACTIONS(2054), + [anon_sym_alignof] = ACTIONS(2054), + [anon_sym__Alignof] = ACTIONS(2054), + [anon_sym_offsetof] = ACTIONS(2054), + [anon_sym__Generic] = ACTIONS(2054), + [anon_sym_asm] = ACTIONS(2054), + [anon_sym___asm__] = ACTIONS(2054), + [sym_number_literal] = ACTIONS(2052), + [anon_sym_L_SQUOTE] = ACTIONS(2052), + [anon_sym_u_SQUOTE] = ACTIONS(2052), + [anon_sym_U_SQUOTE] = ACTIONS(2052), + [anon_sym_u8_SQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2052), + [anon_sym_L_DQUOTE] = ACTIONS(2052), + [anon_sym_u_DQUOTE] = ACTIONS(2052), + [anon_sym_U_DQUOTE] = ACTIONS(2052), + [anon_sym_u8_DQUOTE] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym_true] = ACTIONS(2054), + [sym_false] = ACTIONS(2054), + [anon_sym_NULL] = ACTIONS(2054), + [anon_sym_nullptr] = ACTIONS(2054), + [sym_comment] = ACTIONS(3), + }, + [611] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -77017,82 +81629,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [567] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(1990), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [612] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2047), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -77100,82 +81712,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [568] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2013), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [613] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -77183,82 +81795,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [569] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [614] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2045), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -77266,82 +81878,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [570] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2013), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [615] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2043), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -77349,81 +81961,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [571] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [616] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_COLON] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -77431,81 +82043,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [572] = { - [sym_string_literal] = STATE(824), - [aux_sym_sized_type_specifier_repeat1] = STATE(1017), - [sym_identifier] = ACTIONS(1967), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PLUS] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_EQ_EQ] = ACTIONS(1969), - [anon_sym_BANG_EQ] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1975), - [anon_sym_GT_GT] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym___attribute__] = ACTIONS(1967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), - [anon_sym___declspec] = ACTIONS(1967), - [anon_sym___based] = ACTIONS(1967), - [anon_sym___cdecl] = ACTIONS(1967), - [anon_sym___clrcall] = ACTIONS(1967), - [anon_sym___stdcall] = ACTIONS(1967), - [anon_sym___fastcall] = ACTIONS(1967), - [anon_sym___thiscall] = ACTIONS(1967), - [anon_sym___vectorcall] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_auto] = ACTIONS(1967), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym___inline] = ACTIONS(1967), - [anon_sym___inline__] = ACTIONS(1967), - [anon_sym___forceinline] = ACTIONS(1967), - [anon_sym_thread_local] = ACTIONS(1967), - [anon_sym___thread] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_constexpr] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_restrict] = ACTIONS(1967), - [anon_sym___restrict__] = ACTIONS(1967), - [anon_sym__Atomic] = ACTIONS(1967), - [anon_sym__Noreturn] = ACTIONS(1967), - [anon_sym_noreturn] = ACTIONS(1967), - [anon_sym_COLON] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1988), - [anon_sym_SLASH_EQ] = ACTIONS(1988), - [anon_sym_PERCENT_EQ] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(1988), - [anon_sym_DASH_EQ] = ACTIONS(1988), - [anon_sym_LT_LT_EQ] = ACTIONS(1988), - [anon_sym_GT_GT_EQ] = ACTIONS(1988), - [anon_sym_AMP_EQ] = ACTIONS(1988), - [anon_sym_CARET_EQ] = ACTIONS(1988), - [anon_sym_PIPE_EQ] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1969), + [617] = { + [sym_string_literal] = STATE(867), + [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(2017), + [anon_sym_COMMA] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2025), + [anon_sym_PERCENT] = ACTIONS(2025), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_CARET] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2025), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_LT_LT] = ACTIONS(2025), + [anon_sym_GT_GT] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym___extension__] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym___attribute__] = ACTIONS(2017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2033), + [anon_sym___declspec] = ACTIONS(2017), + [anon_sym___based] = ACTIONS(2017), + [anon_sym___cdecl] = ACTIONS(2017), + [anon_sym___clrcall] = ACTIONS(2017), + [anon_sym___stdcall] = ACTIONS(2017), + [anon_sym___fastcall] = ACTIONS(2017), + [anon_sym___thiscall] = ACTIONS(2017), + [anon_sym___vectorcall] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_auto] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym___inline] = ACTIONS(2017), + [anon_sym___inline__] = ACTIONS(2017), + [anon_sym___forceinline] = ACTIONS(2017), + [anon_sym_thread_local] = ACTIONS(2017), + [anon_sym___thread] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_constexpr] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_restrict] = ACTIONS(2017), + [anon_sym___restrict__] = ACTIONS(2017), + [anon_sym__Atomic] = ACTIONS(2017), + [anon_sym__Noreturn] = ACTIONS(2017), + [anon_sym_noreturn] = ACTIONS(2017), + [anon_sym_QMARK] = ACTIONS(2019), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2019), + [anon_sym_DASH_GT] = ACTIONS(2019), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -77513,49 +82125,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [573] = { - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1443), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_based_modifier] = STATE(2409), - [sym_ms_call_modifier] = STATE(1552), - [sym__declarator] = STATE(1714), - [sym__abstract_declarator] = STATE(1852), - [sym_parenthesized_declarator] = STATE(1647), - [sym_abstract_parenthesized_declarator] = STATE(1786), - [sym_attributed_declarator] = STATE(1647), - [sym_pointer_declarator] = STATE(1647), - [sym_abstract_pointer_declarator] = STATE(1786), - [sym_function_declarator] = STATE(1647), - [sym_abstract_function_declarator] = STATE(1786), - [sym_array_declarator] = STATE(1647), - [sym_abstract_array_declarator] = STATE(1786), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_variadic_parameter] = STATE(2016), - [sym_parameter_list] = STATE(1788), - [sym_parameter_declaration] = STATE(2016), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_LPAREN2] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2023), + [618] = { + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1528), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_based_modifier] = STATE(2301), + [sym_ms_call_modifier] = STATE(1594), + [sym__declarator] = STATE(1782), + [sym__abstract_declarator] = STATE(1874), + [sym_parenthesized_declarator] = STATE(1690), + [sym_abstract_parenthesized_declarator] = STATE(1829), + [sym_attributed_declarator] = STATE(1690), + [sym_pointer_declarator] = STATE(1690), + [sym_abstract_pointer_declarator] = STATE(1829), + [sym_function_declarator] = STATE(1690), + [sym_abstract_function_declarator] = STATE(1829), + [sym_array_declarator] = STATE(1690), + [sym_abstract_array_declarator] = STATE(1829), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_variadic_parameter] = STATE(1946), + [sym_parameter_list] = STATE(1830), + [sym_parameter_declaration] = STATE(1946), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LPAREN2] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(2073), [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(2025), + [anon_sym___based] = ACTIONS(2075), [anon_sym___cdecl] = ACTIONS(39), [anon_sym___clrcall] = ACTIONS(39), [anon_sym___stdcall] = ACTIONS(39), @@ -77566,7 +82178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2077), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -77590,54 +82202,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [574] = { - [sym_type_qualifier] = STATE(908), - [sym__expression] = STATE(1384), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2037), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [619] = { + [sym_type_qualifier] = STATE(954), + [sym__expression] = STATE(1402), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -77664,54 +82276,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [575] = { - [sym_type_qualifier] = STATE(579), - [sym__expression] = STATE(1356), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(579), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [620] = { + [sym_type_qualifier] = STATE(623), + [sym__expression] = STATE(1411), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -77738,54 +82350,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [576] = { - [sym_type_qualifier] = STATE(580), - [sym__expression] = STATE(1360), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(580), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [621] = { + [sym_type_qualifier] = STATE(628), + [sym__expression] = STATE(1424), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(628), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -77812,54 +82424,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [577] = { - [sym_type_qualifier] = STATE(574), - [sym__expression] = STATE(1359), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(574), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [622] = { + [sym_type_qualifier] = STATE(954), + [sym__expression] = STATE(1430), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -77886,54 +82498,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [578] = { - [sym_type_qualifier] = STATE(908), - [sym__expression] = STATE(1381), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [623] = { + [sym_type_qualifier] = STATE(954), + [sym__expression] = STATE(1417), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -77960,54 +82572,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [579] = { - [sym_type_qualifier] = STATE(908), - [sym__expression] = STATE(1363), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [624] = { + [sym_type_qualifier] = STATE(622), + [sym__expression] = STATE(1418), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(622), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -78034,54 +82646,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [580] = { - [sym_type_qualifier] = STATE(908), - [sym__expression] = STATE(1378), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [625] = { + [sym_type_qualifier] = STATE(619), + [sym__expression] = STATE(1423), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(619), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -78108,54 +82720,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [581] = { - [sym_type_qualifier] = STATE(908), - [sym__expression] = STATE(1354), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [626] = { + [sym_type_qualifier] = STATE(627), + [sym__expression] = STATE(1428), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(627), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -78182,54 +82794,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [582] = { - [sym_type_qualifier] = STATE(578), - [sym__expression] = STATE(1376), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(578), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [627] = { + [sym_type_qualifier] = STATE(954), + [sym__expression] = STATE(1415), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -78256,54 +82868,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [583] = { - [sym_type_qualifier] = STATE(581), - [sym__expression] = STATE(1366), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1138), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1138), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1138), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym__type_definition_type_repeat1] = STATE(581), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym___extension__] = ACTIONS(2035), - [anon_sym_RBRACK] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_constexpr] = ACTIONS(2035), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [anon_sym___restrict__] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [anon_sym__Noreturn] = ACTIONS(2035), - [anon_sym_noreturn] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_sizeof] = ACTIONS(1963), + [628] = { + [sym_type_qualifier] = STATE(954), + [sym__expression] = STATE(1422), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1183), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1183), + [sym_call_expression] = STATE(1183), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1183), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1183), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym__type_definition_type_repeat1] = STATE(954), + [sym_identifier] = ACTIONS(2009), + [anon_sym_LPAREN2] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_constexpr] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_restrict] = ACTIONS(2085), + [anon_sym___restrict__] = ACTIONS(2085), + [anon_sym__Atomic] = ACTIONS(2085), + [anon_sym__Noreturn] = ACTIONS(2085), + [anon_sym_noreturn] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2015), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -78330,39 +82942,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [584] = { - [sym__expression] = STATE(1277), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(2001), - [sym_initializer_pair] = STATE(2001), - [sym_subscript_designator] = STATE(1734), - [sym_subscript_range_designator] = STATE(1734), - [sym_field_designator] = STATE(1734), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_initializer_pair_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2079), + [629] = { + [sym__expression] = STATE(1325), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(2046), + [sym_initializer_pair] = STATE(2046), + [sym_subscript_designator] = STATE(1778), + [sym_subscript_range_designator] = STATE(1778), + [sym_field_designator] = STATE(1778), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_initializer_pair_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78370,9 +82982,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(1548), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2133), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -78385,7 +82997,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(2085), + [anon_sym_DOT] = ACTIONS(2135), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -78403,39 +83015,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [585] = { - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(1897), - [sym_initializer_pair] = STATE(1897), - [sym_subscript_designator] = STATE(1734), - [sym_subscript_range_designator] = STATE(1734), - [sym_field_designator] = STATE(1734), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_initializer_pair_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2087), + [630] = { + [sym__expression] = STATE(1320), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(2001), + [sym_initializer_pair] = STATE(2001), + [sym_subscript_designator] = STATE(1778), + [sym_subscript_range_designator] = STATE(1778), + [sym_field_designator] = STATE(1778), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_initializer_pair_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2137), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78443,9 +83055,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(1548), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2133), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -78458,7 +83070,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(2085), + [anon_sym_DOT] = ACTIONS(2135), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -78476,38 +83088,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [586] = { - [sym__expression] = STATE(1316), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(2086), - [sym_initializer_pair] = STATE(2086), - [sym_subscript_designator] = STATE(1734), - [sym_subscript_range_designator] = STATE(1734), - [sym_field_designator] = STATE(1734), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_initializer_pair_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(2077), + [631] = { + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(2175), + [sym_initializer_pair] = STATE(2175), + [sym_subscript_designator] = STATE(1778), + [sym_subscript_range_designator] = STATE(1778), + [sym_field_designator] = STATE(1778), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_initializer_pair_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78515,9 +83127,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(1548), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2133), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -78530,7 +83142,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(2085), + [anon_sym_DOT] = ACTIONS(2135), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -78548,38 +83160,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [587] = { - [sym__expression] = STATE(1316), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(2086), - [sym_initializer_pair] = STATE(2086), - [sym_subscript_designator] = STATE(1734), - [sym_subscript_range_designator] = STATE(1734), - [sym_field_designator] = STATE(1734), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_initializer_pair_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(2077), + [632] = { + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(2175), + [sym_initializer_pair] = STATE(2175), + [sym_subscript_designator] = STATE(1778), + [sym_subscript_range_designator] = STATE(1778), + [sym_field_designator] = STATE(1778), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_initializer_pair_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78587,9 +83199,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(1548), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2133), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -78602,7 +83214,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(2085), + [anon_sym_DOT] = ACTIONS(2135), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -78620,38 +83232,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [588] = { - [sym__expression] = STATE(1316), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(2086), - [sym_initializer_pair] = STATE(2086), - [sym_subscript_designator] = STATE(1734), - [sym_subscript_range_designator] = STATE(1734), - [sym_field_designator] = STATE(1734), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_initializer_pair_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(2077), + [633] = { + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(2175), + [sym_initializer_pair] = STATE(2175), + [sym_subscript_designator] = STATE(1778), + [sym_subscript_range_designator] = STATE(1778), + [sym_field_designator] = STATE(1778), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_initializer_pair_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78659,9 +83271,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(1548), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2133), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -78674,7 +83286,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(2085), + [anon_sym_DOT] = ACTIONS(2135), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -78692,38 +83304,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [589] = { - [sym__expression] = STATE(1316), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(2086), - [sym_initializer_pair] = STATE(2086), - [sym_subscript_designator] = STATE(1734), - [sym_subscript_range_designator] = STATE(1734), - [sym_field_designator] = STATE(1734), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_initializer_pair_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(2077), + [634] = { + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(2175), + [sym_initializer_pair] = STATE(2175), + [sym_subscript_designator] = STATE(1778), + [sym_subscript_range_designator] = STATE(1778), + [sym_field_designator] = STATE(1778), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_initializer_pair_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78731,9 +83343,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(1548), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2133), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -78746,7 +83358,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(2085), + [anon_sym_DOT] = ACTIONS(2135), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -78764,38 +83376,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [590] = { - [sym__expression] = STATE(1316), - [sym__expression_not_binary] = STATE(884), - [sym__string] = STATE(884), - [sym_conditional_expression] = STATE(884), - [sym_assignment_expression] = STATE(884), - [sym_pointer_expression] = STATE(1003), - [sym_unary_expression] = STATE(884), - [sym_binary_expression] = STATE(884), - [sym_update_expression] = STATE(884), - [sym_cast_expression] = STATE(884), - [sym_sizeof_expression] = STATE(884), - [sym_alignof_expression] = STATE(884), - [sym_offsetof_expression] = STATE(884), - [sym_generic_expression] = STATE(884), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_gnu_asm_expression] = STATE(884), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(884), - [sym_parenthesized_expression] = STATE(1003), - [sym_initializer_list] = STATE(2086), - [sym_initializer_pair] = STATE(2086), - [sym_subscript_designator] = STATE(1734), - [sym_subscript_range_designator] = STATE(1734), - [sym_field_designator] = STATE(1734), - [sym_char_literal] = STATE(884), - [sym_concatenated_string] = STATE(884), - [sym_string_literal] = STATE(845), - [sym_null] = STATE(884), - [aux_sym_initializer_pair_repeat1] = STATE(1734), - [sym_identifier] = ACTIONS(2077), + [635] = { + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(894), + [sym__string] = STATE(894), + [sym_conditional_expression] = STATE(894), + [sym_assignment_expression] = STATE(894), + [sym_pointer_expression] = STATE(1085), + [sym_unary_expression] = STATE(894), + [sym_binary_expression] = STATE(894), + [sym_update_expression] = STATE(894), + [sym_cast_expression] = STATE(894), + [sym_sizeof_expression] = STATE(894), + [sym_alignof_expression] = STATE(894), + [sym_offsetof_expression] = STATE(894), + [sym_generic_expression] = STATE(894), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_gnu_asm_expression] = STATE(894), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(894), + [sym_parenthesized_expression] = STATE(1085), + [sym_initializer_list] = STATE(2175), + [sym_initializer_pair] = STATE(2175), + [sym_subscript_designator] = STATE(1778), + [sym_subscript_range_designator] = STATE(1778), + [sym_field_designator] = STATE(1778), + [sym_char_literal] = STATE(894), + [sym_concatenated_string] = STATE(894), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(894), + [aux_sym_initializer_pair_repeat1] = STATE(1778), + [sym_identifier] = ACTIONS(2127), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -78803,8 +83415,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(1548), - [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(2133), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -78817,7 +83429,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(2085), + [anon_sym_DOT] = ACTIONS(2135), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -78835,44 +83447,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [591] = { - [sym_preproc_def] = STATE(597), - [sym_preproc_function_def] = STATE(597), - [sym_preproc_call] = STATE(597), - [sym_preproc_if_in_field_declaration_list] = STATE(597), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(597), - [sym_preproc_else_in_field_declaration_list] = STATE(2256), - [sym_preproc_elif_in_field_declaration_list] = STATE(2256), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2256), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(597), - [sym_field_declaration] = STATE(597), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(597), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [636] = { + [sym_preproc_def] = STATE(653), + [sym_preproc_function_def] = STATE(653), + [sym_preproc_call] = STATE(653), + [sym_preproc_if_in_field_declaration_list] = STATE(653), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), + [sym_preproc_else_in_field_declaration_list] = STATE(2288), + [sym_preproc_elif_in_field_declaration_list] = STATE(2288), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2288), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(653), + [sym_field_declaration] = STATE(653), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -78905,44 +83517,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [592] = { - [sym_preproc_def] = STATE(601), - [sym_preproc_function_def] = STATE(601), - [sym_preproc_call] = STATE(601), - [sym_preproc_if_in_field_declaration_list] = STATE(601), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), - [sym_preproc_else_in_field_declaration_list] = STATE(2341), - [sym_preproc_elif_in_field_declaration_list] = STATE(2341), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2341), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(601), - [sym_field_declaration] = STATE(601), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [637] = { + [sym_preproc_def] = STATE(641), + [sym_preproc_function_def] = STATE(641), + [sym_preproc_call] = STATE(641), + [sym_preproc_if_in_field_declaration_list] = STATE(641), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), + [sym_preproc_else_in_field_declaration_list] = STATE(2319), + [sym_preproc_elif_in_field_declaration_list] = STATE(2319), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2319), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(641), + [sym_field_declaration] = STATE(641), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -78975,44 +83587,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [593] = { - [sym_preproc_def] = STATE(594), - [sym_preproc_function_def] = STATE(594), - [sym_preproc_call] = STATE(594), - [sym_preproc_if_in_field_declaration_list] = STATE(594), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(594), - [sym_preproc_else_in_field_declaration_list] = STATE(2184), - [sym_preproc_elif_in_field_declaration_list] = STATE(2184), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2184), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(594), - [sym_field_declaration] = STATE(594), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(594), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [638] = { + [sym_preproc_def] = STATE(653), + [sym_preproc_function_def] = STATE(653), + [sym_preproc_call] = STATE(653), + [sym_preproc_if_in_field_declaration_list] = STATE(653), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), + [sym_preproc_else_in_field_declaration_list] = STATE(2302), + [sym_preproc_elif_in_field_declaration_list] = STATE(2302), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2302), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(653), + [sym_field_declaration] = STATE(653), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79045,44 +83657,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [594] = { - [sym_preproc_def] = STATE(601), - [sym_preproc_function_def] = STATE(601), - [sym_preproc_call] = STATE(601), - [sym_preproc_if_in_field_declaration_list] = STATE(601), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), - [sym_preproc_else_in_field_declaration_list] = STATE(2187), - [sym_preproc_elif_in_field_declaration_list] = STATE(2187), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2187), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(601), - [sym_field_declaration] = STATE(601), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [639] = { + [sym_preproc_def] = STATE(638), + [sym_preproc_function_def] = STATE(638), + [sym_preproc_call] = STATE(638), + [sym_preproc_if_in_field_declaration_list] = STATE(638), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(638), + [sym_preproc_else_in_field_declaration_list] = STATE(2470), + [sym_preproc_elif_in_field_declaration_list] = STATE(2470), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2470), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(638), + [sym_field_declaration] = STATE(638), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(638), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79115,44 +83727,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [595] = { - [sym_preproc_def] = STATE(596), - [sym_preproc_function_def] = STATE(596), - [sym_preproc_call] = STATE(596), - [sym_preproc_if_in_field_declaration_list] = STATE(596), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(596), - [sym_preproc_else_in_field_declaration_list] = STATE(2218), - [sym_preproc_elif_in_field_declaration_list] = STATE(2218), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2218), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(596), - [sym_field_declaration] = STATE(596), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(596), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [640] = { + [sym_preproc_def] = STATE(653), + [sym_preproc_function_def] = STATE(653), + [sym_preproc_call] = STATE(653), + [sym_preproc_if_in_field_declaration_list] = STATE(653), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), + [sym_preproc_else_in_field_declaration_list] = STATE(2390), + [sym_preproc_elif_in_field_declaration_list] = STATE(2390), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2390), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(653), + [sym_field_declaration] = STATE(653), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79185,44 +83797,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [596] = { - [sym_preproc_def] = STATE(601), - [sym_preproc_function_def] = STATE(601), - [sym_preproc_call] = STATE(601), - [sym_preproc_if_in_field_declaration_list] = STATE(601), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), - [sym_preproc_else_in_field_declaration_list] = STATE(2351), - [sym_preproc_elif_in_field_declaration_list] = STATE(2351), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2351), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(601), - [sym_field_declaration] = STATE(601), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [641] = { + [sym_preproc_def] = STATE(653), + [sym_preproc_function_def] = STATE(653), + [sym_preproc_call] = STATE(653), + [sym_preproc_if_in_field_declaration_list] = STATE(653), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), + [sym_preproc_else_in_field_declaration_list] = STATE(2308), + [sym_preproc_elif_in_field_declaration_list] = STATE(2308), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2308), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(653), + [sym_field_declaration] = STATE(653), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79255,44 +83867,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [597] = { - [sym_preproc_def] = STATE(601), - [sym_preproc_function_def] = STATE(601), - [sym_preproc_call] = STATE(601), - [sym_preproc_if_in_field_declaration_list] = STATE(601), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), - [sym_preproc_else_in_field_declaration_list] = STATE(2248), - [sym_preproc_elif_in_field_declaration_list] = STATE(2248), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2248), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(601), - [sym_field_declaration] = STATE(601), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [642] = { + [sym_preproc_def] = STATE(636), + [sym_preproc_function_def] = STATE(636), + [sym_preproc_call] = STATE(636), + [sym_preproc_if_in_field_declaration_list] = STATE(636), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(636), + [sym_preproc_else_in_field_declaration_list] = STATE(2307), + [sym_preproc_elif_in_field_declaration_list] = STATE(2307), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2307), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(636), + [sym_field_declaration] = STATE(636), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(636), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79325,44 +83937,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [598] = { - [sym_preproc_def] = STATE(592), - [sym_preproc_function_def] = STATE(592), - [sym_preproc_call] = STATE(592), - [sym_preproc_if_in_field_declaration_list] = STATE(592), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(592), - [sym_preproc_else_in_field_declaration_list] = STATE(2356), - [sym_preproc_elif_in_field_declaration_list] = STATE(2356), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2356), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(592), - [sym_field_declaration] = STATE(592), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(592), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2101), - [aux_sym_preproc_if_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token2] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), - [sym_preproc_directive] = ACTIONS(2115), + [643] = { + [sym_preproc_def] = STATE(640), + [sym_preproc_function_def] = STATE(640), + [sym_preproc_call] = STATE(640), + [sym_preproc_if_in_field_declaration_list] = STATE(640), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(640), + [sym_preproc_else_in_field_declaration_list] = STATE(2401), + [sym_preproc_elif_in_field_declaration_list] = STATE(2401), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2401), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(640), + [sym_field_declaration] = STATE(640), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(640), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token1] = ACTIONS(2153), + [aux_sym_preproc_if_token2] = ACTIONS(2179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2157), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2163), + [sym_preproc_directive] = ACTIONS(2165), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79395,36 +84007,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [599] = { - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1443), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_ms_call_modifier] = STATE(1656), - [sym__abstract_declarator] = STATE(1852), - [sym_abstract_parenthesized_declarator] = STATE(1786), - [sym_abstract_pointer_declarator] = STATE(1786), - [sym_abstract_function_declarator] = STATE(1786), - [sym_abstract_array_declarator] = STATE(1786), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym_variadic_parameter] = STATE(2016), - [sym_parameter_list] = STATE(1788), - [sym_parameter_declaration] = STATE(2016), - [sym_macro_type_specifier] = STATE(998), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_LPAREN2] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2133), + [644] = { + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1528), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_ms_call_modifier] = STATE(1714), + [sym__abstract_declarator] = STATE(1874), + [sym_abstract_parenthesized_declarator] = STATE(1829), + [sym_abstract_pointer_declarator] = STATE(1829), + [sym_abstract_function_declarator] = STATE(1829), + [sym_abstract_array_declarator] = STATE(1829), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym_variadic_parameter] = STATE(1946), + [sym_parameter_list] = STATE(1830), + [sym_parameter_declaration] = STATE(1946), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LPAREN2] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2183), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79440,7 +84052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2077), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -79464,41 +84076,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [600] = { - [sym_preproc_def] = STATE(611), - [sym_preproc_function_def] = STATE(611), - [sym_preproc_call] = STATE(611), - [sym_preproc_if_in_field_declaration_list] = STATE(611), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(611), - [sym_preproc_else_in_field_declaration_list] = STATE(2201), - [sym_preproc_elif_in_field_declaration_list] = STATE(2201), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(611), - [sym_field_declaration] = STATE(611), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(611), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [645] = { + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_field_declaration_list] = STATE(661), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(661), + [sym_preproc_else_in_field_declaration_list] = STATE(2428), + [sym_preproc_elif_in_field_declaration_list] = STATE(2428), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(661), + [sym_field_declaration] = STATE(661), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(661), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79531,108 +84143,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [601] = { - [sym_preproc_def] = STATE(601), - [sym_preproc_function_def] = STATE(601), - [sym_preproc_call] = STATE(601), - [sym_preproc_if_in_field_declaration_list] = STATE(601), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1577), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(601), - [sym_field_declaration] = STATE(601), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2145), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2151), - [aux_sym_preproc_if_token2] = ACTIONS(2154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), - [aux_sym_preproc_else_token1] = ACTIONS(2154), - [aux_sym_preproc_elif_token1] = ACTIONS(2154), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2154), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2154), - [sym_preproc_directive] = ACTIONS(2159), - [anon_sym___extension__] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym___attribute__] = ACTIONS(2168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2171), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2177), - [anon_sym_unsigned] = ACTIONS(2177), - [anon_sym_long] = ACTIONS(2177), - [anon_sym_short] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_auto] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_inline] = ACTIONS(2165), - [anon_sym___inline] = ACTIONS(2165), - [anon_sym___inline__] = ACTIONS(2165), - [anon_sym___forceinline] = ACTIONS(2165), - [anon_sym_thread_local] = ACTIONS(2165), - [anon_sym___thread] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_constexpr] = ACTIONS(2162), - [anon_sym_volatile] = ACTIONS(2162), - [anon_sym_restrict] = ACTIONS(2162), - [anon_sym___restrict__] = ACTIONS(2162), - [anon_sym__Atomic] = ACTIONS(2162), - [anon_sym__Noreturn] = ACTIONS(2162), - [anon_sym_noreturn] = ACTIONS(2162), - [sym_primitive_type] = ACTIONS(2180), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2186), - [anon_sym_union] = ACTIONS(2189), - [sym_comment] = ACTIONS(3), - }, - [602] = { - [sym_preproc_def] = STATE(612), - [sym_preproc_function_def] = STATE(612), - [sym_preproc_call] = STATE(612), - [sym_preproc_if_in_field_declaration_list] = STATE(612), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(612), - [sym_preproc_else_in_field_declaration_list] = STATE(2251), - [sym_preproc_elif_in_field_declaration_list] = STATE(2251), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(612), - [sym_field_declaration] = STATE(612), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(612), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [646] = { + [sym_preproc_def] = STATE(647), + [sym_preproc_function_def] = STATE(647), + [sym_preproc_call] = STATE(647), + [sym_preproc_if_in_field_declaration_list] = STATE(647), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(647), + [sym_preproc_else_in_field_declaration_list] = STATE(2306), + [sym_preproc_elif_in_field_declaration_list] = STATE(2306), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(647), + [sym_field_declaration] = STATE(647), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(647), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79665,41 +84210,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [603] = { - [sym_preproc_def] = STATE(608), - [sym_preproc_function_def] = STATE(608), - [sym_preproc_call] = STATE(608), - [sym_preproc_if_in_field_declaration_list] = STATE(608), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(608), - [sym_preproc_else_in_field_declaration_list] = STATE(2261), - [sym_preproc_elif_in_field_declaration_list] = STATE(2261), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(608), - [sym_field_declaration] = STATE(608), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(608), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [647] = { + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_field_declaration_list] = STATE(661), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(661), + [sym_preproc_else_in_field_declaration_list] = STATE(2400), + [sym_preproc_elif_in_field_declaration_list] = STATE(2400), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(661), + [sym_field_declaration] = STATE(661), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(661), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79732,41 +84277,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [604] = { - [sym_preproc_def] = STATE(616), - [sym_preproc_function_def] = STATE(616), - [sym_preproc_call] = STATE(616), - [sym_preproc_if_in_field_declaration_list] = STATE(616), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), - [sym_preproc_else_in_field_declaration_list] = STATE(2359), - [sym_preproc_elif_in_field_declaration_list] = STATE(2359), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(616), - [sym_field_declaration] = STATE(616), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [648] = { + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_field_declaration_list] = STATE(661), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(661), + [sym_preproc_else_in_field_declaration_list] = STATE(2404), + [sym_preproc_elif_in_field_declaration_list] = STATE(2404), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(661), + [sym_field_declaration] = STATE(661), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(661), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79799,41 +84344,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [605] = { - [sym_preproc_def] = STATE(604), - [sym_preproc_function_def] = STATE(604), - [sym_preproc_call] = STATE(604), - [sym_preproc_if_in_field_declaration_list] = STATE(604), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(604), - [sym_preproc_else_in_field_declaration_list] = STATE(2396), - [sym_preproc_elif_in_field_declaration_list] = STATE(2396), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(604), - [sym_field_declaration] = STATE(604), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(604), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2198), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [649] = { + [sym_preproc_def] = STATE(652), + [sym_preproc_function_def] = STATE(652), + [sym_preproc_call] = STATE(652), + [sym_preproc_if_in_field_declaration_list] = STATE(652), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(652), + [sym_preproc_else_in_field_declaration_list] = STATE(2416), + [sym_preproc_elif_in_field_declaration_list] = STATE(2416), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(652), + [sym_field_declaration] = STATE(652), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(652), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79866,41 +84411,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [606] = { - [sym_preproc_def] = STATE(610), - [sym_preproc_function_def] = STATE(610), - [sym_preproc_call] = STATE(610), - [sym_preproc_if_in_field_declaration_list] = STATE(610), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(610), - [sym_preproc_else_in_field_declaration_list] = STATE(2345), - [sym_preproc_elif_in_field_declaration_list] = STATE(2345), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(610), - [sym_field_declaration] = STATE(610), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(610), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [650] = { + [sym_preproc_def] = STATE(648), + [sym_preproc_function_def] = STATE(648), + [sym_preproc_call] = STATE(648), + [sym_preproc_if_in_field_declaration_list] = STATE(648), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(648), + [sym_preproc_else_in_field_declaration_list] = STATE(2375), + [sym_preproc_elif_in_field_declaration_list] = STATE(2375), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(648), + [sym_field_declaration] = STATE(648), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(648), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -79933,41 +84478,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [607] = { - [sym_preproc_def] = STATE(609), - [sym_preproc_function_def] = STATE(609), - [sym_preproc_call] = STATE(609), - [sym_preproc_if_in_field_declaration_list] = STATE(609), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(609), - [sym_preproc_else_in_field_declaration_list] = STATE(2186), - [sym_preproc_elif_in_field_declaration_list] = STATE(2186), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(609), - [sym_field_declaration] = STATE(609), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(609), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [651] = { + [sym_preproc_def] = STATE(645), + [sym_preproc_function_def] = STATE(645), + [sym_preproc_call] = STATE(645), + [sym_preproc_if_in_field_declaration_list] = STATE(645), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(645), + [sym_preproc_else_in_field_declaration_list] = STATE(2253), + [sym_preproc_elif_in_field_declaration_list] = STATE(2253), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(645), + [sym_field_declaration] = STATE(645), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(645), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -80000,41 +84545,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [608] = { - [sym_preproc_def] = STATE(616), - [sym_preproc_function_def] = STATE(616), - [sym_preproc_call] = STATE(616), - [sym_preproc_if_in_field_declaration_list] = STATE(616), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), - [sym_preproc_else_in_field_declaration_list] = STATE(2393), - [sym_preproc_elif_in_field_declaration_list] = STATE(2393), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(616), - [sym_field_declaration] = STATE(616), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [652] = { + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_field_declaration_list] = STATE(661), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(661), + [sym_preproc_else_in_field_declaration_list] = STATE(2265), + [sym_preproc_elif_in_field_declaration_list] = STATE(2265), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(661), + [sym_field_declaration] = STATE(661), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(661), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -80067,41 +84612,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [609] = { - [sym_preproc_def] = STATE(616), - [sym_preproc_function_def] = STATE(616), - [sym_preproc_call] = STATE(616), - [sym_preproc_if_in_field_declaration_list] = STATE(616), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), - [sym_preproc_else_in_field_declaration_list] = STATE(2191), - [sym_preproc_elif_in_field_declaration_list] = STATE(2191), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(616), - [sym_field_declaration] = STATE(616), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2206), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [653] = { + [sym_preproc_def] = STATE(653), + [sym_preproc_function_def] = STATE(653), + [sym_preproc_call] = STATE(653), + [sym_preproc_if_in_field_declaration_list] = STATE(653), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1620), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(653), + [sym_field_declaration] = STATE(653), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2209), + [aux_sym_preproc_def_token1] = ACTIONS(2212), + [aux_sym_preproc_if_token1] = ACTIONS(2215), + [aux_sym_preproc_if_token2] = ACTIONS(2218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2220), + [aux_sym_preproc_else_token1] = ACTIONS(2218), + [aux_sym_preproc_elif_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2218), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2218), + [sym_preproc_directive] = ACTIONS(2223), + [anon_sym___extension__] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym___attribute__] = ACTIONS(2232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2235), + [anon_sym___declspec] = ACTIONS(2238), + [anon_sym_signed] = ACTIONS(2241), + [anon_sym_unsigned] = ACTIONS(2241), + [anon_sym_long] = ACTIONS(2241), + [anon_sym_short] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_auto] = ACTIONS(2229), + [anon_sym_register] = ACTIONS(2229), + [anon_sym_inline] = ACTIONS(2229), + [anon_sym___inline] = ACTIONS(2229), + [anon_sym___inline__] = ACTIONS(2229), + [anon_sym___forceinline] = ACTIONS(2229), + [anon_sym_thread_local] = ACTIONS(2229), + [anon_sym___thread] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_constexpr] = ACTIONS(2226), + [anon_sym_volatile] = ACTIONS(2226), + [anon_sym_restrict] = ACTIONS(2226), + [anon_sym___restrict__] = ACTIONS(2226), + [anon_sym__Atomic] = ACTIONS(2226), + [anon_sym__Noreturn] = ACTIONS(2226), + [anon_sym_noreturn] = ACTIONS(2226), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2253), + [sym_comment] = ACTIONS(3), + }, + [654] = { + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_field_declaration_list] = STATE(661), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(661), + [sym_preproc_else_in_field_declaration_list] = STATE(2381), + [sym_preproc_elif_in_field_declaration_list] = STATE(2381), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(661), + [sym_field_declaration] = STATE(661), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(661), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -80134,41 +84746,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [610] = { - [sym_preproc_def] = STATE(616), - [sym_preproc_function_def] = STATE(616), - [sym_preproc_call] = STATE(616), - [sym_preproc_if_in_field_declaration_list] = STATE(616), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), - [sym_preproc_else_in_field_declaration_list] = STATE(2338), - [sym_preproc_elif_in_field_declaration_list] = STATE(2338), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(616), - [sym_field_declaration] = STATE(616), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [655] = { + [sym_preproc_def] = STATE(654), + [sym_preproc_function_def] = STATE(654), + [sym_preproc_call] = STATE(654), + [sym_preproc_if_in_field_declaration_list] = STATE(654), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(654), + [sym_preproc_else_in_field_declaration_list] = STATE(2395), + [sym_preproc_elif_in_field_declaration_list] = STATE(2395), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(654), + [sym_field_declaration] = STATE(654), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(654), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -80201,41 +84813,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [611] = { - [sym_preproc_def] = STATE(616), - [sym_preproc_function_def] = STATE(616), - [sym_preproc_call] = STATE(616), - [sym_preproc_if_in_field_declaration_list] = STATE(616), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), - [sym_preproc_else_in_field_declaration_list] = STATE(2258), - [sym_preproc_elif_in_field_declaration_list] = STATE(2258), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(616), - [sym_field_declaration] = STATE(616), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2210), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [656] = { + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_field_declaration_list] = STATE(661), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(661), + [sym_preproc_else_in_field_declaration_list] = STATE(2287), + [sym_preproc_elif_in_field_declaration_list] = STATE(2287), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(661), + [sym_field_declaration] = STATE(661), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(661), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -80268,41 +84880,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [612] = { - [sym_preproc_def] = STATE(616), - [sym_preproc_function_def] = STATE(616), - [sym_preproc_call] = STATE(616), - [sym_preproc_if_in_field_declaration_list] = STATE(616), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), - [sym_preproc_else_in_field_declaration_list] = STATE(2247), - [sym_preproc_elif_in_field_declaration_list] = STATE(2247), - [sym__declaration_modifiers] = STATE(932), - [sym__declaration_specifiers] = STATE(1572), - [sym_attribute_specifier] = STATE(932), - [sym_attribute_declaration] = STATE(932), - [sym_ms_declspec_modifier] = STATE(932), - [sym_storage_class_specifier] = STATE(932), - [sym_type_qualifier] = STATE(932), - [sym__type_specifier] = STATE(955), - [sym_sized_type_specifier] = STATE(998), - [sym_enum_specifier] = STATE(998), - [sym_struct_specifier] = STATE(998), - [sym_union_specifier] = STATE(998), - [sym__field_declaration_list_item] = STATE(616), - [sym_field_declaration] = STATE(616), - [sym_macro_type_specifier] = STATE(998), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), - [aux_sym__declaration_specifiers_repeat1] = STATE(932), - [aux_sym_sized_type_specifier_repeat1] = STATE(1006), - [sym_identifier] = ACTIONS(2099), - [aux_sym_preproc_def_token1] = ACTIONS(2135), - [aux_sym_preproc_if_token1] = ACTIONS(2137), - [aux_sym_preproc_if_token2] = ACTIONS(2212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), - [aux_sym_preproc_else_token1] = ACTIONS(2109), - [aux_sym_preproc_elif_token1] = ACTIONS(2111), - [sym_preproc_directive] = ACTIONS(2143), + [657] = { + [sym_preproc_def] = STATE(656), + [sym_preproc_function_def] = STATE(656), + [sym_preproc_call] = STATE(656), + [sym_preproc_if_in_field_declaration_list] = STATE(656), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(656), + [sym_preproc_else_in_field_declaration_list] = STATE(2292), + [sym_preproc_elif_in_field_declaration_list] = STATE(2292), + [sym__declaration_modifiers] = STATE(974), + [sym__declaration_specifiers] = STATE(1623), + [sym_attribute_specifier] = STATE(974), + [sym_attribute_declaration] = STATE(974), + [sym_ms_declspec_modifier] = STATE(974), + [sym_storage_class_specifier] = STATE(974), + [sym_type_qualifier] = STATE(974), + [sym__type_specifier] = STATE(1022), + [sym_sized_type_specifier] = STATE(1050), + [sym_enum_specifier] = STATE(1050), + [sym_struct_specifier] = STATE(1050), + [sym_union_specifier] = STATE(1050), + [sym__field_declaration_list_item] = STATE(656), + [sym_field_declaration] = STATE(656), + [sym_macro_type_specifier] = STATE(1050), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(656), + [aux_sym__declaration_specifiers_repeat1] = STATE(974), + [aux_sym_sized_type_specifier_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(2149), + [aux_sym_preproc_def_token1] = ACTIONS(2185), + [aux_sym_preproc_if_token1] = ACTIONS(2187), + [aux_sym_preproc_if_token2] = ACTIONS(2262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2191), + [aux_sym_preproc_else_token1] = ACTIONS(2159), + [aux_sym_preproc_elif_token1] = ACTIONS(2161), + [sym_preproc_directive] = ACTIONS(2193), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -80353,17 +84965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2214), 1, + ACTIONS(2264), 1, anon_sym_RPAREN, - ACTIONS(2216), 1, + ACTIONS(2266), 1, anon_sym___extension__, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1280), 1, + STATE(1328), 1, sym__expression, - STATE(1888), 1, + STATE(1998), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -80404,13 +85016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80443,17 +85055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2218), 1, + ACTIONS(2268), 1, anon_sym_RPAREN, - ACTIONS(2220), 1, + ACTIONS(2270), 1, anon_sym___extension__, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1278), 1, + STATE(1321), 1, sym__expression, - STATE(1942), 1, + STATE(2003), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -80494,13 +85106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80533,15 +85145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2272), 1, anon_sym___extension__, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1328), 1, + STATE(1335), 1, sym__expression, - STATE(2120), 1, + STATE(2073), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -80582,13 +85194,530 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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(2209), 1, + sym_identifier, + ACTIONS(2232), 1, + anon_sym___attribute__, + ACTIONS(2235), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2238), 1, + anon_sym___declspec, + ACTIONS(2244), 1, + sym_primitive_type, + ACTIONS(2247), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2253), 1, + anon_sym_union, + ACTIONS(2274), 1, + aux_sym_preproc_def_token1, + ACTIONS(2277), 1, + aux_sym_preproc_if_token1, + ACTIONS(2283), 1, + sym_preproc_directive, + STATE(1022), 1, + sym__type_specifier, + STATE(1059), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1623), 1, + sym__declaration_specifiers, + ACTIONS(2280), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2218), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(2241), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(974), 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(661), 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(2226), 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(2229), 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, + [452] = 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(1986), 1, + sym_identifier, + ACTIONS(2286), 1, + anon_sym_RPAREN, + STATE(893), 1, + sym_string_literal, + STATE(1369), 1, + sym__expression, + STATE(2270), 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(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [561] = 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(1986), 1, + sym_identifier, + ACTIONS(2288), 1, + anon_sym_COLON, + STATE(893), 1, + sym_string_literal, + STATE(1361), 1, + sym__expression, + STATE(2317), 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(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [670] = 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(1986), 1, + sym_identifier, + ACTIONS(2290), 1, + anon_sym_SEMI, + STATE(893), 1, + sym_string_literal, + STATE(1396), 1, + sym__expression, + STATE(2258), 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(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [779] = 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(1587), 1, + anon_sym_LBRACE, + ACTIONS(1986), 1, + sym_identifier, + STATE(893), 1, + sym_string_literal, + STATE(1375), 1, + sym__expression, + STATE(2177), 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(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [888] = 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(1986), 1, + sym_identifier, + ACTIONS(2292), 1, + anon_sym_SEMI, + STATE(893), 1, + sym_string_literal, + STATE(1333), 1, + sym__expression, + STATE(2297), 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(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80606,94 +85735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [342] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2145), 1, - sym_identifier, - ACTIONS(2168), 1, - anon_sym___attribute__, - ACTIONS(2171), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2174), 1, - anon_sym___declspec, - ACTIONS(2180), 1, - sym_primitive_type, - ACTIONS(2183), 1, - anon_sym_enum, - ACTIONS(2186), 1, - anon_sym_struct, - ACTIONS(2189), 1, - anon_sym_union, - ACTIONS(2224), 1, - aux_sym_preproc_def_token1, - ACTIONS(2227), 1, - aux_sym_preproc_if_token1, - ACTIONS(2233), 1, - sym_preproc_directive, - STATE(955), 1, - sym__type_specifier, - STATE(1006), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1572), 1, - sym__declaration_specifiers, - ACTIONS(2230), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2154), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(2177), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(932), 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(616), 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(2162), 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(2165), 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, - [452] = 23, + [997] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80706,16 +85748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1548), 1, - anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2294), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_string_literal, - STATE(1315), 1, + STATE(1371), 1, sym__expression, - STATE(2087), 1, - sym_initializer_list, + STATE(2269), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -80755,13 +85797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80779,79 +85821,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [561] = 23, + [1106] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1715), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1548), 1, - anon_sym_LBRACE, - ACTIONS(1957), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(861), 1, - sym_initializer_list, - STATE(1100), 1, + STATE(1076), 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(1959), 2, + STATE(1112), 1, + sym_initializer_list, + ACTIONS(1711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1713), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 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, @@ -80860,34 +85897,50 @@ 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, - [670] = 23, + [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(1548), 1, - anon_sym_LBRACE, - ACTIONS(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2238), 1, - anon_sym_LPAREN2, - STATE(861), 1, - sym_initializer_list, - STATE(890), 1, + ACTIONS(2304), 1, + anon_sym_SEMI, + STATE(893), 1, sym_string_literal, - STATE(902), 1, + STATE(1364), 1, sym__expression, + STATE(2345), 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__, @@ -80897,18 +85950,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80927,13 +85968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80951,7 +85992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [779] = 23, + [1322] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80964,15 +86005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2306), 1, anon_sym_SEMI, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1285), 1, + STATE(1336), 1, sym__expression, - STATE(2125), 1, + STATE(2368), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81013,13 +86054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81037,75 +86078,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [888] = 23, + [1431] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, + ACTIONS(1715), 1, anon_sym_LBRACE, - ACTIONS(1830), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2308), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(996), 1, + STATE(1076), 1, sym__expression, - STATE(1053), 1, + STATE(1112), 1, sym_initializer_list, - ACTIONS(1834), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81123,29 +86164,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [997] = 22, + [1540] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1548), 1, - anon_sym_LBRACE, - ACTIONS(1556), 1, - anon_sym_sizeof, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - STATE(861), 1, - sym_initializer_list, - STATE(890), 1, + ACTIONS(2314), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_string_literal, - STATE(902), 1, + STATE(1380), 1, sym__expression, + STATE(2272), 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__, @@ -81155,18 +86208,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1554), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2256), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81185,12 +86226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -81199,16 +86245,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, - [1104] = 23, + [1649] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81221,15 +86263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2258), 1, - anon_sym_SEMI, - STATE(845), 1, + ACTIONS(2316), 1, + anon_sym_COLON, + STATE(893), 1, sym_string_literal, - STATE(1347), 1, + STATE(1379), 1, sym__expression, - STATE(2339), 1, + STATE(2242), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81270,13 +86312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81294,7 +86336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1213] = 23, + [1758] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81307,15 +86349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2260), 1, + ACTIONS(2318), 1, anon_sym_SEMI, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1349), 1, + STATE(1389), 1, sym__expression, - STATE(2337), 1, + STATE(2229), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81356,13 +86398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81380,41 +86422,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1322] = 23, + [1867] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2262), 1, - anon_sym_COLON, - STATE(845), 1, + ACTIONS(1587), 1, + anon_sym_LBRACE, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1338), 1, + STATE(928), 1, + sym_initializer_list, + STATE(1141), 1, sym__expression, - STATE(2380), 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__, @@ -81424,6 +86454,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2322), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81442,17 +86484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -81461,12 +86498,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, - [1431] = 23, + [1974] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81479,15 +86520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2264), 1, + ACTIONS(2324), 1, anon_sym_COLON, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1331), 1, + STATE(1392), 1, sym__expression, - STATE(2132), 1, + STATE(2423), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81528,13 +86569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81552,92 +86593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1540] = 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(1538), 1, - sym_identifier, - ACTIONS(1548), 1, - anon_sym_LBRACE, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(845), 1, - sym_string_literal, - STATE(861), 1, - sym_initializer_list, - STATE(1100), 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(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2268), 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(884), 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, - [1647] = 23, + [2083] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81650,15 +86606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2270), 1, - anon_sym_SEMI, - STATE(845), 1, + ACTIONS(2326), 1, + anon_sym_COLON, + STATE(893), 1, sym_string_literal, - STATE(1289), 1, + STATE(1349), 1, sym__expression, - STATE(2208), 1, + STATE(2439), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81699,13 +86655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81723,32 +86679,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1756] = 22, + [2192] = 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(1538), 1, - sym_identifier, - ACTIONS(1548), 1, + ACTIONS(1587), 1, anon_sym_LBRACE, - ACTIONS(1550), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - STATE(845), 1, + ACTIONS(1986), 1, + sym_identifier, + STATE(893), 1, sym_string_literal, - STATE(861), 1, - sym_initializer_list, - STATE(902), 1, + STATE(1382), 1, sym__expression, + STATE(2152), 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__, @@ -81758,15 +86723,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1544), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2274), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81785,12 +86741,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -81799,16 +86760,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, - [1863] = 23, + [2301] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81821,16 +86778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1587), 1, + anon_sym_LBRACE, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2276), 1, - anon_sym_RPAREN, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1307), 1, + STATE(1395), 1, sym__expression, - STATE(2420), 1, - sym_comma_expression, + STATE(2113), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -81870,13 +86827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81894,7 +86851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1972] = 23, + [2410] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81907,16 +86864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1548), 1, - anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2328), 1, + anon_sym_COLON, + STATE(893), 1, sym_string_literal, - STATE(861), 1, - sym_initializer_list, - STATE(902), 1, + STATE(1359), 1, sym__expression, + STATE(2474), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -81956,13 +86913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81980,7 +86937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2081] = 23, + [2519] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81993,16 +86950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1548), 1, - anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2330), 1, + anon_sym_COLON, + STATE(893), 1, sym_string_literal, - STATE(1318), 1, + STATE(1386), 1, sym__expression, - STATE(2102), 1, - sym_initializer_list, + STATE(2429), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -82042,13 +86999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82066,41 +87023,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2190] = 23, + [2628] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2278), 1, - anon_sym_COLON, - STATE(845), 1, + ACTIONS(1587), 1, + anon_sym_LBRACE, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1332), 1, + STATE(928), 1, + sym_initializer_list, + STATE(934), 1, sym__expression, - STATE(2238), 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__, @@ -82110,6 +87058,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82128,17 +87085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -82147,12 +87099,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, - [2299] = 23, + [2735] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82165,16 +87121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1548), 1, + ACTIONS(1587), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1351), 1, - sym__expression, - STATE(2043), 1, + STATE(928), 1, sym_initializer_list, + STATE(934), 1, + sym__expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -82214,13 +87170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82238,7 +87194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2408] = 23, + [2844] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82251,15 +87207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2280), 1, - anon_sym_SEMI, - STATE(845), 1, + ACTIONS(2336), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_string_literal, - STATE(1303), 1, + STATE(1372), 1, sym__expression, - STATE(2382), 1, + STATE(2268), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82300,13 +87256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82324,7 +87280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2517] = 23, + [2953] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82337,15 +87293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2282), 1, - anon_sym_RPAREN, - STATE(845), 1, + ACTIONS(2338), 1, + anon_sym_SEMI, + STATE(893), 1, sym_string_literal, - STATE(1290), 1, + STATE(1342), 1, sym__expression, - STATE(2240), 1, + STATE(2370), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82386,13 +87342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82410,7 +87366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2626] = 23, + [3062] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82423,15 +87379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_SEMI, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1302), 1, + STATE(1383), 1, sym__expression, - STATE(2379), 1, + STATE(2326), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82472,13 +87428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82496,7 +87452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2735] = 23, + [3171] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82509,15 +87465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2286), 1, - anon_sym_COLON, - STATE(845), 1, + ACTIONS(2342), 1, + anon_sym_SEMI, + STATE(893), 1, sym_string_literal, - STATE(1304), 1, + STATE(1370), 1, sym__expression, - STATE(2291), 1, + STATE(2358), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82558,13 +87514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82582,7 +87538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2844] = 23, + [3280] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82595,15 +87551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2288), 1, + ACTIONS(2344), 1, anon_sym_RPAREN, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1291), 1, + STATE(1377), 1, sym__expression, - STATE(2210), 1, + STATE(2250), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82644,13 +87600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82668,7 +87624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2953] = 23, + [3389] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82681,15 +87637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2290), 1, + ACTIONS(2346), 1, anon_sym_COLON, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1353), 1, + STATE(1378), 1, sym__expression, - STATE(2398), 1, + STATE(2208), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82730,13 +87686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82754,41 +87710,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3062] = 23, + [3498] = 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(1945), 1, + ACTIONS(1587), 1, + anon_sym_LBRACE, + ACTIONS(1992), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_RPAREN, - STATE(845), 1, - sym_string_literal, - STATE(1299), 1, + ACTIONS(2350), 1, + anon_sym_LPAREN2, + STATE(928), 1, + sym_initializer_list, + STATE(934), 1, sym__expression, - STATE(2271), 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, + STATE(942), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82798,6 +87742,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1988), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1990), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82816,13 +87772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82840,41 +87796,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3171] = 23, + [3607] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2294), 1, - anon_sym_RPAREN, - STATE(845), 1, - sym_string_literal, - STATE(1293), 1, + ACTIONS(1587), 1, + anon_sym_LBRACE, + ACTIONS(1595), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + STATE(928), 1, + sym_initializer_list, + STATE(934), 1, sym__expression, - STATE(2212), 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, + STATE(942), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82884,6 +87828,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1591), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1593), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82902,17 +87858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -82921,12 +87872,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, - [3280] = 23, + [3714] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82939,15 +87894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2296), 1, + ACTIONS(2360), 1, anon_sym_COLON, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1320), 1, + STATE(1363), 1, sym__expression, - STATE(2391), 1, + STATE(2289), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82988,13 +87943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83012,92 +87967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3389] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1824), 1, - anon_sym_LBRACE, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, - anon_sym_offsetof, - ACTIONS(1832), 1, - anon_sym__Generic, - ACTIONS(1836), 1, - sym_number_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_LPAREN2, - STATE(910), 1, - sym_string_literal, - STATE(996), 1, - sym__expression, - STATE(1053), 1, - sym_initializer_list, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2302), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1838), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 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, - [3496] = 23, + [3823] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -83110,15 +87980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2304), 1, - anon_sym_COLON, - STATE(845), 1, + ACTIONS(2362), 1, + anon_sym_RPAREN, + STATE(893), 1, sym_string_literal, - STATE(1296), 1, + STATE(1390), 1, sym__expression, - STATE(2183), 1, + STATE(2221), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83159,13 +88029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83183,41 +88053,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3605] = 23, + [3932] = 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(1945), 1, + ACTIONS(1587), 1, + anon_sym_LBRACE, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2306), 1, - anon_sym_COLON, - STATE(845), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1305), 1, + STATE(928), 1, + sym_initializer_list, + STATE(1141), 1, sym__expression, - STATE(2263), 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__, @@ -83227,6 +88085,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(2011), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2013), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2089), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83245,13 +88115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83269,41 +88139,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3714] = 23, + [4041] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2308), 1, - anon_sym_SEMI, - STATE(845), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, + anon_sym_LPAREN2, + ACTIONS(2364), 1, + anon_sym_RBRACK, + STATE(893), 1, sym_string_literal, - STATE(1312), 1, + STATE(1170), 1, sym__expression, - STATE(2149), 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__, @@ -83313,6 +88169,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2322), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83331,17 +88199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -83350,46 +88213,36 @@ 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, - [3823] = 23, + [4145] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2310), 1, - anon_sym_SEMI, - STATE(845), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, + anon_sym_LPAREN2, + ACTIONS(2366), 1, + anon_sym_RBRACK, + STATE(893), 1, sym_string_literal, - STATE(1294), 1, + STATE(1170), 1, sym__expression, - STATE(2264), 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__, @@ -83399,6 +88252,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2322), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83417,17 +88282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -83436,12 +88296,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, - [3932] = 23, + [4249] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -83454,15 +88318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2312), 1, - anon_sym_RPAREN, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1300), 1, + STATE(1393), 1, sym__expression, - STATE(2213), 1, + STATE(2200), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83503,13 +88365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83527,7 +88389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4041] = 23, + [4355] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83544,23 +88406,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2314), 1, + ACTIONS(2368), 1, aux_sym_preproc_def_token1, - ACTIONS(2316), 1, + ACTIONS(2370), 1, aux_sym_preproc_if_token1, - ACTIONS(2320), 1, + ACTIONS(2372), 1, + aux_sym_preproc_if_token2, + ACTIONS(2376), 1, sym_preproc_directive, - ACTIONS(2322), 1, - anon_sym_RBRACE, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1576), 1, + STATE(1622), 1, sym__declaration_specifiers, - ACTIONS(2318), 2, + ACTIONS(2374), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -83568,13 +88430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83582,7 +88444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(667), 8, + STATE(701), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -83612,27 +88474,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4149] = 21, + [4463] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2324), 1, - anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1316), 1, sym__expression, + STATE(1947), 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__, @@ -83642,18 +88516,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83672,12 +88534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -83686,16 +88553,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, - [4253] = 21, + [4569] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83704,17 +88567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - ACTIONS(2326), 1, + ACTIONS(2378), 1, anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83725,16 +88588,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83755,7 +88618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83778,7 +88641,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4357] = 21, + [4673] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2209), 1, + sym_identifier, + ACTIONS(2218), 1, + aux_sym_preproc_if_token2, + ACTIONS(2232), 1, + anon_sym___attribute__, + ACTIONS(2235), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2238), 1, + anon_sym___declspec, + ACTIONS(2244), 1, + sym_primitive_type, + ACTIONS(2247), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2253), 1, + anon_sym_union, + ACTIONS(2380), 1, + aux_sym_preproc_def_token1, + ACTIONS(2383), 1, + aux_sym_preproc_if_token1, + ACTIONS(2389), 1, + sym_preproc_directive, + STATE(1022), 1, + sym__type_specifier, + STATE(1059), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1622), 1, + sym__declaration_specifiers, + ACTIONS(2386), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2241), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(974), 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(701), 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(2226), 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(2229), 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, + [4781] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83787,17 +88735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - ACTIONS(2328), 1, + ACTIONS(2392), 1, anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83808,16 +88756,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83838,7 +88786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83861,7 +88809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4461] = 21, + [4885] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83870,17 +88818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - ACTIONS(2330), 1, + ACTIONS(2394), 1, anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83891,16 +88839,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83921,7 +88869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83944,39 +88892,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4565] = 22, + [4989] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, + anon_sym_LPAREN2, + ACTIONS(2396), 1, + anon_sym_RBRACK, + STATE(893), 1, sym_string_literal, - STATE(1350), 1, + STATE(1170), 1, sym__expression, - STATE(2347), 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__, @@ -83986,6 +88922,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2322), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84004,17 +88952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -84023,12 +88966,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, - [4671] = 21, + [5093] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84037,17 +88984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - ACTIONS(2332), 1, + ACTIONS(2398), 1, anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84058,16 +89005,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84088,7 +89035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84111,7 +89058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4775] = 21, + [5197] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84120,17 +89067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - ACTIONS(2334), 1, + ACTIONS(2400), 1, anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84141,16 +89088,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84171,7 +89118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84194,7 +89141,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4879] = 23, + [5301] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2209), 1, + sym_identifier, + ACTIONS(2232), 1, + anon_sym___attribute__, + ACTIONS(2235), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2238), 1, + anon_sym___declspec, + ACTIONS(2244), 1, + sym_primitive_type, + ACTIONS(2247), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2253), 1, + anon_sym_union, + ACTIONS(2402), 1, + aux_sym_preproc_def_token1, + ACTIONS(2405), 1, + aux_sym_preproc_if_token1, + ACTIONS(2411), 1, + sym_preproc_directive, + ACTIONS(2414), 1, + anon_sym_RBRACE, + STATE(1022), 1, + sym__type_specifier, + STATE(1059), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1624), 1, + sym__declaration_specifiers, + ACTIONS(2408), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2241), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(974), 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(707), 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(2226), 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(2229), 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, + [5409] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84211,23 +89243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2336), 1, + ACTIONS(2416), 1, aux_sym_preproc_def_token1, - ACTIONS(2338), 1, + ACTIONS(2418), 1, aux_sym_preproc_if_token1, - ACTIONS(2340), 1, - aux_sym_preproc_if_token2, - ACTIONS(2344), 1, + ACTIONS(2422), 1, sym_preproc_directive, - STATE(955), 1, + ACTIONS(2424), 1, + anon_sym_RBRACE, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1574), 1, + STATE(1624), 1, sym__declaration_specifiers, - ACTIONS(2342), 2, + ACTIONS(2420), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -84235,13 +89267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84249,7 +89281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(668), 8, + STATE(707), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -84279,137 +89311,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4987] = 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(1538), 1, - sym_identifier, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2346), 1, - anon_sym_RBRACK, - STATE(845), 1, - sym_string_literal, - STATE(1130), 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(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2268), 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(884), 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, - [5091] = 23, + [5517] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, - sym_identifier, - ACTIONS(2168), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2171), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2174), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2180), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(2183), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(2186), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(2189), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(2348), 1, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2149), 1, + sym_identifier, + ACTIONS(2416), 1, aux_sym_preproc_def_token1, - ACTIONS(2351), 1, + ACTIONS(2418), 1, aux_sym_preproc_if_token1, - ACTIONS(2357), 1, + ACTIONS(2422), 1, sym_preproc_directive, - ACTIONS(2360), 1, + ACTIONS(2426), 1, anon_sym_RBRACE, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1576), 1, + STATE(1624), 1, sym__declaration_specifiers, - ACTIONS(2354), 2, + ACTIONS(2420), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2177), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84417,7 +89366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(660), 8, + STATE(708), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -84426,7 +89375,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(2162), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -84436,7 +89385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2165), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -84447,110 +89396,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5199] = 22, + [5625] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, - sym_string_literal, - STATE(1327), 1, - sym__expression, - STATE(2222), 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(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 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, - [5305] = 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(1538), 1, - sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2428), 1, anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84561,16 +89426,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84591,7 +89456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84614,27 +89479,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5409] = 21, + [5729] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2364), 1, - anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1387), 1, sym__expression, + STATE(2312), 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__, @@ -84644,18 +89521,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84674,12 +89539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -84688,16 +89558,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, - [5513] = 21, + [5835] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84706,17 +89572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - ACTIONS(2366), 1, + ACTIONS(2430), 1, anon_sym_RBRACK, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84727,16 +89593,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84757,7 +89623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84780,7 +89646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5617] = 23, + [5939] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84797,23 +89663,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2336), 1, + ACTIONS(2368), 1, aux_sym_preproc_def_token1, - ACTIONS(2338), 1, + ACTIONS(2370), 1, aux_sym_preproc_if_token1, - ACTIONS(2344), 1, + ACTIONS(2376), 1, sym_preproc_directive, - ACTIONS(2368), 1, + ACTIONS(2432), 1, aux_sym_preproc_if_token2, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1574), 1, + STATE(1622), 1, sym__declaration_specifiers, - ACTIONS(2342), 2, + ACTIONS(2374), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -84821,13 +89687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84835,7 +89701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(658), 8, + STATE(698), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -84865,73 +89731,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5725] = 22, + [6047] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(2002), 1, + anon_sym_sizeof, + ACTIONS(2308), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2310), 1, + anon_sym_LPAREN2, + STATE(953), 1, sym_string_literal, - STATE(1274), 1, + STATE(1302), 1, sym__expression, - STATE(2013), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2000), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2312), 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(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84949,177 +89813,88 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5831] = 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(2099), 1, - sym_identifier, - ACTIONS(2314), 1, - aux_sym_preproc_def_token1, - ACTIONS(2316), 1, - aux_sym_preproc_if_token1, - ACTIONS(2320), 1, - sym_preproc_directive, - ACTIONS(2370), 1, - anon_sym_RBRACE, - STATE(955), 1, - sym__type_specifier, - STATE(1006), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1576), 1, - sym__declaration_specifiers, - ACTIONS(2318), 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(998), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(932), 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(660), 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, - [5939] = 23, + [6150] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, + anon_sym_offsetof, + ACTIONS(1723), 1, + anon_sym__Generic, + ACTIONS(1727), 1, + sym_number_literal, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2154), 1, - aux_sym_preproc_if_token2, - ACTIONS(2168), 1, - anon_sym___attribute__, - ACTIONS(2171), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2174), 1, - anon_sym___declspec, - ACTIONS(2180), 1, - sym_primitive_type, - ACTIONS(2183), 1, - anon_sym_enum, - ACTIONS(2186), 1, - anon_sym_struct, - ACTIONS(2189), 1, - anon_sym_union, - ACTIONS(2372), 1, - aux_sym_preproc_def_token1, - ACTIONS(2375), 1, - aux_sym_preproc_if_token1, - ACTIONS(2381), 1, - sym_preproc_directive, - STATE(955), 1, - sym__type_specifier, - STATE(1006), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1574), 1, - sym__declaration_specifiers, - ACTIONS(2378), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2177), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(932), 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(668), 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(2162), 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(2165), 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, - [6047] = 21, + ACTIONS(2298), 1, + anon_sym_LPAREN2, + STATE(953), 1, + sym_string_literal, + STATE(1047), 1, + sym__expression, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1719), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1729), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1731), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1117), 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, + [6251] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -85132,11 +89907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1218), 1, + STATE(1416), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -85177,13 +89952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85201,25 +89976,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6150] = 21, + [6354] = 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(1957), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1129), 1, + STATE(1326), 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__, @@ -85229,18 +90016,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1961), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2039), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85259,13 +90034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85283,37 +90058,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6253] = 21, + [6457] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1595), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + STATE(942), 1, sym_string_literal, - STATE(1365), 1, + STATE(999), 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__, @@ -85323,6 +90086,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1591), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1593), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85341,17 +90116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -85360,42 +90130,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, - [6356] = 21, + [6558] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1301), 1, + STATE(1018), 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__, @@ -85405,6 +90170,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85423,17 +90197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -85442,42 +90211,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, - [6459] = 21, + [6659] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1379), 1, + STATE(1017), 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__, @@ -85487,6 +90251,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85505,17 +90278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -85524,70 +90292,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, - [6562] = 20, + [6760] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(995), 1, + STATE(1014), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85610,71 +90382,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6663] = 21, + [6861] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(2002), 1, + anon_sym_sizeof, + ACTIONS(2308), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2310), 1, + anon_sym_LPAREN2, + STATE(953), 1, sym_string_literal, - STATE(1224), 1, + STATE(1293), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2000), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2312), 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(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85692,37 +90464,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6766] = 21, + [6964] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1222), 1, + STATE(1013), 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__, @@ -85732,88 +90495,15 @@ static const uint16_t ts_small_parse_table[] = { 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(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 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, - [6869] = 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(1945), 1, - sym_identifier, - STATE(845), 1, - sym_string_literal, - STATE(1215), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 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, @@ -85832,17 +90522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -85851,12 +90536,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, - [6972] = 20, + [7065] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85865,15 +90554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1589), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(900), 1, + STATE(1031), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -85887,13 +90576,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85914,7 +90603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85937,37 +90626,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7073] = 21, + [7166] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(891), 1, + STATE(1028), 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__, @@ -85977,6 +90657,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85995,17 +90684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -86014,42 +90698,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, - [7176] = 21, + [7267] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1223), 1, + STATE(1026), 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__, @@ -86059,6 +90738,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86077,17 +90765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -86096,12 +90779,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, - [7279] = 20, + [7368] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86110,16 +90797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1589), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(900), 1, + STATE(1024), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86129,16 +90819,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86159,7 +90846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86182,7 +90869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7380] = 21, + [7469] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -86195,11 +90882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1229), 1, + STATE(943), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -86240,13 +90927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86264,7 +90951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7483] = 20, + [7572] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86273,16 +90960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1589), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(889), 1, - sym__expression, - STATE(890), 1, + STATE(893), 1, sym_string_literal, + STATE(938), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86292,16 +90982,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86322,7 +91009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86345,37 +91032,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7584] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1238), 1, + STATE(1019), 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__, @@ -86385,6 +91063,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86403,17 +91090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -86422,12 +91104,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, - [7687] = 21, + [7774] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -86440,11 +91126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1367), 1, + STATE(1327), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -86485,95 +91171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 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, - [7790] = 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(1957), 1, - sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, - anon_sym_LPAREN2, - STATE(845), 1, - sym_string_literal, - STATE(1352), 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(1959), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1961), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2039), 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(1138), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86591,88 +91195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7893] = 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(1538), 1, - sym_identifier, - ACTIONS(1556), 1, - anon_sym_sizeof, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - STATE(890), 1, - sym_string_literal, - STATE(899), 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(1552), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1554), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2256), 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(884), 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, - [7994] = 21, + [7877] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -86685,11 +91208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1214), 1, + STATE(1374), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -86730,13 +91253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86754,37 +91277,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8097] = 21, + [7980] = 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(1945), 1, + ACTIONS(1992), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2350), 1, + anon_sym_LPAREN2, + STATE(942), 1, sym_string_literal, - STATE(1324), 1, + STATE(943), 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__, @@ -86794,6 +91305,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1988), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1990), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86812,13 +91335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86836,65 +91359,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8200] = 20, + [8083] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(1550), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(889), 1, + STATE(1071), 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(1542), 2, + ACTIONS(1711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1713), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1117), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86917,71 +91440,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8301] = 21, + [8184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1955), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(942), 1, sym_string_literal, - STATE(1247), 1, + STATE(946), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86999,7 +91522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8404] = 20, + [8287] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87008,19 +91531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2384), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(887), 1, + STATE(996), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87030,13 +91550,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87057,7 +91580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87080,37 +91603,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8505] = 21, + [8388] = 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(1945), 1, + ACTIONS(1992), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, sym_identifier, - STATE(845), 1, - sym_string_literal, - STATE(1276), 1, + ACTIONS(2434), 1, + anon_sym_LPAREN2, + STATE(940), 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(942), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87120,6 +91631,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1988), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1990), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87138,13 +91661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87162,37 +91685,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8608] = 21, + [8491] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(900), 1, + STATE(939), 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__, @@ -87202,6 +91716,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1583), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2334), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87220,17 +91743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -87239,76 +91757,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, - [8711] = 21, + [8592] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2308), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1249), 1, + STATE(1301), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87326,7 +91848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8814] = 21, + [8695] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -87339,11 +91861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1225), 1, + STATE(1399), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -87384,13 +91906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87408,71 +91930,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8917] = 21, + [8798] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(2002), 1, + anon_sym_sizeof, + ACTIONS(2308), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2310), 1, + anon_sym_LPAREN2, + STATE(953), 1, sym_string_literal, - STATE(1220), 1, + STATE(1299), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2000), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2312), 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(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87490,37 +92012,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9020] = 21, + [8901] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1595), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + STATE(942), 1, sym_string_literal, - STATE(1217), 1, + STATE(995), 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__, @@ -87530,6 +92040,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1591), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1593), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87548,17 +92070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -87567,76 +92084,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, - [9123] = 21, + [9002] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1957), 1, - sym_identifier, - ACTIONS(1963), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(1372), 1, + STATE(1289), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87654,70 +92175,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9226] = 20, + [9105] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1550), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(899), 1, + STATE(1298), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -87726,80 +92252,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, - [9327] = 21, + [9208] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1943), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2308), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(953), 1, sym_string_literal, - STATE(1209), 1, + STATE(1290), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87817,7 +92339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9430] = 20, + [9311] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87826,19 +92348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(980), 1, + STATE(994), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87848,13 +92367,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87875,7 +92397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87898,70 +92420,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9531] = 20, + [9412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1550), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(891), 1, + STATE(1305), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -87970,79 +92497,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, - [9632] = 20, + [9515] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(2002), 1, + anon_sym_sizeof, + ACTIONS(2308), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1039), 1, + STATE(1304), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(1998), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2000), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -88051,79 +92579,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, - [9733] = 20, + [9618] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1550), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(979), 1, + STATE(1303), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -88132,79 +92661,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, - [9834] = 20, + [9721] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1550), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(978), 1, + STATE(1081), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -88213,79 +92743,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, - [9935] = 20, + [9824] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(2002), 1, + anon_sym_sizeof, + ACTIONS(2308), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1001), 1, + STATE(1295), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(1998), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2000), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -88294,74 +92825,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, - [10036] = 20, + [9927] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2386), 1, + ACTIONS(1595), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(942), 1, sym_string_literal, - STATE(1002), 1, + STATE(984), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1591), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1593), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88384,106 +92911,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10137] = 21, + [10028] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, - sym_string_literal, - STATE(1281), 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(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 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, - [10240] = 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(1538), 1, - sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1589), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(977), 1, + STATE(943), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -88497,13 +92942,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88524,7 +92969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88547,37 +92992,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10341] = 21, + [10129] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, - sym_string_literal, - STATE(1357), 1, + ACTIONS(1595), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + STATE(939), 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(942), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88587,6 +93020,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1591), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1593), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -88605,17 +93050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -88624,12 +93064,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, - [10444] = 20, + [10230] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88638,19 +93082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(976), 1, + STATE(993), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88660,13 +93101,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88687,7 +93131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88710,7 +93154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10545] = 20, + [10331] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88719,16 +93163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2388), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(887), 1, - sym__expression, - STATE(890), 1, + STATE(942), 1, sym_string_literal, + STATE(991), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88738,16 +93182,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88768,7 +93212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88791,7 +93235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10646] = 20, + [10432] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88800,19 +93244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(975), 1, + STATE(988), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88822,13 +93263,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88849,7 +93293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88872,75 +93316,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10747] = 21, + [10533] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2390), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1002), 1, + STATE(1060), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -88949,12 +93388,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, - [10850] = 20, + [10634] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88963,15 +93406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1589), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(973), 1, + STATE(946), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -88985,13 +93428,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89012,7 +93455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89035,28 +93478,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10951] = 20, + [10735] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1550), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(972), 1, + STATE(1429), 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__, @@ -89066,15 +93518,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1544), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2274), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89093,12 +93536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -89107,46 +93555,30 @@ 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, - [11052] = 21, + [10838] = 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(1945), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2436), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1310), 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__, @@ -89156,6 +93588,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(2011), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2013), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2089), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89174,13 +93618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89198,71 +93642,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11155] = 21, + [10941] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1001), 1, + STATE(1172), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89280,7 +93724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11258] = 21, + [11044] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89289,16 +93733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1589), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2438), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1337), 1, + STATE(940), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89308,16 +93755,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89338,17 +93782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -89357,12 +93796,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, - [11361] = 21, + [11145] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89371,15 +93814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1330), 1, + STATE(1170), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89390,16 +93833,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89420,17 +93863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -89439,80 +93877,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, - [11464] = 21, + [11246] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1039), 1, + STATE(1081), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -89521,12 +93958,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, - [11567] = 21, + [11347] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89535,15 +93976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1096), 1, + STATE(1169), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89554,16 +93995,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89584,13 +94025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89608,28 +94049,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11670] = 20, + [11450] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1550), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(971), 1, + STATE(1419), 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__, @@ -89639,15 +94089,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1544), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2274), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89666,12 +94107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -89680,34 +94126,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, - [11771] = 21, + [11553] = 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(1957), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1323), 1, + STATE(1267), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89717,18 +94171,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1961), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2039), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89747,13 +94189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89771,25 +94213,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11874] = 21, + [11656] = 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(1957), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1322), 1, + STATE(1385), 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__, @@ -89799,18 +94253,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1961), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2039), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89829,13 +94271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89853,7 +94295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11977] = 21, + [11759] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89862,15 +94304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(1321), 1, + STATE(987), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89881,16 +94323,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89911,17 +94353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -89930,94 +94367,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, - [12080] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, - anon_sym_offsetof, - ACTIONS(1832), 1, - anon_sym__Generic, - ACTIONS(1836), 1, - sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, - sym_identifier, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(910), 1, - sym_string_literal, - STATE(1252), 1, - sym__expression, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2252), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1838), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, sym_subscript_expression, sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 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, - [12183] = 20, + [11860] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90026,15 +94385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(891), 1, + STATE(986), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90045,16 +94404,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90075,7 +94434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90098,75 +94457,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12284] = 21, + [11961] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1253), 1, + STATE(1039), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -90175,30 +94529,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, - [12387] = 21, + [12062] = 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(1957), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1319), 1, + STATE(1426), 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__, @@ -90208,18 +94578,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1961), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2039), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90238,13 +94596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90262,75 +94620,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12490] = 21, + [12165] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1251), 1, + STATE(1057), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -90339,80 +94692,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, - [12593] = 21, + [12266] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1250), 1, + STATE(1055), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -90421,80 +94773,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, - [12696] = 21, + [12367] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1254), 1, + STATE(1049), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -90503,80 +94854,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, - [12799] = 21, + [12468] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1256), 1, + STATE(1048), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -90585,80 +94935,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, - [12902] = 21, + [12569] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(1244), 1, + STATE(1046), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(1117), 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, @@ -90667,76 +95016,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, - [13005] = 21, + [12670] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1260), 1, + STATE(1408), 1, sym__expression, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 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(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90754,71 +95107,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13108] = 21, + [12773] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1018), 1, + STATE(1406), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90836,71 +95189,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13211] = 21, + [12876] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1259), 1, + STATE(1260), 1, sym__expression, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 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(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90918,75 +95271,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13314] = 21, + [12979] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(1314), 1, + STATE(1045), 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(1959), 2, + ACTIONS(1711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1713), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 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, @@ -90995,76 +95343,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, - [13417] = 21, + [13080] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1257), 1, + STATE(1427), 1, sym__expression, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 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(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(1073), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91082,25 +95434,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13520] = 21, + [13183] = 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(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2238), 1, - anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1202), 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__, @@ -91110,18 +95474,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -91140,13 +95492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91164,25 +95516,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13623] = 21, + [13286] = 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(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2238), 1, - anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(891), 1, + STATE(1413), 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__, @@ -91192,18 +95556,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -91222,13 +95574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91246,25 +95598,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13726] = 21, + [13389] = 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(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2238), 1, - anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1203), 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__, @@ -91274,18 +95638,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -91304,13 +95656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91328,7 +95680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13829] = 21, + [13492] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91337,16 +95689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1204), 1, + STATE(1023), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -91356,16 +95711,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91386,17 +95738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91405,12 +95752,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, - [13932] = 21, + [13593] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91419,15 +95770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1308), 1, + STATE(1166), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91438,16 +95789,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91468,17 +95819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91487,12 +95833,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, - [14035] = 21, + [13694] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91501,15 +95851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2440), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1205), 1, + STATE(1173), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91520,16 +95870,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91550,17 +95900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91569,12 +95914,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, - [14138] = 21, + [13795] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91583,15 +95932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1284), 1, + STATE(1172), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91602,16 +95951,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91632,17 +95981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91651,12 +95995,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, - [14241] = 21, + [13896] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91665,15 +96013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1292), 1, + STATE(1169), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91684,16 +96032,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91714,17 +96062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91733,12 +96076,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, - [14344] = 21, + [13997] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91747,15 +96094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1206), 1, + STATE(1167), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91766,16 +96113,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91796,17 +96143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91815,12 +96157,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, - [14447] = 21, + [14098] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91829,15 +96175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1212), 1, + STATE(1179), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91848,16 +96194,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91878,17 +96224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91897,12 +96238,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, - [14550] = 21, + [14199] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91911,15 +96256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1374), 1, + STATE(1140), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91930,16 +96275,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91960,17 +96305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -91979,12 +96319,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, - [14653] = 21, + [14300] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91993,15 +96337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1380), 1, + STATE(1157), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -92012,16 +96356,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92042,13 +96386,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(894), 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, - STATE(884), 17, + sym_char_literal, + sym_concatenated_string, + sym_null, + [14401] = 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(1986), 1, + sym_identifier, + STATE(893), 1, + sym_string_literal, + 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__, + 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(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92066,65 +96491,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14756] = 20, + [14504] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, + ACTIONS(1717), 1, anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(953), 1, sym_string_literal, - STATE(988), 1, + STATE(1041), 1, sym__expression, - ACTIONS(1820), 2, + ACTIONS(1711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1822), 2, + ACTIONS(1713), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1844), 2, + ACTIONS(1735), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(1117), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92147,7 +96572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14857] = 21, + [14605] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92156,15 +96581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2392), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1127), 1, + STATE(1156), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -92175,16 +96600,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92205,17 +96630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -92224,70 +96644,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, - [14960] = 20, + [14706] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(1595), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(942), 1, sym_string_literal, - STATE(1018), 1, + STATE(998), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1591), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1593), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92310,7 +96734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15061] = 20, + [14807] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92319,15 +96743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1130), 1, + STATE(1155), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -92338,16 +96762,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92368,7 +96792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92391,65 +96815,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15162] = 20, + [14908] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(999), 1, + STATE(1153), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92472,37 +96896,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15263] = 21, + [15009] = 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(1945), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(845), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1282), 1, + STATE(1151), 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__, @@ -92512,6 +96924,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2322), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -92530,17 +96954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 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, @@ -92549,70 +96968,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, - [15366] = 20, + [15110] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(1595), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(910), 1, - sym_string_literal, - STATE(990), 1, + STATE(938), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + STATE(942), 1, + sym_string_literal, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1591), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1593), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92635,7 +97058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15467] = 21, + [15211] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -92648,11 +97071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1358), 1, + STATE(1277), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -92693,13 +97116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92717,65 +97140,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15570] = 20, + [15314] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1005), 1, + STATE(1143), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92798,7 +97221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15671] = 21, + [15415] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92807,15 +97230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(1966), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1345), 1, + STATE(1142), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -92826,16 +97249,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(1962), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(1964), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92856,89 +97279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 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, - [15774] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, - anon_sym_offsetof, - ACTIONS(1832), 1, - anon_sym__Generic, - ACTIONS(1836), 1, - sym_number_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_LPAREN2, - STATE(910), 1, - sym_string_literal, - STATE(1033), 1, - sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2302), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1838), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92961,65 +97302,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15875] = 20, + [15516] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(1966), 1, + anon_sym_sizeof, + ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(993), 1, + STATE(1162), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1964), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2322), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93042,7 +97383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15976] = 21, + [15617] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -93055,11 +97396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1275), 1, + STATE(1324), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -93100,13 +97441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93124,70 +97465,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16079] = 20, + [15720] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(1131), 1, + STATE(1072), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -93196,34 +97542,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, - [16180] = 20, + [15823] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1119), 1, + STATE(1264), 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__, @@ -93233,18 +97587,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -93263,12 +97605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -93277,16 +97624,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, - [16281] = 20, + [15926] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -93295,15 +97638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1135), 1, + STATE(1360), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -93314,16 +97657,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -93344,12 +97687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -93358,16 +97706,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, - [16382] = 20, + [16029] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -93376,15 +97720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(1134), 1, + STATE(1248), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -93395,16 +97739,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -93425,12 +97769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -93439,16 +97788,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, - [16483] = 20, + [16132] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -93457,15 +97802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1133), 1, + STATE(1362), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -93476,16 +97821,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -93506,93 +97851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(1183), 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, - [16584] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, - anon_sym_offsetof, - ACTIONS(1832), 1, - anon_sym__Generic, - ACTIONS(1836), 1, - sym_number_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_LPAREN2, - STATE(910), 1, - sym_string_literal, - STATE(994), 1, - sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2302), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1838), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 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, @@ -93601,79 +97870,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, - [16685] = 20, + [16235] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(953), 1, sym_string_literal, - STATE(1120), 1, + STATE(1043), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -93682,34 +97952,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, - [16786] = 21, + [16338] = 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(1957), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1963), 1, - anon_sym_sizeof, - ACTIONS(2029), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1132), 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__, @@ -93719,18 +97997,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1961), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2033), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2039), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -93749,13 +98015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93773,25 +98039,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16889] = 21, + [16441] = 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(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2238), 1, - anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1211), 1, + STATE(1268), 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__, @@ -93801,18 +98079,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1941), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -93831,13 +98097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93855,7 +98121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16992] = 20, + [16544] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -93864,15 +98130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1117), 1, + STATE(1414), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -93883,16 +98149,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -93913,12 +98179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -93927,16 +98198,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, - [17093] = 20, + [16647] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -93945,15 +98212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1098), 1, + STATE(1357), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -93964,16 +98231,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -93994,12 +98261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94008,34 +98280,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, - [17194] = 20, + [16750] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1919), 1, - anon_sym_sizeof, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1099), 1, + STATE(1400), 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__, @@ -94045,18 +98325,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1917), 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(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [16853] = 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(1986), 1, + sym_identifier, + STATE(893), 1, + sym_string_literal, + STATE(1278), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + 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, @@ -94075,12 +98425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94089,16 +98444,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, - [17295] = 20, + [16956] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -94107,15 +98458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1101), 1, + STATE(1356), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -94126,16 +98477,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94156,12 +98507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94170,16 +98526,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, - [17396] = 20, + [17059] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -94188,15 +98540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1102), 1, + STATE(1355), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -94207,16 +98559,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94237,12 +98589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94251,16 +98608,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, - [17497] = 20, + [17162] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -94269,15 +98622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(1132), 1, + STATE(1247), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -94288,16 +98641,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94318,12 +98671,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94332,46 +98690,112 @@ 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, - [17598] = 21, + [17265] = 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(1945), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1382), 1, + STATE(1353), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 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(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2013), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2089), 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(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [17368] = 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(1992), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, + anon_sym_LPAREN2, + STATE(938), 1, + sym__expression, + STATE(942), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -94381,6 +98805,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1988), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1990), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -94399,13 +98835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -94423,7 +98859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17701] = 20, + [17471] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -94432,15 +98868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1129), 1, + STATE(1351), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -94451,16 +98887,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94481,12 +98917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94495,79 +98936,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, - [17802] = 20, + [17574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1992), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(942), 1, sym_string_literal, - STATE(997), 1, + STATE(1249), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1988), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1990), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94576,16 +99018,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, - [17903] = 20, + [17677] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -94594,15 +99032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2394), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1127), 1, + STATE(1350), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -94613,16 +99051,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94643,12 +99081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -94657,16 +99100,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, - [18004] = 21, + [17780] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -94675,15 +99114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1207), 1, + STATE(1348), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -94694,16 +99133,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94724,13 +99163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -94748,71 +99187,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18107] = 21, + [17883] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1943), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2308), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2442), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(953), 1, sym_string_literal, - STATE(1213), 1, + STATE(1042), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -94830,7 +99269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18210] = 21, + [17986] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -94843,11 +99282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1370), 1, + STATE(1323), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -94888,13 +99327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -94912,7 +99351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18313] = 21, + [18089] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -94921,15 +99360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1957), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(1963), 1, + ACTIONS(2015), 1, anon_sym_sizeof, - ACTIONS(2029), 1, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1335), 1, + STATE(1346), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -94940,16 +99379,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1959), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1961), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2039), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94970,13 +99409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1138), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -94994,37 +99433,189 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18416] = 21, + [18192] = 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(1945), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1371), 1, + STATE(1166), 1, sym__expression, - ACTIONS(21), 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(2011), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2089), 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(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [18295] = 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(2009), 1, + sym_identifier, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, + anon_sym_LPAREN2, + STATE(893), 1, + sym_string_literal, + STATE(1345), 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(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2013), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2089), 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(1183), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [18398] = 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(2009), 1, + sym_identifier, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, + anon_sym_LPAREN2, + STATE(893), 1, + sym_string_literal, + STATE(1343), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -95034,6 +99625,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(2011), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2013), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2083), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2089), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -95052,13 +99655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -95076,7 +99679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18519] = 21, + [18501] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95085,16 +99688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2396), 1, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(887), 1, - sym__expression, - STATE(890), 1, + STATE(942), 1, sym_string_literal, + STATE(1250), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -95104,16 +99707,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95134,13 +99737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -95158,7 +99761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18622] = 21, + [18604] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95167,16 +99770,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(889), 1, - sym__expression, - STATE(890), 1, + STATE(942), 1, sym_string_literal, + STATE(1251), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -95186,16 +99789,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95216,13 +99819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -95240,88 +99843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18725] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, - anon_sym_offsetof, - ACTIONS(1832), 1, - anon_sym__Generic, - ACTIONS(1836), 1, - sym_number_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_LPAREN2, - STATE(910), 1, - sym_string_literal, - STATE(1021), 1, - sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2302), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1838), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 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, - [18826] = 21, + [18707] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95330,15 +99852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(900), 1, + STATE(1252), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -95349,16 +99871,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95379,13 +99901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -95403,7 +99925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18929] = 20, + [18810] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95412,15 +99934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(954), 1, + STATE(1258), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -95431,16 +99953,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95461,12 +99983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -95475,16 +100002,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, - [19030] = 20, + [18913] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95493,15 +100016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(890), 1, - sym_string_literal, STATE(942), 1, + sym_string_literal, + STATE(1255), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -95512,16 +100035,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95542,12 +100065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -95556,16 +100084,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, - [19131] = 20, + [19016] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95574,15 +100098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(940), 1, + STATE(1253), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -95593,16 +100117,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95623,12 +100147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -95637,16 +100166,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, - [19232] = 20, + [19119] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95655,19 +100180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1550), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(957), 1, + STATE(1246), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -95677,13 +100199,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1544), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2274), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95704,93 +100229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(1020), 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, - [19333] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - anon_sym_sizeof, - ACTIONS(1830), 1, - anon_sym_offsetof, - ACTIONS(1832), 1, - anon_sym__Generic, - ACTIONS(1836), 1, - sym_number_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_LPAREN2, - STATE(910), 1, - sym_string_literal, - STATE(1032), 1, - sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2302), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1838), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1073), 22, + STATE(894), 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, @@ -95799,16 +100248,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, - [19434] = 20, + [19222] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95817,15 +100262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(953), 1, + STATE(1254), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -95836,16 +100281,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -95866,12 +100311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -95880,79 +100330,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, - [19535] = 20, + [19325] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1556), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(953), 1, sym_string_literal, - STATE(952), 1, + STATE(1292), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1116), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1117), 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, @@ -95961,16 +100412,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, - [19636] = 20, + [19428] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -95979,15 +100426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1992), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(951), 1, + STATE(1256), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -95998,16 +100445,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1988), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1990), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -96028,12 +100475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1020), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -96042,20 +100494,14 @@ 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, - [19737] = 21, + [19531] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -96064,11 +100510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2444), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1377), 1, + STATE(940), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -96109,13 +100557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96133,25 +100581,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19840] = 20, + [19634] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1556), 1, - anon_sym_sizeof, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(948), 1, + STATE(1366), 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__, @@ -96161,18 +100621,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1554), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2256), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -96191,12 +100639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -96205,46 +100658,30 @@ 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, - [19941] = 21, + [19737] = 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(1945), 1, + ACTIONS(1992), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2398), 1, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(845), 1, + STATE(942), 1, sym_string_literal, - STATE(887), 1, + STATE(1257), 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__, @@ -96254,6 +100691,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1988), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1990), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -96272,13 +100721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1020), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96296,25 +100745,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20044] = 20, + [19840] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1556), 1, - anon_sym_sizeof, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(947), 1, + STATE(1275), 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__, @@ -96324,18 +100785,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1554), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2240), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2256), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -96354,12 +100803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -96368,16 +100822,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, - [20145] = 21, + [19943] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -96390,11 +100840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1242), 1, + STATE(946), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -96435,13 +100885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96459,28 +100909,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20248] = 20, + [20046] = 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(1538), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(1550), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - anon_sym_LPAREN2, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(963), 1, + STATE(1403), 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__, @@ -96490,15 +100949,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1542), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1544), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2274), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -96517,12 +100967,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -96531,16 +100986,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, - [20349] = 21, + [20149] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -96553,11 +101004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(1986), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(889), 1, + STATE(1259), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -96598,13 +101049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, + STATE(1085), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96622,7 +101073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20452] = 20, + [20252] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -96631,15 +101082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(946), 1, + STATE(943), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -96650,16 +101101,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -96680,7 +101131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96703,71 +101154,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20553] = 21, + [20353] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1943), 1, + ACTIONS(2002), 1, anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2308), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2310), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(953), 1, sym_string_literal, - STATE(1210), 1, + STATE(1291), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(2000), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2312), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1116), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96785,7 +101236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20656] = 20, + [20456] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -96794,15 +101245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1556), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(942), 1, sym_string_literal, - STATE(945), 1, + STATE(946), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -96813,16 +101264,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1552), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -96843,7 +101294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96866,24 +101317,187 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20757] = 21, + [20557] = 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(1943), 1, + ACTIONS(1986), 1, + sym_identifier, + STATE(893), 1, + sym_string_literal, + STATE(938), 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(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, + [20660] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1717), 1, anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(1721), 1, + anon_sym_offsetof, + ACTIONS(1723), 1, + anon_sym__Generic, + ACTIONS(1727), 1, + sym_number_literal, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2446), 1, + anon_sym_LPAREN2, + STATE(953), 1, + sym_string_literal, + STATE(1042), 1, + sym__expression, + ACTIONS(1711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1719), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1729), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1731), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1117), 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, + [20761] = 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(2009), 1, + sym_identifier, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1201), 1, + STATE(1401), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -96894,16 +101508,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -96924,13 +101538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -96948,75 +101562,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20860] = 21, + [20864] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1717), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(2296), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2298), 1, + anon_sym_LPAREN2, + STATE(953), 1, sym_string_literal, - STATE(1361), 1, + STATE(1043), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1711), 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(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 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, @@ -97025,12 +101634,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, - [20963] = 20, + [20965] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -97039,16 +101652,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1595), 1, anon_sym_sizeof, - ACTIONS(2266), 1, + ACTIONS(2448), 1, anon_sym_LPAREN2, - STATE(845), 1, - sym_string_literal, - STATE(1096), 1, + STATE(940), 1, sym__expression, + STATE(942), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -97058,16 +101671,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1915), 2, + ACTIONS(1591), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1917), 2, + ACTIONS(1593), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2033), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2268), 2, + ACTIONS(2358), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -97088,7 +101701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(894), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -97111,75 +101724,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21064] = 21, + [21066] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1717), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1945), 1, + ACTIONS(2296), 1, sym_identifier, - STATE(845), 1, + ACTIONS(2298), 1, + anon_sym_LPAREN2, + STATE(953), 1, sym_string_literal, - STATE(1283), 1, + STATE(1072), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1711), 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(1713), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1725), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1733), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1003), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(884), 17, + STATE(1117), 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, @@ -97188,80 +101796,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, - [21167] = 21, + [21167] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1955), 1, - anon_sym_sizeof, - ACTIONS(2246), 1, + ACTIONS(1577), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(1589), 1, + anon_sym_sizeof, + ACTIONS(2332), 1, anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1258), 1, + STATE(1009), 1, sym__expression, - ACTIONS(1834), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1951), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1953), 2, + ACTIONS(1583), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2250), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2252), 2, + ACTIONS(2334), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1088), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(1073), 17, + STATE(894), 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, @@ -97270,70 +101877,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, - [21270] = 20, + [21268] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1717), 1, + anon_sym_sizeof, + ACTIONS(1721), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1723), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1727), 1, sym_number_literal, - ACTIONS(1538), 1, + ACTIONS(2296), 1, sym_identifier, - ACTIONS(1556), 1, - anon_sym_sizeof, - ACTIONS(2254), 1, + ACTIONS(2298), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(953), 1, sym_string_literal, - STATE(944), 1, + STATE(1073), 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(1552), 2, + ACTIONS(1711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1554), 2, + ACTIONS(1713), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(1725), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1733), 2, + sym_true, + sym_false, + ACTIONS(1735), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2300), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2256), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1719), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1729), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(884), 22, + STATE(1117), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -97356,7 +101967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21371] = 21, + [21369] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -97365,15 +101976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1943), 1, - anon_sym_sizeof, - ACTIONS(2236), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2238), 1, + ACTIONS(2015), 1, + anon_sym_sizeof, + ACTIONS(2079), 1, anon_sym_LPAREN2, - STATE(890), 1, + STATE(893), 1, sym_string_literal, - STATE(1208), 1, + STATE(1354), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -97384,16 +101995,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1939), 2, + ACTIONS(2011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1941), 2, + ACTIONS(2013), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2240), 2, + ACTIONS(2083), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2089), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -97414,13 +102025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(983), 5, + STATE(1183), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(884), 17, + STATE(894), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -97438,70 +102049,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21474] = 20, + [21472] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1830), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1832), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1836), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2298), 1, + ACTIONS(1986), 1, sym_identifier, - ACTIONS(2300), 1, - anon_sym_LPAREN2, - STATE(910), 1, + STATE(893), 1, sym_string_literal, - STATE(1004), 1, + STATE(1271), 1, sym__expression, - ACTIONS(1820), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1822), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1834), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1842), 2, - sym_true, - sym_false, - ACTIONS(1844), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2250), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2302), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1828), 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(1838), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1840), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1073), 22, + STATE(1085), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(894), 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, @@ -97510,34 +102126,30 @@ 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, [21575] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 1, + ACTIONS(2017), 1, anon_sym_const, - ACTIONS(1971), 1, + ACTIONS(2021), 1, anon_sym_LPAREN2, - ACTIONS(1977), 1, + ACTIONS(2027), 1, anon_sym_STAR, - ACTIONS(1984), 1, + ACTIONS(2037), 1, anon_sym_EQ, - STATE(824), 1, + STATE(867), 1, sym_string_literal, - STATE(1017), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2006), 2, + ACTIONS(2030), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2400), 4, + ACTIONS(2450), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -97548,7 +102160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1980), 8, + ACTIONS(2033), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -97557,7 +102169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1988), 10, + ACTIONS(2041), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97568,7 +102180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1975), 11, + ACTIONS(2025), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -97580,7 +102192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1969), 12, + ACTIONS(2019), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97593,7 +102205,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21663] = 21, + [21663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 1, + sym_identifier, + STATE(871), 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(2456), 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(2454), 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, + [21734] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97610,19 +102287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2402), 1, + ACTIONS(2458), 1, anon_sym_LBRACE, - STATE(915), 1, + STATE(963), 1, sym_ms_call_modifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1430), 1, + STATE(1466), 1, sym__declaration_specifiers, - STATE(228), 3, + STATE(571), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -97631,7 +102308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97644,7 +102321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97673,7 +102350,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21764] = 21, + [21835] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + sym_identifier, + STATE(869), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2467), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2465), 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(2463), 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, + [21906] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97690,19 +102432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2404), 1, + ACTIONS(2470), 1, anon_sym_LBRACE, - STATE(914), 1, + STATE(960), 1, sym_ms_call_modifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1417), 1, + STATE(1469), 1, sym__declaration_specifiers, - STATE(535), 3, + STATE(440), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -97711,7 +102453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97724,7 +102466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97753,12 +102495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21865] = 6, + [22007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(2472), 1, sym_identifier, - STATE(825), 2, + STATE(869), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, @@ -97767,7 +102509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2410), 16, + ACTIONS(2476), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -97784,7 +102526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2408), 33, + ACTIONS(2474), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -97818,72 +102560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21936] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 1, - sym_identifier, - STATE(827), 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, - [22007] = 21, + [22078] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97900,19 +102577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2418), 1, + ACTIONS(2478), 1, anon_sym_LBRACE, - STATE(919), 1, + STATE(957), 1, sym_ms_call_modifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1423), 1, + STATE(1472), 1, sym__declaration_specifiers, - STATE(490), 3, + STATE(182), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -97921,7 +102598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97934,7 +102611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97963,71 +102640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22108] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2420), 1, - sym_identifier, - STATE(827), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2427), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2425), 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(2423), 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, [22179] = 21, ACTIONS(3), 1, sym_comment, @@ -98045,19 +102657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2430), 1, + ACTIONS(2480), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(967), 1, sym_ms_call_modifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1431), 1, + STATE(1470), 1, sym__declaration_specifiers, - STATE(465), 3, + STATE(250), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -98066,7 +102678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98079,7 +102691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98125,19 +102737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2432), 1, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(962), 1, sym_ms_call_modifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1432), 1, + STATE(1476), 1, sym__declaration_specifiers, - STATE(152), 3, + STATE(542), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -98146,7 +102758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98159,7 +102771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98191,7 +102803,7 @@ static const uint16_t ts_small_parse_table[] = { [22381] = 5, ACTIONS(3), 1, sym_comment, - STATE(824), 1, + STATE(867), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98199,7 +102811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 17, + ACTIONS(2025), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98217,7 +102829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1969), 33, + ACTIONS(2019), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98254,7 +102866,7 @@ static const uint16_t ts_small_parse_table[] = { [22449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 17, + ACTIONS(2484), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98272,7 +102884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2436), 38, + ACTIONS(2486), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98314,7 +102926,7 @@ static const uint16_t ts_small_parse_table[] = { [22512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 17, + ACTIONS(2488), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98332,7 +102944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2440), 38, + ACTIONS(2490), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98374,7 +102986,7 @@ static const uint16_t ts_small_parse_table[] = { [22575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 20, + ACTIONS(2492), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98395,7 +103007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2444), 34, + ACTIONS(2494), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98433,7 +103045,7 @@ static const uint16_t ts_small_parse_table[] = { [22637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 20, + ACTIONS(2496), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98454,7 +103066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2448), 34, + ACTIONS(2498), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98492,7 +103104,7 @@ static const uint16_t ts_small_parse_table[] = { [22699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 20, + ACTIONS(2500), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98513,7 +103125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2452), 34, + ACTIONS(2502), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98551,7 +103163,7 @@ static const uint16_t ts_small_parse_table[] = { [22761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 20, + ACTIONS(2504), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98572,7 +103184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2456), 34, + ACTIONS(2506), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98610,7 +103222,7 @@ static const uint16_t ts_small_parse_table[] = { [22823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 20, + ACTIONS(2508), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98631,7 +103243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2460), 34, + ACTIONS(2510), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98669,7 +103281,7 @@ static const uint16_t ts_small_parse_table[] = { [22885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 20, + ACTIONS(2512), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98690,7 +103302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2464), 34, + ACTIONS(2514), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98728,7 +103340,7 @@ static const uint16_t ts_small_parse_table[] = { [22947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 20, + ACTIONS(2516), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98749,7 +103361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2468), 34, + ACTIONS(2518), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98787,7 +103399,7 @@ static const uint16_t ts_small_parse_table[] = { [23009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 20, + ACTIONS(2520), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98808,7 +103420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2472), 34, + ACTIONS(2522), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98846,7 +103458,7 @@ static const uint16_t ts_small_parse_table[] = { [23071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 20, + ACTIONS(2524), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98867,7 +103479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2476), 34, + ACTIONS(2526), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98905,7 +103517,7 @@ static const uint16_t ts_small_parse_table[] = { [23133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 20, + ACTIONS(2528), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98926,7 +103538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2480), 34, + ACTIONS(2530), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98961,78 +103573,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 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(2484), 34, - 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23254] = 9, + [23195] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 1, + ACTIONS(2542), 1, anon_sym___attribute__, - ACTIONS(2499), 1, + ACTIONS(2545), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2502), 1, + ACTIONS(2548), 1, anon_sym___declspec, - ACTIONS(2488), 5, + ACTIONS(2534), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(844), 7, + STATE(888), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -99040,7 +103596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2490), 9, + ACTIONS(2536), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -99050,7 +103606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2493), 10, + ACTIONS(2539), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -99061,7 +103617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2486), 17, + ACTIONS(2532), 17, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -99079,69 +103635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23325] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2505), 1, - sym_identifier, - STATE(824), 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(2509), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2507), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23390] = 3, + [23266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 21, + ACTIONS(1996), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -99163,7 +103660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1935), 30, + ACTIONS(1994), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -99194,10 +103691,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23449] = 3, + [23325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 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(2553), 34, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [23384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 21, + ACTIONS(1984), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -99219,7 +103772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2482), 30, + ACTIONS(1982), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -99250,10 +103803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23508] = 3, + [23443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 21, + ACTIONS(2553), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -99275,7 +103828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1947), 30, + ACTIONS(2551), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -99306,82 +103859,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23567] = 20, + [23502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2555), 1, + sym_identifier, + STATE(867), 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(2559), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - 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(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2557), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [23567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 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, - STATE(502), 1, - sym_compound_statement, - STATE(955), 1, - sym__type_specifier, - STATE(1006), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, - sym__declaration_specifiers, - STATE(881), 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(998), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(932), 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, - [23659] = 3, + ACTIONS(2563), 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, + [23625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 17, + ACTIONS(2565), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -99399,7 +103994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2513), 33, + ACTIONS(2567), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -99433,79 +104028,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23717] = 20, + [23683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2569), 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(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(453), 1, - sym_compound_statement, - STATE(955), 1, - sym__type_specifier, - STATE(1006), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, - sym__declaration_specifiers, - STATE(898), 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(998), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(932), 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, - [23809] = 20, + ACTIONS(2571), 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, + [23741] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -99524,17 +104102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(154), 1, + STATE(183), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(854), 2, + STATE(936), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -99542,13 +104120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -99577,7 +104155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23901] = 20, + [23833] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -99592,21 +104170,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(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(250), 1, + STATE(189), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(905), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -99614,13 +104192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -99649,7 +104227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23993] = 20, + [23925] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -99664,21 +104242,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(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(161), 1, + STATE(255), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(936), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -99686,13 +104264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -99721,7 +104299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24085] = 20, + [24017] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -99736,21 +104314,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(643), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(165), 1, + STATE(547), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(860), 2, + STATE(927), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -99758,13 +104336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -99778,242 +104356,22 @@ 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, - 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, - [24177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2515), 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(2517), 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, - [24235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 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(2521), 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, - [24293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2523), 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(2525), 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, - [24351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2527), 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(2529), 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, - [24409] = 20, + 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, + [24109] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100028,21 +104386,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(643), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(150), 1, + STATE(536), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(936), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -100050,13 +104408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100085,10 +104443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24501] = 3, + [24201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 17, + ACTIONS(2573), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -100106,7 +104464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2533), 33, + ACTIONS(2575), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -100140,7 +104498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24559] = 21, + [24259] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100155,36 +104513,35 @@ 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(2017), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2535), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2537), 1, - anon_sym_RPAREN, - STATE(955), 1, + STATE(253), 1, + sym_compound_statement, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1443), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(1861), 1, - sym_variadic_parameter, - STATE(2016), 1, - sym_parameter_declaration, + STATE(899), 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(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100213,7 +104570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24653] = 20, + [24351] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100228,35 +104585,35 @@ 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(2017), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2019), 1, - anon_sym_RPAREN, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(259), 1, + sym_compound_statement, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1443), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(2016), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(936), 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(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100285,172 +104642,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2539), 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(2541), 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, - [24803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2543), 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(2545), 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, - [24861] = 3, + [24443] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 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(129), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(2549), 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, - [24919] = 20, + STATE(159), 1, + sym_compound_statement, + STATE(1022), 1, + sym__type_specifier, + STATE(1059), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1478), 1, + sym__declaration_specifiers, + STATE(936), 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(1050), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(974), 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, + [24535] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100469,17 +104733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(229), 1, + STATE(272), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(853), 2, + STATE(904), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -100487,13 +104751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100522,7 +104786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25011] = 20, + [24627] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100541,17 +104805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(525), 1, + STATE(568), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(922), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -100559,13 +104823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100594,117 +104858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2551), 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(2553), 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, - [25161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2555), 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(2557), 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, - [25219] = 20, + [24719] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100719,21 +104873,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(253), 1, + STATE(544), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(876), 2, + STATE(936), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -100741,13 +104895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100776,10 +104930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25311] = 3, + [24811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 17, + ACTIONS(2577), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -100797,7 +104951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2561), 33, + ACTIONS(2579), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -100831,7 +104985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25369] = 20, + [24869] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100846,21 +105000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(565), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(412), 1, + STATE(505), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(908), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -100868,13 +105022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100903,7 +105057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25461] = 20, + [24961] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100918,21 +105072,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(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(489), 1, + STATE(162), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(851), 2, + STATE(897), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -100940,13 +105094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100975,79 +105129,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25553] = 20, + [25053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2581), 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(565), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(431), 1, - sym_compound_statement, - STATE(955), 1, - sym__type_specifier, - STATE(1006), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, - sym__declaration_specifiers, - STATE(873), 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(998), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(932), 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, - [25645] = 20, + ACTIONS(2583), 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, + [25111] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -101062,21 +105199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(234), 1, + STATE(500), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(936), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -101084,13 +105221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101119,15 +105256,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25737] = 20, + [25203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 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(2587), 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, + [25261] = 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, @@ -101136,19 +105326,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(643), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(532), 1, + STATE(522), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(901), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -101156,13 +105348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101191,7 +105383,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25829] = 20, + [25353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2589), 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(2591), 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, + [25411] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -101206,21 +105453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(565), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(434), 1, + STATE(453), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(913), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -101228,13 +105475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101263,7 +105510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25921] = 20, + [25503] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -101278,35 +105525,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(565), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2067), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2593), 1, sym_identifier, - STATE(450), 1, - sym_compound_statement, - STATE(955), 1, + ACTIONS(2595), 1, + anon_sym_RPAREN, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1528), 1, sym__declaration_specifiers, - STATE(878), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1907), 1, + sym_variadic_parameter, + STATE(1946), 1, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101335,7 +105583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26013] = 20, + [25597] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -101354,17 +105602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(510), 1, + STATE(558), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(868), 2, + STATE(929), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -101372,13 +105620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101407,13 +105655,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26105] = 20, + [25689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 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(2599), 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, + [25747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2601), 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(2603), 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, + [25805] = 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, @@ -101422,21 +105782,19 @@ 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(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(492), 1, + STATE(564), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(898), 2, + STATE(936), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -101444,13 +105802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101479,10 +105837,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26197] = 3, + [25897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 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(2607), 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, + [25955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2609), 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(2611), 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, + [26013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 17, + ACTIONS(2613), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -101500,7 +105968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2565), 33, + ACTIONS(2615), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -101534,10 +106002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [26255] = 3, + [26071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 17, + ACTIONS(2617), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -101555,7 +106023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2569), 33, + ACTIONS(2619), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -101589,10 +106057,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [26313] = 3, + [26129] = 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(643), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2149), 1, + sym_identifier, + STATE(525), 1, + sym_compound_statement, + STATE(1022), 1, + sym__type_specifier, + STATE(1059), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1478), 1, + sym__declaration_specifiers, + STATE(936), 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(1050), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(974), 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, + [26221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 17, + ACTIONS(2621), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -101610,7 +106150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2573), 33, + ACTIONS(2623), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -101644,7 +106184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [26371] = 20, + [26279] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -101663,17 +106203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(523), 1, + STATE(563), 1, sym_compound_statement, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, + STATE(1478), 1, sym__declaration_specifiers, - STATE(877), 2, + STATE(936), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -101681,13 +106221,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(974), 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, + [26371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 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(2627), 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, + [26429] = 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(2067), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2069), 1, + anon_sym_RPAREN, + ACTIONS(2149), 1, + sym_identifier, + STATE(1022), 1, + sym__type_specifier, + STATE(1059), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1528), 1, + sym__declaration_specifiers, + STATE(1946), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101716,10 +106383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26463] = 3, + [26521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 17, + ACTIONS(2629), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -101735,10 +106402,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + sym_identifier, + ACTIONS(2631), 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, + 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, + [26578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2633), 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(2577), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2635), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -101753,9 +106472,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, @@ -101770,23 +106489,24 @@ 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, - [26521] = 8, + [26635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2579), 16, + ACTIONS(2637), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -101803,7 +106523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2581), 26, + ACTIONS(2639), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -101830,7 +106550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26588] = 19, + [26702] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -101847,31 +106567,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2067), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2099), 1, + ACTIONS(2649), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1443), 1, + STATE(1528), 1, sym__declaration_specifiers, - STATE(2084), 2, - sym_variadic_parameter, + STATE(2079), 1, sym_parameter_declaration, + STATE(2153), 1, + sym_variadic_parameter, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -101900,22 +106621,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26677] = 8, + [26793] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2591), 16, + ACTIONS(2651), 1, + sym_identifier, + ACTIONS(2660), 1, + anon_sym___attribute__, + ACTIONS(2663), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2666), 1, + anon_sym___declspec, + ACTIONS(2669), 1, + anon_sym_LBRACE, + ACTIONS(2674), 1, + sym_primitive_type, + ACTIONS(2677), 1, + anon_sym_enum, + ACTIONS(2680), 1, + anon_sym_struct, + ACTIONS(2683), 1, + anon_sym_union, + STATE(1022), 1, + sym__type_specifier, + STATE(1059), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1478), 1, + sym__declaration_specifiers, + STATE(936), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2671), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(974), 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(2654), 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(2657), 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, + [26882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2686), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -101932,13 +106711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2593), 26, + ACTIONS(2688), 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, @@ -101946,7 +106726,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, @@ -101959,18 +106741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26744] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26939] = 8, ACTIONS(3), 1, sym_comment, - STATE(824), 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(2509), 15, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2690), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -101984,22 +106774,25 @@ 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(2507), 28, + ACTIONS(2692), 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_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_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102011,26 +106804,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26805] = 8, + [27006] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 16, + ACTIONS(2694), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -102047,7 +106836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2597), 26, + ACTIONS(2696), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -102074,10 +106863,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26872] = 3, + [27073] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 16, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2698), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -102094,14 +106895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2601), 33, + ACTIONS(2700), 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_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -102109,9 +106909,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, @@ -102124,65 +106922,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, - [26929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2603), 40, - 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, - 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, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [26986] = 20, + [27140] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -102199,32 +106939,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2067), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2607), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1443), 1, + STATE(1528), 1, sym__declaration_specifiers, - STATE(2084), 1, - sym_parameter_declaration, - STATE(2095), 1, + STATE(2079), 2, sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -102253,10 +106992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27077] = 3, + [27229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 16, + STATE(867), 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(2559), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -102270,12 +107017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2611), 33, + ACTIONS(2557), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -102287,11 +107032,7 @@ 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, @@ -102307,31 +107048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27134] = 7, + [27290] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, - anon_sym_EQ, - STATE(824), 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(2615), 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(1975), 14, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2702), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -102345,30 +107074,63 @@ 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(1969), 18, + ACTIONS(2704), 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27199] = 3, + [27355] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 16, + ACTIONS(2706), 1, + anon_sym_EQ, + STATE(867), 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(2708), 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(2025), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -102382,12 +107144,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(2619), 33, + ACTIONS(2019), 18, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -102399,87 +107158,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, - [27256] = 19, + [27420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, - sym_identifier, - ACTIONS(2630), 1, - anon_sym___attribute__, - ACTIONS(2633), 1, + ACTIONS(2712), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2636), 1, - anon_sym___declspec, - ACTIONS(2639), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, - sym_primitive_type, - ACTIONS(2647), 1, - anon_sym_enum, - ACTIONS(2650), 1, - anon_sym_struct, - ACTIONS(2653), 1, - anon_sym_union, - STATE(955), 1, - sym__type_specifier, - STATE(1006), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1420), 1, - sym__declaration_specifiers, - STATE(898), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2641), 4, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2710), 40, + 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, - STATE(998), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(932), 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(2624), 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(2627), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102489,22 +107203,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27345] = 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [27477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2656), 16, + ACTIONS(2714), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -102521,7 +107250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2658), 26, + ACTIONS(2716), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -102548,19 +107277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27412] = 7, + [27544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2660), 16, + ACTIONS(2718), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -102577,13 +107297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2662), 28, + ACTIONS(2720), 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, @@ -102591,7 +107312,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, @@ -102606,11 +107329,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [27477] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [27601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 16, - aux_sym_preproc_elif_token1, + ACTIONS(2722), 1, + sym_identifier, + STATE(951), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1731), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2476), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102623,16 +107358,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(2666), 33, + ACTIONS(2474), 27, 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102640,11 +107371,7 @@ 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, @@ -102660,55 +107387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27534] = 8, + [27663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2668), 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(2037), 1, anon_sym_EQ, - sym_identifier, - ACTIONS(2670), 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, + STATE(867), 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(2041), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102719,21 +107411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, - sym_identifier, - STATE(904), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2416), 13, + ACTIONS(2025), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102746,12 +107424,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2414), 27, + ACTIONS(2019), 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_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102759,37 +107434,31 @@ 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_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, - [27663] = 6, + [27727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2724), 1, sym_identifier, - STATE(904), 2, + STATE(948), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2677), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2425), 13, + ACTIONS(2456), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102803,7 +107472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2423), 27, + ACTIONS(2454), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102831,21 +107500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27725] = 6, + [27789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, + ACTIONS(2726), 1, sym_identifier, - STATE(903), 2, + STATE(951), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1840), 5, + ACTIONS(2729), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2410), 13, + ACTIONS(2465), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102859,7 +107528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2408), 27, + ACTIONS(2463), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102887,31 +107556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27787] = 7, + [27851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, - anon_sym_EQ, - STATE(824), 1, + STATE(950), 1, sym_string_literal, - ACTIONS(95), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1988), 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(1975), 12, + ACTIONS(2025), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102924,9 +107580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1969), 19, + anon_sym_EQ, + sym_identifier, + ACTIONS(2019), 27, 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, @@ -102934,41 +107594,34 @@ 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_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, - [27851] = 7, + [27910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_EQ, - STATE(905), 1, + STATE(950), 1, sym_string_literal, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2684), 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(1975), 13, + ACTIONS(2559), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102981,8 +107634,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(1969), 17, + ACTIONS(2557), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102996,17 +107650,27 @@ 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, - [27914] = 5, + [27969] = 5, ACTIONS(3), 1, sym_comment, - STATE(908), 2, + STATE(954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2690), 9, + ACTIONS(2736), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -103016,7 +107680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2686), 17, + ACTIONS(2732), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -103034,7 +107698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(2688), 19, + ACTIONS(2734), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -103054,18 +107718,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [27973] = 5, + [28028] = 7, ACTIONS(3), 1, sym_comment, - STATE(905), 1, + ACTIONS(2739), 1, + anon_sym_EQ, + STATE(950), 1, sym_string_literal, - ACTIONS(1840), 5, + ACTIONS(1731), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 14, + ACTIONS(2741), 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(2025), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103078,9 +107755,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(1969), 27, + ACTIONS(2019), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -103094,32 +107770,14 @@ 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, - [28032] = 5, + [28091] = 3, ACTIONS(3), 1, sym_comment, - STATE(905), 1, - sym_string_literal, - ACTIONS(1840), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2509), 14, + ACTIONS(2484), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103134,7 +107792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2507), 27, + ACTIONS(2486), 32, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -103162,7 +107820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28091] = 17, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28145] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -103179,26 +107842,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1523), 1, + STATE(1597), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103227,7 +107890,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28173] = 17, + [28227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2488), 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(2490), 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, + [28281] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -103244,26 +107958,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1541), 1, + STATE(1554), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103292,7 +108006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28255] = 17, + [28363] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -103309,26 +108023,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1497), 1, + STATE(1600), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103357,7 +108071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28337] = 17, + [28445] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -103374,26 +108088,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1554), 1, + STATE(1569), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103422,7 +108136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28419] = 17, + [28527] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -103439,26 +108153,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1549), 1, + STATE(1593), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103487,58 +108201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 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(2440), 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, - [28555] = 17, + [28609] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -103555,26 +108218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1512), 1, + STATE(1596), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103593,67 +108256,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [28637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2434), 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(2436), 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, + 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, [28691] = 17, ACTIONS(3), 1, sym_comment, @@ -103671,26 +108283,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1555), 1, + STATE(1573), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103736,26 +108348,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1550), 1, + STATE(1559), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103801,26 +108413,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1551), 1, + STATE(1570), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103866,26 +108478,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(955), 1, + STATE(1022), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1543), 1, + STATE(1599), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(932), 7, + STATE(974), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -103914,83 +108526,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29019] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 1, - anon_sym_EQ, - ACTIONS(1986), 1, - anon_sym_COLON, - STATE(824), 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(1988), 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(1975), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1969), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29082] = 7, + [29019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2697), 1, - anon_sym_LBRACE, - STATE(965), 1, - sym_field_declaration_list, - STATE(1009), 1, - sym_attribute_specifier, - ACTIONS(2695), 7, + ACTIONS(2745), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2693), 34, + anon_sym_LBRACE, + ACTIONS(2743), 38, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -104022,15 +108572,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, - [29143] = 8, + [29072] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2037), 1, anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(2039), 1, anon_sym_COLON, - STATE(824), 1, + STATE(867), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -104038,7 +108591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1988), 10, + ACTIONS(2041), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -104049,7 +108602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1975), 12, + ACTIONS(2025), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104062,7 +108615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1969), 15, + ACTIONS(2019), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -104078,33 +108631,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29206] = 3, + [29135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 19, + ACTIONS(2749), 7, + 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(2699), 26, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2747), 38, 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, + 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, @@ -104113,29 +108676,19 @@ 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29259] = 8, + [29188] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2037), 1, anon_sym_EQ, - ACTIONS(2011), 1, + ACTIONS(2045), 1, anon_sym_COLON, - STATE(824), 1, + STATE(867), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -104143,7 +108696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1988), 10, + ACTIONS(2041), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -104154,7 +108707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1975), 12, + ACTIONS(2025), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104167,7 +108720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1969), 15, + ACTIONS(2019), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -104183,127 +108736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29322] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 1, - anon_sym_EQ, - ACTIONS(2703), 1, - anon_sym_COLON, - STATE(824), 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(1988), 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(1975), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1969), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29385] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2697), 1, - anon_sym_LBRACE, - STATE(966), 1, - sym_field_declaration_list, - STATE(1015), 1, - sym_attribute_specifier, - ACTIONS(2707), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2705), 34, - anon_sym___extension__, - anon_sym_extern, - 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, - 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, - [29446] = 7, + [29251] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2697), 1, + ACTIONS(2755), 1, anon_sym_LBRACE, - STATE(984), 1, + STATE(1011), 1, sym_field_declaration_list, - STATE(1024), 1, + STATE(1064), 1, sym_attribute_specifier, - ACTIONS(2711), 7, + ACTIONS(2753), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104311,7 +108755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2709), 34, + ACTIONS(2751), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -104346,18 +108790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29507] = 7, + [29312] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2697), 1, + ACTIONS(2755), 1, anon_sym_LBRACE, - STATE(956), 1, + STATE(1002), 1, sym_field_declaration_list, - STATE(992), 1, + STATE(1069), 1, sym_attribute_specifier, - ACTIONS(2715), 7, + ACTIONS(2759), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104365,7 +108809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2713), 34, + ACTIONS(2757), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -104400,7 +108844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29568] = 16, + [29373] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -104417,24 +108861,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(960), 1, + STATE(1007), 1, sym__type_specifier, - STATE(1006), 1, + STATE(1059), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(844), 7, + STATE(888), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -104463,18 +108907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29647] = 7, + [29452] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2697), 1, + ACTIONS(2755), 1, anon_sym_LBRACE, - STATE(985), 1, + STATE(1008), 1, sym_field_declaration_list, - STATE(1034), 1, + STATE(1082), 1, sym_attribute_specifier, - ACTIONS(2719), 7, + ACTIONS(2763), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104482,7 +108926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2717), 34, + ACTIONS(2761), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -104517,14 +108961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29708] = 8, + [29513] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2037), 1, anon_sym_EQ, - ACTIONS(2009), 1, + ACTIONS(2063), 1, anon_sym_COLON, - STATE(824), 1, + STATE(867), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -104532,7 +108976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1988), 10, + ACTIONS(2041), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -104543,7 +108987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1975), 12, + ACTIONS(2025), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104556,7 +109000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1969), 15, + ACTIONS(2019), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -104572,14 +109016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29771] = 8, + [29576] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2037), 1, anon_sym_EQ, - ACTIONS(2004), 1, + ACTIONS(2765), 1, anon_sym_COLON, - STATE(824), 1, + STATE(867), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -104587,7 +109031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1988), 10, + ACTIONS(2041), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -104598,7 +109042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1975), 12, + ACTIONS(2025), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104611,7 +109055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1969), 15, + ACTIONS(2019), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -104620,121 +109064,76 @@ 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, - [29834] = 3, + [29639] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(2037), 1, + anon_sym_EQ, + ACTIONS(2047), 1, anon_sym_COLON, - ACTIONS(2699), 38, - 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, - 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, - [29887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 7, + STATE(867), 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(2041), 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(2025), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2019), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2721), 38, - 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, - 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, - [29940] = 8, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29702] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(2037), 1, anon_sym_EQ, - ACTIONS(1990), 1, + ACTIONS(2043), 1, anon_sym_COLON, - STATE(824), 1, + STATE(867), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -104742,7 +109141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1988), 10, + ACTIONS(2041), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -104753,7 +109152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1975), 12, + ACTIONS(2025), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104766,7 +109165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1969), 15, + ACTIONS(2019), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -104782,42 +109181,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [30003] = 3, + [29765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2749), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1947), 38, + 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(2747), 26, + anon_sym_DASH, + anon_sym_PLUS, 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, - 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, @@ -104826,91 +109216,97 @@ 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, + 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, - [30055] = 20, + [29818] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2733), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2735), 1, - anon_sym_AMP_AMP, - ACTIONS(2737), 1, - anon_sym_PIPE, - ACTIONS(2739), 1, - anon_sym_CARET, - ACTIONS(2741), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_QMARK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2727), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2729), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2747), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2749), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2731), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2725), 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_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(33), 1, + anon_sym___attribute__, + ACTIONS(2755), 1, + anon_sym_LBRACE, + STATE(1027), 1, + sym_field_declaration_list, + STATE(1065), 1, + sym_attribute_specifier, + ACTIONS(2769), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2767), 34, + anon_sym___extension__, + anon_sym_extern, + 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, + 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, - [30141] = 3, + [29879] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 6, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2755), 1, + anon_sym_LBRACE, + STATE(1006), 1, + sym_field_declaration_list, + STATE(1056), 1, + sym_attribute_specifier, + ACTIONS(2773), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1935), 38, + anon_sym_COLON, + ACTIONS(2771), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -104942,65 +109338,110 @@ 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, - [30193] = 20, + [29940] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2733), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2735), 1, - anon_sym_AMP_AMP, - ACTIONS(2737), 1, + ACTIONS(2037), 1, + anon_sym_EQ, + ACTIONS(2061), 1, + anon_sym_COLON, + STATE(867), 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(2041), 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(2025), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2739), 1, anon_sym_CARET, - ACTIONS(2741), 1, anon_sym_AMP, - ACTIONS(2751), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2019), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - STATE(870), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [30003] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, + ACTIONS(2779), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2747), 2, + ACTIONS(2781), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2755), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2731), 3, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2753), 16, + ACTIONS(2690), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2692), 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, anon_sym_PERCENT_EQ, @@ -105012,116 +109453,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30279] = 20, + [30075] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2733), 1, + ACTIONS(2789), 1, anon_sym_PIPE_PIPE, - ACTIONS(2735), 1, + ACTIONS(2791), 1, anon_sym_AMP_AMP, - ACTIONS(2737), 1, + ACTIONS(2793), 1, anon_sym_PIPE, - ACTIONS(2739), 1, + ACTIONS(2795), 1, anon_sym_CARET, - ACTIONS(2741), 1, + ACTIONS(2797), 1, anon_sym_AMP, - ACTIONS(2751), 1, + ACTIONS(2801), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, + ACTIONS(2779), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2747), 2, + ACTIONS(2781), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2759), 2, + ACTIONS(2787), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2731), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2757), 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_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, - [30365] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2731), 3, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 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(2597), 23, + ACTIONS(2785), 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, @@ -105133,52 +109519,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30429] = 18, + [30161] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2791), 1, anon_sym_AMP_AMP, - ACTIONS(2737), 1, + ACTIONS(2793), 1, anon_sym_PIPE, - ACTIONS(2739), 1, + ACTIONS(2795), 1, anon_sym_CARET, - ACTIONS(2741), 1, + ACTIONS(2797), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 2, + ACTIONS(2690), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, + ACTIONS(2779), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2747), 2, + ACTIONS(2781), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2731), 3, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 18, + ACTIONS(2692), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105197,50 +109583,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30511] = 17, + [30243] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, + ACTIONS(2793), 1, anon_sym_PIPE, - ACTIONS(2739), 1, + ACTIONS(2795), 1, anon_sym_CARET, - ACTIONS(2741), 1, + ACTIONS(2797), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 2, + ACTIONS(2690), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, + ACTIONS(2779), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2747), 2, + ACTIONS(2781), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2731), 3, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 19, + ACTIONS(2692), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105260,49 +109646,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30591] = 16, + [30323] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2739), 1, + ACTIONS(2795), 1, anon_sym_CARET, - ACTIONS(2741), 1, + ACTIONS(2797), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, + ACTIONS(2779), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2747), 2, + ACTIONS(2781), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2595), 3, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2690), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2731), 3, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 19, + ACTIONS(2692), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105322,48 +109708,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30669] = 15, + [30401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(1984), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1982), 38, + 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, + 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, + [30453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2805), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2803), 38, + 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, + 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, + [30505] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2741), 1, + ACTIONS(2797), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, + ACTIONS(2779), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2747), 2, + ACTIONS(2781), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2731), 3, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 4, + ACTIONS(2690), 4, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(2597), 19, + ACTIONS(2692), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105383,70 +109867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30745] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2761), 1, - anon_sym_EQ, - STATE(824), 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(2763), 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(1975), 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(1969), 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, - [30805] = 3, + [30581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 6, + ACTIONS(1996), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 38, + ACTIONS(1994), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105485,47 +109916,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30857] = 14, + [30633] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2745), 2, + ACTIONS(2779), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2747), 2, + ACTIONS(2781), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2731), 3, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 5, + ACTIONS(2690), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2597), 19, + ACTIONS(2692), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105545,44 +109976,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30931] = 13, + [30707] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2745), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2747), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2749), 2, + ACTIONS(2783), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2731), 3, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 5, + ACTIONS(2690), 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(2597), 21, + ACTIONS(2692), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105592,6 +110019,8 @@ 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, @@ -105604,40 +110033,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31003] = 11, + [30775] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2749), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2731), 3, + ACTIONS(2777), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 7, + ACTIONS(2690), 9, 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(2597), 23, + ACTIONS(2692), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105661,30 +110089,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31071] = 10, + [30841] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + ACTIONS(2789), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2791), 1, + anon_sym_AMP_AMP, + ACTIONS(2793), 1, + anon_sym_PIPE, + ACTIONS(2795), 1, + anon_sym_CARET, + ACTIONS(2797), 1, + anon_sym_AMP, + ACTIONS(2801), 1, + anon_sym_QMARK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 2, + ACTIONS(2775), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2779), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2781), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2783), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2809), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2777), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2807), 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_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, + [30927] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2811), 1, + anon_sym_EQ, + STATE(867), 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(2813), 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(2025), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 9, + 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(2019), 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, + [30987] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2777), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 11, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -105693,7 +110239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2597), 23, + ACTIONS(2692), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105717,6 +110263,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, + [31051] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2789), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2791), 1, + anon_sym_AMP_AMP, + ACTIONS(2793), 1, + anon_sym_PIPE, + ACTIONS(2795), 1, + anon_sym_CARET, + ACTIONS(2797), 1, + anon_sym_AMP, + ACTIONS(2801), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2775), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2779), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2781), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2783), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2799), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2817), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2777), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2815), 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_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, [31137] = 9, ACTIONS(3), 1, sym_comment, @@ -105726,13 +110338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 5, + ACTIONS(2821), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(961), 7, + STATE(888), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -105750,7 +110362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2769), 9, + ACTIONS(2819), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -105772,13 +110384,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread_local, anon_sym___thread, [31200] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2827), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2825), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2823), 31, + 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_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, + [31255] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1030), 1, + STATE(1054), 1, sym_attribute_specifier, - ACTIONS(2775), 7, + ACTIONS(2832), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105786,7 +110448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2773), 34, + ACTIONS(2830), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -105821,75 +110483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [31255] = 20, + [31310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2755), 1, - anon_sym_EQ, - ACTIONS(2781), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2783), 1, - anon_sym_AMP_AMP, - ACTIONS(2785), 1, - anon_sym_PIPE, - ACTIONS(2787), 1, - anon_sym_CARET, - ACTIONS(2789), 1, - anon_sym_AMP, - ACTIONS(2799), 1, - anon_sym_QMARK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2777), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2791), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2793), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2795), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2797), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2779), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2753), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2664), 14, + ACTIONS(2686), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105904,7 +110501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2666), 29, + ACTIONS(2688), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -105934,14 +110531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [31391] = 5, + [31361] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1008), 1, + STATE(1051), 1, sym_attribute_specifier, - ACTIONS(2803), 7, + ACTIONS(2836), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105949,7 +110546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2801), 34, + ACTIONS(2834), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -105984,31 +110581,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [31446] = 9, + [31416] = 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(2807), 5, + STATE(1075), 1, + sym_attribute_specifier, + ACTIONS(2840), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(986), 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_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2838), 34, anon_sym___extension__, + anon_sym_extern, + 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, + 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, @@ -106017,7 +110629,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2805), 9, + sym_primitive_type, + sym_identifier, + [31471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1040), 1, + sym_attribute_specifier, + ACTIONS(2844), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2842), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -106025,10 +110657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106038,7 +110671,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [31509] = 9, + 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, + [31526] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -106047,13 +110690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2811), 5, + ACTIONS(2848), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(844), 7, + STATE(1000), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -106071,7 +110714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2809), 9, + ACTIONS(2846), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -106092,17 +110735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [31572] = 5, + [31589] = 5, ACTIONS(3), 1, sym_comment, - STATE(962), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2817), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2815), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1061), 1, + sym_attribute_specifier, + ACTIONS(2852), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106110,10 +110750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2813), 31, + ACTIONS(2850), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -106122,6 +110761,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106142,55 +110785,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [31627] = 20, + [31644] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2727), 1, + ACTIONS(2817), 1, anon_sym_EQ, - ACTIONS(2781), 1, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE, - ACTIONS(2783), 1, + ACTIONS(2860), 1, anon_sym_AMP_AMP, - ACTIONS(2785), 1, + ACTIONS(2862), 1, anon_sym_PIPE, - ACTIONS(2787), 1, + ACTIONS(2864), 1, anon_sym_CARET, - ACTIONS(2789), 1, + ACTIONS(2866), 1, anon_sym_AMP, - ACTIONS(2799), 1, + ACTIONS(2876), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2791), 2, + ACTIONS(2868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2793), 2, + ACTIONS(2870), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2795), 2, + ACTIONS(2872), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2797), 2, + ACTIONS(2874), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2779), 3, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2725), 16, + ACTIONS(2815), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -106207,10 +110850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31712] = 3, + [31729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 14, + ACTIONS(2629), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106225,7 +110868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2619), 29, + ACTIONS(2631), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -106255,14 +110898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [31763] = 5, + [31780] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1011), 1, + STATE(1052), 1, sym_attribute_specifier, - ACTIONS(2822), 7, + ACTIONS(2880), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106270,7 +110913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2820), 34, + ACTIONS(2878), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -106305,96 +110948,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [31818] = 5, + [31835] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1037), 1, - sym_attribute_specifier, - ACTIONS(2826), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2824), 34, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(37), 1, 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, - 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, - [31873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(991), 1, - sym_attribute_specifier, - ACTIONS(2830), 7, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2884), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2828), 34, - anon_sym___extension__, - anon_sym_extern, - 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, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(888), 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, @@ -106403,27 +110981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [31928] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1031), 1, - sym_attribute_specifier, - ACTIONS(2834), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2832), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, + ACTIONS(2882), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -106431,11 +110989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106445,24 +111002,131 @@ 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_primitive_type, - sym_identifier, - [31983] = 5, + [31898] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2854), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2870), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2872), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2692), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31971] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2854), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2870), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2872), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2692), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1012), 1, + STATE(1053), 1, sym_attribute_specifier, - ACTIONS(2838), 7, + ACTIONS(2888), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106470,7 +111134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2836), 34, + ACTIONS(2886), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -106505,10 +111169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [32038] = 3, + [32097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 14, + ACTIONS(2633), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106523,7 +111187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2611), 29, + ACTIONS(2635), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -106553,38 +111217,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [32089] = 10, + [32148] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2779), 3, + ACTIONS(2874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 8, + ACTIONS(2690), 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(2597), 23, + ACTIONS(2692), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -106608,39 +111273,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32154] = 11, + [32215] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2797), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2779), 3, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 6, + ACTIONS(2690), 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(2597), 23, + ACTIONS(2692), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -106664,53 +111328,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32221] = 13, + [32280] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2793), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2795), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2692), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2797), 2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2708), 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(2025), 13, + 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(2779), 3, + ACTIONS(2019), 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_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [32398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2718), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 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(2597), 21, + anon_sym_DOT, + ACTIONS(2720), 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, @@ -106722,25 +111476,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32292] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_identifier, + [32449] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1020), 1, - sym_attribute_specifier, - ACTIONS(2842), 7, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2892), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2840), 34, + STATE(1012), 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2890), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -106748,11 +111521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106762,125 +111534,61 @@ 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_primitive_type, - sym_identifier, - [32347] = 14, + [32512] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2777), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2791), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2793), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2795), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2797), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2779), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2809), 1, anon_sym_EQ, - ACTIONS(2597), 19, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2858), 1, anon_sym_PIPE_PIPE, + ACTIONS(2860), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [32420] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2789), 1, + ACTIONS(2862), 1, + anon_sym_PIPE, + ACTIONS(2864), 1, + anon_sym_CARET, + ACTIONS(2866), 1, anon_sym_AMP, - STATE(870), 1, + ACTIONS(2876), 1, + anon_sym_QMARK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2791), 2, + ACTIONS(2868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2793), 2, + ACTIONS(2870), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2795), 2, + ACTIONS(2872), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2797), 2, + ACTIONS(2874), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2595), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2779), 3, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 19, + ACTIONS(2807), 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, @@ -106891,52 +111599,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32495] = 16, + [32597] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2787), 1, + ACTIONS(2690), 1, + anon_sym_EQ, + ACTIONS(2860), 1, + anon_sym_AMP_AMP, + ACTIONS(2862), 1, + anon_sym_PIPE, + ACTIONS(2864), 1, anon_sym_CARET, - ACTIONS(2789), 1, + ACTIONS(2866), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2777), 2, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2791), 2, + ACTIONS(2868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2793), 2, + ACTIONS(2870), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2795), 2, + ACTIONS(2872), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2797), 2, + ACTIONS(2874), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2779), 3, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 19, + ACTIONS(2692), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -106952,58 +111662,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32572] = 17, + [32678] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2595), 1, + ACTIONS(2787), 1, anon_sym_EQ, - ACTIONS(2785), 1, + ACTIONS(2858), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2860), 1, + anon_sym_AMP_AMP, + ACTIONS(2862), 1, anon_sym_PIPE, - ACTIONS(2787), 1, + ACTIONS(2864), 1, anon_sym_CARET, - ACTIONS(2789), 1, + ACTIONS(2866), 1, anon_sym_AMP, - STATE(870), 1, + ACTIONS(2876), 1, + anon_sym_QMARK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2791), 2, + ACTIONS(2868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2793), 2, + ACTIONS(2870), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2795), 2, + ACTIONS(2872), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2797), 2, + ACTIONS(2874), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2779), 3, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 19, + ACTIONS(2785), 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, @@ -107014,54 +111727,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32651] = 18, + [32763] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2595), 1, + ACTIONS(2690), 1, anon_sym_EQ, - ACTIONS(2783), 1, - anon_sym_AMP_AMP, - ACTIONS(2785), 1, + ACTIONS(2862), 1, anon_sym_PIPE, - ACTIONS(2787), 1, + ACTIONS(2864), 1, anon_sym_CARET, - ACTIONS(2789), 1, + ACTIONS(2866), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2791), 2, + ACTIONS(2868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2793), 2, + ACTIONS(2870), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2795), 2, + ACTIONS(2872), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2797), 2, + ACTIONS(2874), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2779), 3, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 18, + ACTIONS(2692), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -107077,163 +111789,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32732] = 9, + [32842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2779), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2595), 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(2597), 23, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1032), 1, + sym_attribute_specifier, + ACTIONS(2896), 7, 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_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_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, - [32795] = 3, - 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, - 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(2894), 34, + anon_sym___extension__, + anon_sym_extern, + 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_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_DASH_GT, + 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, - [32846] = 20, + [32897] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_EQ, - ACTIONS(2781), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2783), 1, - anon_sym_AMP_AMP, - ACTIONS(2785), 1, - anon_sym_PIPE, - ACTIONS(2787), 1, + ACTIONS(2864), 1, anon_sym_CARET, - ACTIONS(2789), 1, + ACTIONS(2866), 1, anon_sym_AMP, - ACTIONS(2799), 1, - anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2777), 2, + ACTIONS(2690), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2791), 2, + ACTIONS(2868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2793), 2, + ACTIONS(2870), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2795), 2, + ACTIONS(2872), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2797), 2, + ACTIONS(2874), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2779), 3, + ACTIONS(2856), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2757), 16, + ACTIONS(2692), 19, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -107244,64 +111900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32931] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2613), 1, - anon_sym_EQ, - ACTIONS(2615), 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(1975), 13, - 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(1969), 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [32986] = 5, + [32974] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1007), 1, + STATE(1063), 1, sym_attribute_specifier, - ACTIONS(2846), 7, + ACTIONS(2900), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107309,7 +111915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2844), 34, + ACTIONS(2898), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -107344,14 +111950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33041] = 5, + [33029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1013), 1, + STATE(1083), 1, sym_attribute_specifier, - ACTIONS(2850), 7, + ACTIONS(2904), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107359,7 +111965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2848), 34, + ACTIONS(2902), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -107394,165 +112000,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33096] = 9, + [33084] = 15, 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(2854), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2641), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(844), 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(2852), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(2643), 1, anon_sym_LBRACK, - sym_identifier, - 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, - [33159] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2759), 1, - anon_sym_EQ, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2862), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2864), 1, - anon_sym_AMP_AMP, ACTIONS(2866), 1, - anon_sym_PIPE, - ACTIONS(2868), 1, - anon_sym_CARET, - ACTIONS(2870), 1, anon_sym_AMP, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_QMARK, - STATE(1071), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2858), 2, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2854), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2872), 2, + ACTIONS(2868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2874), 2, + ACTIONS(2870), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2876), 2, + ACTIONS(2872), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2878), 2, + ACTIONS(2874), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2860), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2757), 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, - [33243] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2880), 1, - anon_sym_LBRACK, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2860), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2595), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2690), 3, 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(2597), 22, + ACTIONS(2856), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2692), 19, 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, @@ -107564,27 +112060,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [33305] = 6, + [33159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(2908), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1017), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1982), 4, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2906), 35, + 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, - ACTIONS(1980), 6, + 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, + [33209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2912), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1967), 30, + ACTIONS(2910), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107596,6 +112130,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107614,72 +112152,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [33361] = 17, + [33259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, - anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2916), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2866), 1, - anon_sym_PIPE, - ACTIONS(2868), 1, - anon_sym_CARET, - ACTIONS(2870), 1, - anon_sym_AMP, - ACTIONS(2880), 1, - anon_sym_LBRACK, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2858), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2874), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2876), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2878), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2860), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2597), 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2914), 35, + 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, + 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, - [33439] = 3, + [33309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 7, + ACTIONS(2920), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107687,7 +112212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2891), 35, + ACTIONS(2918), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107723,10 +112248,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33489] = 3, + [33359] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2924), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2922), 30, + 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_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, + [33413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 7, + ACTIONS(2930), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107734,7 +112308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2895), 35, + ACTIONS(2928), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107770,53 +112344,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33539] = 14, + [33463] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2934), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2932), 30, + 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_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, + [33517] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2817), 1, + anon_sym_EQ, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2942), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2944), 1, + anon_sym_AMP_AMP, + ACTIONS(2946), 1, + anon_sym_PIPE, + ACTIONS(2948), 1, + anon_sym_CARET, + ACTIONS(2950), 1, + anon_sym_AMP, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + ACTIONS(2962), 1, + anon_sym_QMARK, + STATE(1095), 1, sym_argument_list, - ACTIONS(2858), 2, + ACTIONS(2938), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2872), 2, + ACTIONS(2952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2874), 2, + ACTIONS(2954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2876), 2, + ACTIONS(2956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2878), 2, + ACTIONS(2958), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2860), 3, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2597), 18, + ACTIONS(2815), 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, @@ -107828,96 +112457,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33611] = 13, + [33601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2970), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2880), 1, - anon_sym_LBRACK, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2858), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2874), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2876), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2878), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2860), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2597), 20, - 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, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2968), 35, + 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, + 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, - [33681] = 11, + [33651] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2858), 2, + ACTIONS(2938), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2878), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2860), 3, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 6, + ACTIONS(2690), 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(2597), 22, + ACTIONS(2692), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -107940,22 +112558,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33747] = 8, + [33715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2668), 13, + ACTIONS(2698), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107969,7 +112587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2670), 22, + ACTIONS(2700), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -107992,29 +112610,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33807] = 10, + [33775] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2858), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2860), 3, + ACTIONS(2714), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -108023,7 +112639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2597), 22, + ACTIONS(2716), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -108046,10 +112662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33871] = 3, + [33835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 7, + ACTIONS(2974), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108057,7 +112673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2899), 35, + ACTIONS(2972), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108093,56 +112709,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33921] = 18, + [33885] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, - anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2864), 1, - anon_sym_AMP_AMP, - ACTIONS(2866), 1, - anon_sym_PIPE, - ACTIONS(2868), 1, - anon_sym_CARET, - ACTIONS(2870), 1, - anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2858), 2, + ACTIONS(2938), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2874), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2876), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2878), 2, + ACTIONS(2958), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2860), 3, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 17, + ACTIONS(2690), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2692), 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, @@ -108155,85 +112764,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34001] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1027), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2901), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2899), 30, - 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_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, - [34055] = 8, + [33951] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2938), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2956), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2958), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2591), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2690), 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(2593), 22, + ACTIONS(2692), 20, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -108242,8 +112809,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, @@ -108256,46 +112821,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34115] = 8, + [34021] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2938), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2956), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2958), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2579), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2690), 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(2581), 22, + ACTIONS(2692), 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, @@ -108308,108 +112879,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34175] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 1, - anon_sym_EQ, - ACTIONS(1988), 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(1975), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1969), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [34229] = 20, + [34093] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2862), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2864), 1, - anon_sym_AMP_AMP, - ACTIONS(2866), 1, - anon_sym_PIPE, - ACTIONS(2868), 1, - anon_sym_CARET, - ACTIONS(2870), 1, + ACTIONS(2950), 1, anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_QMARK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2858), 2, + ACTIONS(2938), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2872), 2, + ACTIONS(2952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2874), 2, + ACTIONS(2954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2876), 2, + ACTIONS(2956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2878), 2, + ACTIONS(2958), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2860), 3, + ACTIONS(2690), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2753), 15, + ACTIONS(2692), 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, @@ -108421,48 +112938,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34313] = 16, + [34167] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2868), 1, + ACTIONS(2948), 1, anon_sym_CARET, - ACTIONS(2870), 1, + ACTIONS(2950), 1, anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2595), 2, + ACTIONS(2690), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2858), 2, + ACTIONS(2938), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2872), 2, + ACTIONS(2952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2874), 2, + ACTIONS(2954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2876), 2, + ACTIONS(2956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2878), 2, + ACTIONS(2958), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2860), 3, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 18, + ACTIONS(2692), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -108481,61 +112998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [34389] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2914), 1, - sym_primitive_type, - STATE(1036), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2912), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2908), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2910), 29, - 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_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, - [34447] = 3, + [34243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 7, + ACTIONS(2978), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108543,7 +113009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2916), 35, + ACTIONS(2976), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108579,10 +113045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34497] = 3, + [34293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 7, + ACTIONS(2982), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108590,7 +113056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2920), 35, + ACTIONS(2980), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108626,10 +113092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34547] = 3, + [34343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 7, + ACTIONS(2986), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108637,7 +113103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2924), 35, + ACTIONS(2984), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108673,10 +113139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34597] = 3, + [34393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 7, + ACTIONS(2990), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108684,7 +113150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2928), 35, + ACTIONS(2988), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108720,10 +113186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34647] = 3, + [34443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 7, + ACTIONS(2994), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108731,7 +113197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2932), 35, + ACTIONS(2992), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108767,57 +113233,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34697] = 3, + [34493] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2690), 1, + anon_sym_EQ, + ACTIONS(2936), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2936), 35, - 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, + ACTIONS(2946), 1, + anon_sym_PIPE, + ACTIONS(2948), 1, + anon_sym_CARET, + ACTIONS(2950), 1, + anon_sym_AMP, + ACTIONS(2960), 1, 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, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2938), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2956), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2958), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2692), 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, - [34747] = 3, + [34571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 7, + ACTIONS(2998), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108825,7 +113305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2940), 35, + ACTIONS(2996), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108861,106 +113341,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34797] = 5, + [34621] = 18, ACTIONS(3), 1, sym_comment, - STATE(1025), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2948), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2946), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2690), 1, + anon_sym_EQ, + ACTIONS(2936), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2944), 30, - 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, + ACTIONS(2944), 1, + anon_sym_AMP_AMP, + ACTIONS(2946), 1, + anon_sym_PIPE, + ACTIONS(2948), 1, + anon_sym_CARET, + ACTIONS(2950), 1, + anon_sym_AMP, + ACTIONS(2960), 1, 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, - [34851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2938), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2956), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2958), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 3, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2950), 35, - 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, - 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_SLASH, + anon_sym_PERCENT, + ACTIONS(2692), 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, + 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, - [34901] = 3, + [34701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 7, + ACTIONS(3002), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108968,7 +113414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2954), 35, + ACTIONS(3000), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109004,25 +113450,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34951] = 5, + [34751] = 7, ACTIONS(3), 1, sym_comment, - STATE(962), 1, + ACTIONS(3004), 1, + sym_identifier, + ACTIONS(3013), 1, + sym_primitive_type, + STATE(1084), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2962), 4, + ACTIONS(3011), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2960), 7, + ACTIONS(3007), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2958), 30, + ACTIONS(3009), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109052,28 +113501,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [35005] = 8, + [34809] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2690), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -109082,7 +113531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2597), 22, + ACTIONS(2692), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -109105,10 +113554,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [35065] = 3, + [34871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3015), 35, + 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, + 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, + [34921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 7, + ACTIONS(3021), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109116,7 +113612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2964), 35, + ACTIONS(3019), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109152,10 +113648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35115] = 3, + [34971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 7, + ACTIONS(3025), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109163,7 +113659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2968), 35, + ACTIONS(3023), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109199,111 +113695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35165] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2880), 1, - anon_sym_LBRACK, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2656), 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(2658), 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, - 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, - [35225] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(962), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2962), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2974), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2972), 30, - 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_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, - [35279] = 3, + [35021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 7, + ACTIONS(3029), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109311,7 +113706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2976), 35, + ACTIONS(3027), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109347,10 +113742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35329] = 3, + [35071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 7, + ACTIONS(3033), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109358,7 +113753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2980), 35, + ACTIONS(3031), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109394,17 +113789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35379] = 5, + [35121] = 3, ACTIONS(3), 1, sym_comment, - STATE(962), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2962), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2986), 7, + ACTIONS(3037), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109412,7 +113800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2984), 30, + ACTIONS(3035), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109424,6 +113812,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -109442,11 +113834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [35433] = 3, + [35171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 7, + ACTIONS(3041), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109454,7 +113847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2988), 35, + ACTIONS(3039), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109490,17 +113883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35483] = 5, + [35221] = 5, ACTIONS(3), 1, sym_comment, - STATE(962), 1, + STATE(1079), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2962), 4, + ACTIONS(3043), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2994), 7, + ACTIONS(2978), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109508,7 +113901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2992), 30, + ACTIONS(2976), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109539,10 +113932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [35537] = 3, + [35275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 7, + ACTIONS(3047), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109550,7 +113943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2996), 35, + ACTIONS(3045), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109586,18 +113979,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35587] = 3, + [35325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 7, + ACTIONS(3049), 1, + anon_sym_LPAREN2, + STATE(1080), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2035), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2033), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3000), 35, + ACTIONS(2017), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109609,10 +114010,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -109631,12 +114028,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [35637] = 3, + [35381] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2960), 1, + anon_sym_LBRACK, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 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(2696), 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, + 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, + [35441] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2960), 1, + anon_sym_LBRACK, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2702), 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(2704), 24, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_identifier, + [35499] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2809), 1, + anon_sym_EQ, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2942), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2944), 1, + anon_sym_AMP_AMP, + ACTIONS(2946), 1, + anon_sym_PIPE, + ACTIONS(2948), 1, + anon_sym_CARET, + ACTIONS(2950), 1, + anon_sym_AMP, + ACTIONS(2960), 1, + anon_sym_LBRACK, + ACTIONS(2962), 1, + anon_sym_QMARK, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2938), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2952), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2956), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2958), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2807), 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, + [35583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 7, + ACTIONS(3054), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109644,7 +114207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3004), 35, + ACTIONS(3052), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109680,10 +114243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35687] = 3, + [35633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 7, + ACTIONS(3058), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109691,7 +114254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3008), 35, + ACTIONS(3056), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109727,59 +114290,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35737] = 20, + [35683] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 1, - anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2862), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2864), 1, - anon_sym_AMP_AMP, - ACTIONS(2866), 1, - anon_sym_PIPE, - ACTIONS(2868), 1, - anon_sym_CARET, - ACTIONS(2870), 1, - anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(2882), 1, - anon_sym_QMARK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2858), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2874), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2876), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2878), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2860), 3, + ACTIONS(2637), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2725), 15, + 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(2639), 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, anon_sym_PERCENT_EQ, @@ -109791,54 +114342,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [35821] = 15, + [35743] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2787), 1, + anon_sym_EQ, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2870), 1, + ACTIONS(2942), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2944), 1, + anon_sym_AMP_AMP, + ACTIONS(2946), 1, + anon_sym_PIPE, + ACTIONS(2948), 1, + anon_sym_CARET, + ACTIONS(2950), 1, anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1071), 1, + ACTIONS(2962), 1, + anon_sym_QMARK, + STATE(1095), 1, sym_argument_list, - ACTIONS(2858), 2, + ACTIONS(2938), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2872), 2, + ACTIONS(2952), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2874), 2, + ACTIONS(2954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2876), 2, + ACTIONS(2956), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2878), 2, + ACTIONS(2958), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2860), 3, + ACTIONS(2940), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2597), 18, + ACTIONS(2785), 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, @@ -109850,10 +114406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [35895] = 3, + [35827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 7, + ACTIONS(3062), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109861,7 +114417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3012), 35, + ACTIONS(3060), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109897,10 +114453,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35945] = 3, + [35877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 7, + STATE(1001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3066), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109908,7 +114471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3016), 35, + ACTIONS(3064), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109920,10 +114483,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -109942,28 +114501,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [35995] = 6, + [35931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, - sym_primitive_type, - STATE(962), 1, + STATE(1001), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2817), 4, + ACTIONS(2926), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3023), 6, + ACTIONS(3070), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3020), 30, + anon_sym_COLON, + ACTIONS(3068), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109994,10 +114551,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [36051] = 3, + [35985] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2960), 1, + anon_sym_LBRACK, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2690), 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(2692), 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, + 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, + [36045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 7, + ACTIONS(3074), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110005,7 +114614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3026), 35, + ACTIONS(3072), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110041,17 +114650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [36101] = 5, + [36095] = 3, ACTIONS(3), 1, sym_comment, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3034), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3032), 7, + ACTIONS(3078), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110059,7 +114661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3030), 30, + ACTIONS(3076), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110071,6 +114673,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -110089,70 +114695,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [36155] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2880), 1, - anon_sym_LBRACK, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2660), 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(2662), 24, - 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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_identifier, - [36213] = 3, + [36145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 7, + ACTIONS(2823), 1, + sym_primitive_type, + STATE(1001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2827), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3083), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3036), 35, + ACTIONS(3080), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110164,10 +114728,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -110186,12 +114746,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [36263] = 3, + [36201] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2037), 1, + anon_sym_EQ, + ACTIONS(2041), 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(2025), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2019), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [36255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 7, + STATE(1038), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3090), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3088), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110199,7 +114814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3040), 35, + ACTIONS(3086), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110211,10 +114826,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -110233,12 +114844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [36313] = 3, + [36309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 7, + STATE(1036), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3096), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3094), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110246,7 +114863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3044), 35, + ACTIONS(3092), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110258,10 +114875,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -110280,12 +114893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, [36363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 13, + ACTIONS(2581), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110299,7 +114911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2452), 28, + ACTIONS(2583), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110331,9 +114943,9 @@ static const uint16_t ts_small_parse_table[] = { [36412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(3100), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3048), 40, + ACTIONS(3098), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110377,55 +114989,9 @@ static const uint16_t ts_small_parse_table[] = { [36461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3052), 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, - [36510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3058), 1, + ACTIONS(1460), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3056), 40, + ACTIONS(1458), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110466,58 +115032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2523), 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(2525), 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, - [36608] = 3, + [36510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(1464), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3060), 40, + ACTIONS(1462), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110558,12 +115078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36657] = 3, + [36559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(1522), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3064), 40, + ACTIONS(1520), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110604,58 +115124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2515), 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(2517), 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, - [36755] = 3, + [36608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, + ACTIONS(1498), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3068), 40, + ACTIONS(1496), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110696,10 +115170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36804] = 3, + [36657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 13, + ACTIONS(2625), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110713,7 +115187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2476), 28, + ACTIONS(2627), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110742,10 +115216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [36853] = 3, + [36706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 13, + ACTIONS(2609), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110759,7 +115233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2533), 28, + ACTIONS(2611), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110788,10 +115262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [36902] = 3, + [36755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 13, + ACTIONS(2573), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110805,7 +115279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2448), 28, + ACTIONS(2575), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110834,10 +115308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [36951] = 3, + [36804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 13, + ACTIONS(2520), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110851,7 +115325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2569), 28, + ACTIONS(2522), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110880,10 +115354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37000] = 3, + [36853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 13, + ACTIONS(2524), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110897,7 +115371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2464), 28, + ACTIONS(2526), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110926,10 +115400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37049] = 3, + [36902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 13, + ACTIONS(2565), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110943,7 +115417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2545), 28, + ACTIONS(2567), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110972,58 +115446,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37098] = 3, + [36951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2539), 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(2541), 28, - anon_sym_COMMA, + ACTIONS(3104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3102), 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, - 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, + 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, - [37147] = 3, + [37000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3108), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3072), 40, + ACTIONS(3106), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -111064,10 +115538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37196] = 3, + [37049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 13, + ACTIONS(2551), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111081,7 +115555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2529), 28, + ACTIONS(2553), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111110,12 +115584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37245] = 3, + [37098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 1, + ACTIONS(3112), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3076), 40, + ACTIONS(3110), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -111156,56 +115630,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37294] = 3, + [37147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3080), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2589), 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(2591), 28, + anon_sym_COMMA, 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, + 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, - [37343] = 3, + [37196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(2508), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111219,7 +115693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2444), 28, + ACTIONS(2510), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111248,10 +115722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37392] = 3, + [37245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 13, + ACTIONS(2512), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111265,7 +115739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2549), 28, + ACTIONS(2514), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111294,10 +115768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37441] = 3, + [37294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 13, + ACTIONS(2605), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111311,7 +115785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2460), 28, + ACTIONS(2607), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111340,12 +115814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37490] = 3, + [37343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, + ACTIONS(3116), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1514), 40, + ACTIONS(3114), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -111386,12 +115860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37539] = 3, + [37392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3120), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3084), 40, + ACTIONS(3118), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -111432,12 +115906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37588] = 3, + [37441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, + ACTIONS(3124), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1478), 40, + ACTIONS(3122), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -111478,12 +115952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37637] = 3, + [37490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(1452), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3088), 40, + ACTIONS(1450), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -111524,12 +115998,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37686] = 3, + [37539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2621), 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(2623), 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, + [37588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 1, + ACTIONS(1546), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1470), 40, + ACTIONS(1544), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -111570,10 +116090,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37735] = 3, + [37637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2555), 13, + ACTIONS(3128), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3126), 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, + [37686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111587,7 +116153,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2557), 28, + ACTIONS(2587), 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, + [37735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 1, + anon_sym_EQ, + ACTIONS(2741), 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(2025), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2019), 18, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 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(2563), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111616,10 +116276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37784] = 3, + [37837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 13, + ACTIONS(2516), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111633,7 +116293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2561), 28, + ACTIONS(2518), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111662,10 +116322,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37833] = 3, + [37886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 13, + ACTIONS(3132), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3130), 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, + [37935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2569), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111679,7 +116385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2573), 28, + ACTIONS(2571), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111708,10 +116414,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37882] = 3, + [37984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 13, + ACTIONS(3136), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3134), 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, + [38033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2500), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111725,7 +116477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2484), 28, + ACTIONS(2502), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111754,10 +116506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37931] = 3, + [38082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 13, + ACTIONS(2528), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111771,7 +116523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2565), 28, + ACTIONS(2530), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111800,10 +116552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [37980] = 3, + [38131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 13, + ACTIONS(2597), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111817,7 +116569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2480), 28, + ACTIONS(2599), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111846,10 +116598,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38029] = 3, + [38180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 13, + ACTIONS(3140), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3138), 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, + [38229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111863,7 +116661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2521), 28, + ACTIONS(2579), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111892,10 +116690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38078] = 3, + [38278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 13, + ACTIONS(2601), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111909,7 +116707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2472), 28, + ACTIONS(2603), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111938,10 +116736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38127] = 3, + [38327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 13, + ACTIONS(2496), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -111955,7 +116753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2577), 28, + ACTIONS(2498), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111984,10 +116782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38176] = 3, + [38376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 13, + ACTIONS(2617), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -112001,7 +116799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2513), 28, + ACTIONS(2619), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112030,10 +116828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38225] = 3, + [38425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 13, + ACTIONS(2504), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -112047,7 +116845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2468), 28, + ACTIONS(2506), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112076,102 +116874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38274] = 3, + [38474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3092), 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, - [38323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1454), 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, - [38372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2551), 13, + ACTIONS(2492), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -112185,7 +116891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2553), 28, + ACTIONS(2494), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112214,12 +116920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38421] = 3, + [38523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, + ACTIONS(3144), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1486), 40, + ACTIONS(3142), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -112260,56 +116966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38470] = 3, + [38572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1446), 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, - [38519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 13, + ACTIONS(2613), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -112323,7 +116983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2456), 28, + ACTIONS(2615), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112352,54 +117012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [38568] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_EQ, - ACTIONS(2684), 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(1975), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1969), 18, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, [38621] = 10, ACTIONS(3), 1, sym_comment, @@ -112409,12 +117021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3096), 1, + ACTIONS(3146), 1, anon_sym_SEMI, - ACTIONS(2771), 2, + ACTIONS(2892), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(961), 7, + STATE(1012), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -112422,7 +117034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2769), 8, + ACTIONS(2890), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -112455,24 +117067,24 @@ static const uint16_t ts_small_parse_table[] = { [38683] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 1, + ACTIONS(3152), 1, anon_sym___attribute__, - ACTIONS(3105), 1, + ACTIONS(3155), 1, anon_sym_LBRACE, - ACTIONS(3107), 1, + ACTIONS(3157), 1, anon_sym_COLON, - STATE(1040), 1, + STATE(1066), 1, sym_attribute_specifier, - STATE(1163), 1, + STATE(1223), 1, sym_enumerator_list, - ACTIONS(3100), 6, + ACTIONS(3150), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3098), 29, + ACTIONS(3148), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -112511,12 +117123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3109), 1, + ACTIONS(3159), 1, anon_sym_SEMI, - ACTIONS(2771), 2, + ACTIONS(2892), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(961), 7, + STATE(1012), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -112524,7 +117136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2769), 8, + ACTIONS(2890), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -112563,12 +117175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3111), 1, + ACTIONS(3161), 1, anon_sym_SEMI, - ACTIONS(2771), 2, + ACTIONS(2892), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(961), 7, + STATE(1012), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -112576,7 +117188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2769), 8, + ACTIONS(2890), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -112615,64 +117227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3113), 1, - anon_sym_SEMI, - ACTIONS(2771), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(961), 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(2769), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - 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, - 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, - [38927] = 10, - 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(3115), 1, + ACTIONS(3163), 1, anon_sym_SEMI, - ACTIONS(2771), 2, + ACTIONS(2892), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(961), 7, + STATE(1012), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -112680,7 +117240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2769), 8, + ACTIONS(2890), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -112692,46 +117252,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [38989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1486), 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_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, @@ -112741,6 +117270,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [38927] = 10, + 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(3165), 1, + anon_sym_SEMI, + ACTIONS(2892), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1012), 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(2890), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -112749,83 +117311,8 @@ 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, - [39036] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2595), 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(2597), 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, - [39095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3074), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3072), 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__, + 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, @@ -112835,96 +117322,30 @@ 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_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39142] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2595), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2597), 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, - [39207] = 11, + [38989] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3121), 3, + ACTIONS(3169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 8, + ACTIONS(2690), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -112933,7 +117354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2597), 19, + ACTIONS(2692), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112953,23 +117374,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39270] = 9, + [39052] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2668), 13, + ACTIONS(2637), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -112983,7 +117404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2670), 19, + ACTIONS(2639), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113003,58 +117424,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39329] = 21, + [39111] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2727), 1, + ACTIONS(2690), 1, anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3173), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3175), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3177), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3179), 1, anon_sym_AMP, - ACTIONS(3141), 1, - anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3135), 2, + ACTIONS(3181), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3183), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3185), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3121), 3, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2725), 12, + ACTIONS(2692), 14, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -113065,58 +117484,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39412] = 21, + [39190] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2755), 1, + ACTIONS(2690), 1, anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3175), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3177), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3179), 1, anon_sym_AMP, - ACTIONS(3141), 1, - anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3135), 2, + ACTIONS(3181), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3183), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3185), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3121), 3, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2753), 12, + ACTIONS(2692), 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, @@ -113127,12 +117543,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39495] = 3, + [39267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3112), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3110), 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, + 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, + [39314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1470), 38, + ACTIONS(3102), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113171,27 +117631,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39542] = 6, + [39361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 2, + ACTIONS(3189), 2, anon_sym___attribute__, sym_identifier, - ACTIONS(3150), 2, + ACTIONS(3196), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3153), 3, + ACTIONS(3199), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - ACTIONS(3146), 4, + ACTIONS(3192), 4, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(3148), 28, + ACTIONS(3194), 28, + 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, + [39414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3124), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3122), 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, @@ -113218,12 +117721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [39595] = 3, + sym_identifier, + [39461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(3100), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3048), 38, + ACTIONS(3098), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113262,12 +117766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39642] = 3, + [39508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(3120), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3092), 38, + ACTIONS(3118), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113306,12 +117810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39689] = 3, + [39555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 1, + ACTIONS(3128), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3076), 38, + ACTIONS(3126), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113350,12 +117854,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39736] = 3, + [39602] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3177), 1, + anon_sym_CARET, + ACTIONS(3179), 1, + anon_sym_AMP, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2690), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3181), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3183), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3185), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2692), 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, + [39677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3132), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3080), 38, + ACTIONS(3130), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113394,12 +117956,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39783] = 3, + [39724] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3179), 1, + anon_sym_AMP, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3181), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3183), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3185), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2690), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(3169), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2692), 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, + [39797] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(3205), 1, + anon_sym___attribute__, + STATE(1067), 1, + sym_attribute_specifier, + STATE(1192), 1, + sym_enumerator_list, + ACTIONS(3203), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3201), 29, + anon_sym___extension__, + anon_sym_extern, + 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_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, + [39852] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3181), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3183), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3185), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2692), 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, + [39923] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3183), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3185), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2692), 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, + 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, + [39992] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2692), 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, + [40057] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2787), 1, + anon_sym_EQ, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3173), 1, + anon_sym_AMP_AMP, + ACTIONS(3175), 1, + anon_sym_PIPE, + ACTIONS(3177), 1, + anon_sym_CARET, + ACTIONS(3179), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3210), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3181), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3183), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3185), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2785), 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, + [40140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, + ACTIONS(3116), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3052), 38, + ACTIONS(3114), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113438,12 +118331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39830] = 3, + [40187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3140), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3084), 38, + ACTIONS(3138), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113482,12 +118375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39877] = 3, + [40234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3108), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3088), 38, + ACTIONS(3106), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113526,107 +118419,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39924] = 6, + [40281] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 2, - anon_sym___attribute__, - sym_identifier, - ACTIONS(3162), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3165), 3, + ACTIONS(2643), 1, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3158), 4, - anon_sym_COMMA, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(3160), 28, - 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, - [39977] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 1, - anon_sym_LBRACE, ACTIONS(3171), 1, - anon_sym___attribute__, - STATE(1029), 1, - sym_attribute_specifier, - STATE(1166), 1, - sym_enumerator_list, - ACTIONS(3169), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DOT, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3169), 3, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3167), 29, - anon_sym___extension__, - anon_sym_extern, - 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_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, - [40032] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2690), 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(2692), 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, + [40342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 1, + ACTIONS(3144), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1446), 38, + ACTIONS(3142), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113665,37 +118514,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40079] = 3, + [40389] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3060), 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(2071), 1, + anon_sym_LPAREN2, + ACTIONS(2073), 1, + anon_sym_STAR, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3220), 1, + anon_sym_LBRACK, + STATE(1409), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1631), 1, + sym__declarator, + STATE(1791), 1, + sym__abstract_declarator, + STATE(1830), 1, + sym_parameter_list, + STATE(2301), 1, + sym_ms_based_modifier, + ACTIONS(3214), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3218), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1300), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1315), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3216), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1829), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1690), 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, @@ -113704,28 +118574,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, - [40126] = 3, + [40468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, + ACTIONS(3222), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(3229), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3068), 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(3232), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3225), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3227), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -113752,50 +118621,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [40173] = 14, + [40521] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2690), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3121), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 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(2597), 17, + ACTIONS(2692), 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, @@ -113808,12 +118671,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40242] = 3, + [40580] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2817), 1, + anon_sym_EQ, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3173), 1, + anon_sym_AMP_AMP, + ACTIONS(3175), 1, + anon_sym_PIPE, + ACTIONS(3177), 1, + anon_sym_CARET, + ACTIONS(3179), 1, + anon_sym_AMP, + ACTIONS(3208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3210), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3181), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3183), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3185), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2815), 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, + [40663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, + ACTIONS(1522), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1454), 38, + ACTIONS(1520), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -113852,54 +118777,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40289] = 19, + [40710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2595), 1, - anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - ACTIONS(3127), 1, - anon_sym_AMP_AMP, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2702), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3123), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3135), 2, + anon_sym_EQ, + ACTIONS(2704), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2597), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -113912,50 +118824,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40368] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [40767] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(2694), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3121), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2595), 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(2597), 15, + ACTIONS(2696), 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, @@ -113968,51 +118876,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40439] = 19, + [40826] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2023), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1595), 1, + STATE(1642), 1, sym__declarator, - STATE(1743), 1, + STATE(1784), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - ACTIONS(3176), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1255), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1263), 2, + ACTIONS(3234), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1164), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3178), 3, + STATE(1294), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -114028,58 +118936,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40518] = 19, + [40905] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2023), 1, + ACTIONS(3171), 1, + anon_sym_DOT, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2714), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, - sym_identifier, - ACTIONS(3182), 1, + 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(2716), 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, + [40964] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, anon_sym_LBRACK, - STATE(1368), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1588), 1, - sym__declarator, - STATE(1771), 1, - sym__abstract_declarator, - STATE(1788), 1, - sym_parameter_list, - STATE(2409), 1, - sym_ms_based_modifier, - ACTIONS(3180), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3184), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1121), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1245), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1786), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2698), 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(2700), 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, + [41023] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + 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, @@ -114088,12 +119075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40597] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [41070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(1460), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3064), 38, + ACTIONS(1458), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114132,12 +119124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40644] = 3, + [41117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, + ACTIONS(1546), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3056), 38, + ACTIONS(1544), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114176,12 +119168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40691] = 3, + [41164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, + ACTIONS(1452), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1478), 38, + ACTIONS(1450), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114220,12 +119212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40738] = 3, + [41211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, + ACTIONS(3136), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1514), 38, + ACTIONS(3134), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114264,106 +119256,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40785] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2579), 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(2581), 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, - [40844] = 21, + [41258] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2759), 1, + ACTIONS(2809), 1, anon_sym_EQ, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - ACTIONS(3125), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3127), 1, + ACTIONS(3173), 1, anon_sym_AMP_AMP, - ACTIONS(3129), 1, + ACTIONS(3175), 1, anon_sym_PIPE, - ACTIONS(3131), 1, + ACTIONS(3177), 1, anon_sym_CARET, - ACTIONS(3133), 1, + ACTIONS(3179), 1, anon_sym_AMP, - ACTIONS(3141), 1, + ACTIONS(3208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3210), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, + ACTIONS(3167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3135), 2, + ACTIONS(3181), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3137), 2, + ACTIONS(3183), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3139), 2, + ACTIONS(3185), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3121), 3, + ACTIONS(3187), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3169), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2757), 12, + ACTIONS(2807), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -114376,147 +119318,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40927] = 9, + [41341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2591), 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(2593), 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, - [40986] = 9, + ACTIONS(1498), 1, + anon_sym_LBRACK_LBRACK, + 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_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, + [41388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2656), 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(2658), 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, - [41045] = 10, + ACTIONS(2490), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2488), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + 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, + [41434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2595), 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, + ACTIONS(2486), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2484), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + 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, + [41480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2811), 1, anon_sym_EQ, - ACTIONS(2597), 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, + ACTIONS(2813), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -114527,20 +119464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [41106] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - STATE(870), 1, - sym_argument_list, - ACTIONS(2660), 13, + ACTIONS(2025), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -114553,220 +119477,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2662), 21, + anon_sym_DOT, + ACTIONS(2019), 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_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, - [41163] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3133), 1, - anon_sym_AMP, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2595), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(3121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2597), 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, - [41236] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2595), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2597), 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, - [41311] = 18, + anon_sym_DASH_GT, + [41530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2595), 1, - anon_sym_EQ, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3129), 1, - anon_sym_PIPE, - ACTIONS(3131), 1, - anon_sym_CARET, - ACTIONS(3133), 1, - anon_sym_AMP, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3123), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3135), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3139), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3121), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2597), 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, - [41388] = 3, + ACTIONS(3144), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3142), 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, + [41575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 2, + ACTIONS(3120), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2434), 36, + anon_sym_RBRACE, + ACTIONS(3118), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -114793,23 +119577,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41434] = 3, + [41620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 2, + ACTIONS(3124), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2438), 36, + anon_sym_RBRACE, + ACTIONS(3122), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -114836,57 +119619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2761), 1, - anon_sym_EQ, - ACTIONS(2763), 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(1975), 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(1969), 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, - [41530] = 3, + [41665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, + ACTIONS(3116), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3068), 36, + ACTIONS(3114), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -114923,15 +119661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41575] = 3, + [41710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 1, + ACTIONS(3108), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3076), 36, + anon_sym_RBRACE, + ACTIONS(3106), 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, @@ -114965,13 +119703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41620] = 3, + [41755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 2, + ACTIONS(3104), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1478), 35, + ACTIONS(3102), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -115007,13 +119745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41665] = 3, + [41800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 2, + ACTIONS(3116), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1470), 35, + ACTIONS(3114), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -115049,15 +119787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41710] = 3, + [41845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 1, + ACTIONS(3128), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1470), 36, + anon_sym_RBRACE, + ACTIONS(3126), 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, @@ -115091,26 +119829,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41755] = 3, + [41890] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, + ACTIONS(3240), 1, + anon_sym___attribute__, + STATE(1035), 1, + sym_attribute_specifier, + ACTIONS(3238), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3056), 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(3236), 29, 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___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -115128,18 +119872,14 @@ 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, - [41800] = 3, + [41939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 2, + ACTIONS(1498), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3088), 35, + ACTIONS(1496), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -115175,15 +119915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41845] = 3, + [41984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 2, + ACTIONS(3108), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3084), 35, + ACTIONS(3106), 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, @@ -115217,15 +119957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41890] = 3, + [42029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 2, + ACTIONS(1546), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3056), 35, + ACTIONS(1544), 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, @@ -115259,12 +119999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41935] = 3, + [42074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(1460), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3060), 36, + ACTIONS(1458), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -115301,15 +120041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [41980] = 3, + [42119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(3112), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3064), 36, + anon_sym_RBRACE, + ACTIONS(3110), 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, @@ -115343,15 +120083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42025] = 3, + [42164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 2, + ACTIONS(3124), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3060), 35, + ACTIONS(3122), 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, @@ -115385,15 +120125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42070] = 3, + [42209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 2, + ACTIONS(3104), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3080), 35, + ACTIONS(3102), 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, @@ -115427,20 +120167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42115] = 5, + [42254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(3100), 2, anon_sym_LBRACK_LBRACK, - STATE(826), 1, - sym_string_literal, - ACTIONS(3186), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2765), 30, + anon_sym_RBRACE, + ACTIONS(3098), 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__, @@ -115471,56 +120209,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3192), 1, - anon_sym___attribute__, - STATE(1026), 1, - sym_attribute_specifier, - ACTIONS(3190), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3188), 29, - anon_sym___extension__, - anon_sym_extern, - 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_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, - [42213] = 3, + [42299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 1, + ACTIONS(3100), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1446), 36, + ACTIONS(3098), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -115557,12 +120251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42258] = 3, + [42344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, + ACTIONS(3128), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1486), 36, + ACTIONS(3126), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -115599,18 +120293,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42303] = 3, + [42389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1454), 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(872), 1, + sym_string_literal, + ACTIONS(3243), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2803), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -115641,20 +120337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42348] = 5, + [42438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_string_literal, - ACTIONS(3186), 5, + ACTIONS(3243), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2765), 30, + ACTIONS(2803), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -115685,12 +120381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42397] = 3, + [42487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3120), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3088), 36, + ACTIONS(3118), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -115727,12 +120423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42442] = 3, + [42532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3136), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3072), 36, + ACTIONS(3134), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -115769,12 +120465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42487] = 3, + [42577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 1, + ACTIONS(1464), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1478), 36, + ACTIONS(1462), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -115811,18 +120507,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42532] = 3, + [42622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 2, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1514), 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(873), 1, + sym_string_literal, + ACTIONS(3243), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2803), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -115853,13 +120551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42577] = 3, + [42671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 2, + ACTIONS(1464), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3092), 35, + ACTIONS(1462), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -115895,59 +120593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42622] = 5, + [42716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, - anon_sym___attribute__, - STATE(1028), 1, - sym_attribute_specifier, - ACTIONS(3197), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3195), 29, - anon_sym___extension__, - anon_sym_extern, - 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_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, - [42671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3066), 2, + ACTIONS(3112), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3064), 35, + ACTIONS(3110), 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, @@ -115981,20 +120635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42716] = 5, + [42761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(3132), 2, anon_sym_LBRACK_LBRACK, - STATE(828), 1, - sym_string_literal, - ACTIONS(3186), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2765), 30, + anon_sym_RBRACE, + ACTIONS(3130), 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__, @@ -116025,21 +120677,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42765] = 5, + [42806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(3249), 1, anon_sym___attribute__, - STATE(1035), 1, + STATE(1074), 1, sym_attribute_specifier, - ACTIONS(3204), 6, + ACTIONS(3247), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3202), 29, + ACTIONS(3245), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -116069,18 +120721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42814] = 3, + [42855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 2, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3076), 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(868), 1, + sym_string_literal, + ACTIONS(3243), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2803), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -116111,13 +120765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42859] = 3, + [42904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 2, + ACTIONS(1460), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3072), 35, + ACTIONS(1458), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -116153,56 +120807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42904] = 5, + [42949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(1522), 1, anon_sym_LBRACK_LBRACK, - STATE(823), 1, - sym_string_literal, - ACTIONS(3186), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2765), 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, - [42953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3048), 36, + ACTIONS(1520), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -116239,20 +120849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [42998] = 5, + [42994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(1452), 1, anon_sym_LBRACK_LBRACK, - STATE(822), 1, - sym_string_literal, - ACTIONS(3186), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2765), 30, + ACTIONS(1450), 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__, @@ -116283,12 +120891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43047] = 3, + [43039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, + ACTIONS(1498), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3052), 36, + ACTIONS(1496), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -116325,13 +120933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43092] = 3, + [43084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 2, + ACTIONS(3136), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1454), 35, + ACTIONS(3134), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -116367,13 +120975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43137] = 3, + [43129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 2, + ACTIONS(1522), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1486), 35, + ACTIONS(1520), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -116409,13 +121017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43182] = 3, + [43174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 2, + ACTIONS(3140), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3068), 35, + ACTIONS(3138), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -116451,12 +121059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43227] = 3, + [43219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3144), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3084), 36, + ACTIONS(3142), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -116493,12 +121101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43272] = 3, + [43264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, + ACTIONS(3132), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1514), 36, + ACTIONS(3130), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -116535,26 +121143,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43317] = 3, + [43309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 2, + ACTIONS(3256), 1, + anon_sym___attribute__, + STATE(1044), 1, + sym_attribute_specifier, + ACTIONS(3254), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3052), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3252), 29, 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___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -116572,18 +121186,14 @@ 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, - [43362] = 3, + [43358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 2, + ACTIONS(1452), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3048), 35, + ACTIONS(1450), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -116619,15 +121229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43407] = 3, + [43403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(1546), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3080), 36, + anon_sym_RBRACE, + ACTIONS(1544), 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, @@ -116661,12 +121271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43452] = 3, + [43448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, + ACTIONS(3140), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3092), 36, + ACTIONS(3138), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -116703,18 +121313,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [43497] = 3, + [43493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 2, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1446), 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(874), 1, + sym_string_literal, + ACTIONS(3243), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2803), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -116748,7 +121360,7 @@ static const uint16_t ts_small_parse_table[] = { [43542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 17, + ACTIONS(1315), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -116766,7 +121378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1420), 19, + ACTIONS(1317), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -116789,7 +121401,7 @@ static const uint16_t ts_small_parse_table[] = { [43586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 17, + ACTIONS(1315), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -116807,7 +121419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1416), 19, + ACTIONS(1317), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -116830,7 +121442,7 @@ static const uint16_t ts_small_parse_table[] = { [43630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 17, + ACTIONS(1434), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -116848,7 +121460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1328), 19, + ACTIONS(1436), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -116871,7 +121483,7 @@ static const uint16_t ts_small_parse_table[] = { [43674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 17, + ACTIONS(1430), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -116889,7 +121501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1300), 19, + ACTIONS(1432), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -116912,7 +121524,7 @@ static const uint16_t ts_small_parse_table[] = { [43718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 17, + ACTIONS(1434), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -116930,7 +121542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1300), 19, + ACTIONS(1436), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -116953,7 +121565,7 @@ static const uint16_t ts_small_parse_table[] = { [43762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 17, + ACTIONS(1358), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -116971,7 +121583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1340), 19, + ACTIONS(1360), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -116994,7 +121606,7 @@ static const uint16_t ts_small_parse_table[] = { [43806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 17, + ACTIONS(1426), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -117012,7 +121624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1380), 19, + ACTIONS(1428), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -117035,7 +121647,7 @@ static const uint16_t ts_small_parse_table[] = { [43850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 17, + ACTIONS(1358), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -117053,7 +121665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1420), 19, + ACTIONS(1360), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -117076,7 +121688,7 @@ static const uint16_t ts_small_parse_table[] = { [43894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 17, + ACTIONS(1354), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -117094,7 +121706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1380), 19, + ACTIONS(1356), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -117117,7 +121729,7 @@ static const uint16_t ts_small_parse_table[] = { [43938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 17, + ACTIONS(1354), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -117135,7 +121747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1416), 19, + ACTIONS(1356), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -117158,41 +121770,41 @@ static const uint16_t ts_small_parse_table[] = { [43982] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1641), 1, + STATE(1689), 1, sym__type_declarator, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1194), 2, + STATE(1315), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1369), 2, + STATE(1412), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -117208,51 +121820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44051] = 16, + [44051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3271), 3, anon_sym_LPAREN2, - ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3217), 1, - sym_primitive_type, - STATE(1368), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1648), 1, - sym__type_declarator, - STATE(2160), 1, - sym_ms_based_modifier, - ACTIONS(3180), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1263), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1362), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3215), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(3269), 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, - STATE(1728), 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_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, @@ -117261,44 +121855,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44120] = 16, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44094] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1633), 1, + STATE(1680), 1, sym__type_declarator, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1263), 2, + STATE(1241), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1375), 2, + STATE(1407), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -117314,44 +121913,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44189] = 16, + [44163] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1648), 1, + STATE(1677), 1, sym__type_declarator, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1195), 2, + STATE(1315), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1362), 2, + STATE(1420), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -117367,28 +121966,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44258] = 9, + [44232] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(3049), 1, anon_sym_LPAREN2, - ACTIONS(3219), 1, + ACTIONS(3273), 1, anon_sym_COMMA, - ACTIONS(3222), 1, + ACTIONS(3276), 1, anon_sym_RPAREN, - STATE(1017), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1909), 1, + STATE(1929), 1, aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1980), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1982), 4, + ACTIONS(2035), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1967), 24, + ACTIONS(2017), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -117413,33 +122012,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44313] = 3, + [44287] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 3, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3259), 1, + sym_identifier, + ACTIONS(3261), 1, anon_sym_LPAREN2, + ACTIONS(3263), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3225), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(3267), 1, + sym_primitive_type, + STATE(1409), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1677), 1, + sym__type_declarator, + STATE(2394), 1, + sym_ms_based_modifier, + ACTIONS(3218), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1238), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3216), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3265), 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(1763), 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, @@ -117448,30 +122065,25 @@ 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, [44356] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(3049), 1, anon_sym_LPAREN2, - STATE(1017), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1980), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(3229), 2, + ACTIONS(3279), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1982), 4, + ACTIONS(2035), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1967), 24, + ACTIONS(2017), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -117499,24 +122111,24 @@ static const uint16_t ts_small_parse_table[] = { [44406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(3285), 1, anon_sym_LPAREN2, - ACTIONS(3239), 1, + ACTIONS(3289), 1, anon_sym_LBRACK, - STATE(1017), 1, + STATE(1080), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1980), 2, + ACTIONS(2033), 2, anon_sym_COMMA, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3282), 2, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(1982), 4, + ACTIONS(2035), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1967), 23, + ACTIONS(2017), 23, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -117543,53 +122155,53 @@ static const uint16_t ts_small_parse_table[] = { [44458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3244), 1, + ACTIONS(2809), 1, aux_sym_preproc_elif_token1, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3252), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3254), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3256), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3258), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3260), 1, + ACTIONS(3306), 1, anon_sym_AMP, - ACTIONS(3270), 1, + ACTIONS(3316), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3264), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3266), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3242), 6, + ACTIONS(2807), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -117599,24 +122211,24 @@ static const uint16_t ts_small_parse_table[] = { [44535] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2595), 7, + ACTIONS(2690), 7, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -117624,7 +122236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 16, + ACTIONS(2692), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -117641,52 +122253,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [44590] = 19, + [44590] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2787), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3296), 1, + anon_sym_SLASH, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3316), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3294), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2785), 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, + [44667] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2595), 1, + ACTIONS(2690), 1, aux_sym_preproc_elif_token1, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3254), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3256), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3258), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3260), 1, + ACTIONS(3306), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3264), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3266), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 8, + ACTIONS(2692), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -117695,50 +122363,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK, sym_identifier, - [44663] = 18, + [44740] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2595), 1, + ACTIONS(2690), 1, aux_sym_preproc_elif_token1, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3256), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3258), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3260), 1, + ACTIONS(3306), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3264), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3266), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 9, + ACTIONS(2692), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -117748,49 +122416,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [44734] = 17, + [44811] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3258), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3260), 1, + ACTIONS(3306), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 2, + ACTIONS(2690), 2, aux_sym_preproc_elif_token1, anon_sym_PIPE, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3264), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3266), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 9, + ACTIONS(2692), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -117800,47 +122468,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [44803] = 16, + [44880] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3260), 1, + ACTIONS(3306), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 2, + ACTIONS(2690), 2, aux_sym_preproc_elif_token1, anon_sym_PIPE, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3264), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3266), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 10, + ACTIONS(2692), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -117851,39 +122519,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [44870] = 12, + [44947] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3268), 2, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2595), 5, + ACTIONS(2690), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 14, + ACTIONS(2692), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -117892,217 +122567,146 @@ 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_QMARK, sym_identifier, - [44929] = 21, + [45012] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2755), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3252), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3254), 1, - anon_sym_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE, - ACTIONS(3258), 1, - anon_sym_CARET, - ACTIONS(3260), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3264), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3266), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2753), 6, + ACTIONS(2690), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2692), 12, 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, - [45006] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2759), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3250), 1, - anon_sym_SLASH, - ACTIONS(3252), 1, anon_sym_PIPE_PIPE, - ACTIONS(3254), 1, anon_sym_AMP_AMP, - ACTIONS(3256), 1, - anon_sym_PIPE, - ACTIONS(3258), 1, anon_sym_CARET, - ACTIONS(3260), 1, - anon_sym_AMP, - ACTIONS(3270), 1, - anon_sym_QMARK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3246), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3248), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3266), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2757), 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_QMARK, sym_identifier, - [45083] = 21, + [45075] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2727), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3252), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3254), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3256), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3258), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3260), 1, + ACTIONS(3306), 1, anon_sym_AMP, - ACTIONS(3270), 1, + ACTIONS(3316), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3320), 1, + aux_sym_preproc_elif_token1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3264), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3266), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2725), 6, + ACTIONS(3318), 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, - [45160] = 14, + [45152] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3266), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3268), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2595), 3, + ACTIONS(2690), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2597), 12, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2692), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -118113,48 +122717,40 @@ 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, - [45223] = 15, + [45211] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3262), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3266), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2595), 3, + ACTIONS(2690), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2597), 10, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2692), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -118163,131 +122759,151 @@ 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, - [45288] = 11, + [45268] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3250), 1, + ACTIONS(2817), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3296), 1, anon_sym_SLASH, - STATE(870), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3316), 1, + anon_sym_QMARK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3246), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3248), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2595), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 16, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2815), 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_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, - [45345] = 15, + [45345] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - STATE(870), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 10, + ACTIONS(2692), 8, 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, - [45409] = 10, + [45415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2595), 6, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2690), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 16, + ACTIONS(2692), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -118304,13 +122920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [45463] = 3, + [45471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 2, + ACTIONS(1317), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3286), 30, + ACTIONS(1315), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118341,109 +122957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45503] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 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, - [45559] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2597), 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, - [45627] = 3, + [45511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1356), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1298), 30, + ACTIONS(1354), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118474,60 +122994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45667] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 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, - [45725] = 4, + [45551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(1360), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3296), 1, - anon_sym_typedef, - ACTIONS(2699), 30, + anon_sym_LBRACE, + ACTIONS(1358), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118558,202 +123031,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45767] = 20, + [45591] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2725), 6, + ACTIONS(2815), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [45841] = 18, + [45665] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2690), 4, anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3300), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2692), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(870), 1, + 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, + [45723] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(2690), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 8, + ACTIONS(2692), 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, - [45911] = 20, + [45785] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2757), 6, + ACTIONS(2807), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [45985] = 14, + [45859] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(3326), 1, anon_sym_SLASH, - STATE(870), 1, + ACTIONS(3334), 1, + anon_sym_AMP, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2692), 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, + [45925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1354), 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, + [45965] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 2, + ACTIONS(2690), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3280), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 12, + ACTIONS(2692), 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, + [46029] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2690), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2692), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -118761,18 +123404,23 @@ 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_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [46047] = 3, + [46083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 2, + ACTIONS(2749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1326), 30, + ACTIONS(3348), 1, + anon_sym_typedef, + ACTIONS(2747), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118803,13 +123451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46087] = 3, + [46125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 2, + ACTIONS(1360), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1414), 30, + ACTIONS(1358), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118840,13 +123488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46127] = 3, + [46165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 2, + ACTIONS(2749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1414), 30, + ACTIONS(3350), 1, + anon_sym_typedef, + ACTIONS(2747), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118877,48 +123526,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46167] = 17, + [46207] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2595), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3292), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 9, + ACTIONS(2692), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -118928,14 +123577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [46235] = 4, + [46275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(2749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3304), 1, + ACTIONS(3352), 1, anon_sym_typedef, - ACTIONS(2699), 30, + ACTIONS(2747), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -118966,13 +123615,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46277] = 3, + [46317] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2785), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [46391] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(3326), 1, + anon_sym_SLASH, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2692), 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, + [46459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1298), 30, + ACTIONS(1430), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119003,13 +123757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46317] = 3, + [46499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3306), 2, + ACTIONS(2749), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3160), 30, + ACTIONS(3354), 1, + anon_sym_typedef, + ACTIONS(2747), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119040,13 +123795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46357] = 3, + [46541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 2, + ACTIONS(1436), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3308), 30, + ACTIONS(1434), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119077,14 +123832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46397] = 4, + [46581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(1317), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3312), 1, - anon_sym_typedef, - ACTIONS(2699), 30, + anon_sym_LBRACE, + ACTIONS(1315), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119115,13 +123869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46439] = 3, + [46621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 2, + ACTIONS(1436), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1378), 30, + ACTIONS(1434), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119152,13 +123906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46479] = 3, + [46661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 2, + ACTIONS(3358), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1378), 30, + ACTIONS(3356), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119189,13 +123943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46519] = 3, + [46701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(3362), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1338), 30, + ACTIONS(3360), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119226,63 +123980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46559] = 16, + [46741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2595), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3294), 1, - anon_sym_AMP, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2597), 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, - [46625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 2, + ACTIONS(1428), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1418), 30, + ACTIONS(1426), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119313,14 +124017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46665] = 4, + [46781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(2749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3314), 1, + ACTIONS(3364), 1, anon_sym_typedef, - ACTIONS(2699), 30, + ACTIONS(2747), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119351,14 +124055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46707] = 4, + [46823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(3366), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3316), 1, - anon_sym_typedef, - ACTIONS(2699), 30, + anon_sym_LBRACE, + ACTIONS(3194), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -119389,237 +124092,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [46749] = 20, + [46863] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2690), 2, anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3368), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3370), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3374), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3376), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3378), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2692), 11, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3302), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, - STATE(870), 1, + sym_identifier, + [46924] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2960), 1, + anon_sym_LBRACK, + ACTIONS(3372), 1, + anon_sym_SLASH, + ACTIONS(3380), 1, + anon_sym_AMP, + STATE(1095), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3374), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3376), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3378), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2753), 6, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 9, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [46823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1418), 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, + 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, - [46863] = 17, + [46989] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - ACTIONS(3324), 1, + ACTIONS(3380), 1, + anon_sym_AMP, + ACTIONS(3384), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, + anon_sym_AMP_AMP, + ACTIONS(3388), 1, anon_sym_PIPE, - ACTIONS(3326), 1, + ACTIONS(3390), 1, anon_sym_CARET, - ACTIONS(3328), 1, - anon_sym_AMP, - STATE(1071), 1, + ACTIONS(3392), 1, + anon_sym_QMARK, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, + ACTIONS(3374), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3334), 2, + ACTIONS(3376), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3336), 2, + ACTIONS(3378), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 8, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2815), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + sym_identifier, + [47062] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2960), 1, + anon_sym_LBRACK, + ACTIONS(3372), 1, + anon_sym_SLASH, + ACTIONS(3380), 1, + anon_sym_AMP, + ACTIONS(3384), 1, anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, anon_sym_AMP_AMP, + ACTIONS(3388), 1, + anon_sym_PIPE, + ACTIONS(3390), 1, + anon_sym_CARET, + ACTIONS(3392), 1, anon_sym_QMARK, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3368), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3370), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3374), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3376), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3378), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3318), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_identifier, - [46930] = 15, + [47135] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2023), 1, - anon_sym_STAR, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, - sym_identifier, - ACTIONS(3182), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - STATE(1595), 1, - sym__declarator, - STATE(1743), 1, - sym__abstract_declarator, - STATE(1788), 1, - sym_parameter_list, - STATE(2409), 1, - sym_ms_based_modifier, - ACTIONS(3176), 2, + ACTIONS(3372), 1, + anon_sym_SLASH, + ACTIONS(3380), 1, + anon_sym_AMP, + ACTIONS(3384), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3386), 1, + anon_sym_AMP_AMP, + ACTIONS(3388), 1, + anon_sym_PIPE, + ACTIONS(3390), 1, + anon_sym_CARET, + ACTIONS(3392), 1, + anon_sym_QMARK, + STATE(1095), 1, + sym_argument_list, + ACTIONS(2964), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2966), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3368), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3370), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3374), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3376), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3378), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2807), 5, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1383), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1786), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1647), 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, - [46993] = 16, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [47208] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(3178), 1, - sym_ms_restrict_modifier, - ACTIONS(3182), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1368), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1743), 1, + STATE(1631), 1, + sym__declarator, + STATE(1791), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - ACTIONS(3340), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3342), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1263), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3176), 3, + STATE(2301), 1, + sym_ms_based_modifier, + ACTIONS(3214), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - STATE(1786), 4, + STATE(1421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, + STATE(1690), 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, @@ -119627,100 +124395,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47058] = 20, + [47271] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - ACTIONS(3324), 1, - anon_sym_PIPE, - ACTIONS(3326), 1, - anon_sym_CARET, - ACTIONS(3328), 1, + ACTIONS(3380), 1, anon_sym_AMP, - ACTIONS(3344), 1, + ACTIONS(3384), 1, anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, + ACTIONS(3386), 1, anon_sym_AMP_AMP, - ACTIONS(3348), 1, + ACTIONS(3388), 1, + anon_sym_PIPE, + ACTIONS(3390), 1, + anon_sym_CARET, + ACTIONS(3392), 1, anon_sym_QMARK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, + ACTIONS(3374), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3334), 2, + ACTIONS(3376), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3336), 2, + ACTIONS(3378), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2753), 5, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2785), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [47131] = 16, + [47344] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(3178), 1, + ACTIONS(3216), 1, sym_ms_restrict_modifier, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1771), 1, + STATE(1784), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - ACTIONS(3340), 2, + ACTIONS(3396), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3342), 2, + ACTIONS(3398), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1246), 2, + STATE(1297), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1395), 2, + STATE(1444), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3184), 3, + ACTIONS(3234), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, + ACTIONS(3394), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -119729,183 +124497,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47196] = 20, + [47409] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_SLASH, - ACTIONS(3324), 1, - anon_sym_PIPE, - ACTIONS(3326), 1, - anon_sym_CARET, - ACTIONS(3328), 1, - anon_sym_AMP, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, - anon_sym_AMP_AMP, - ACTIONS(3348), 1, - anon_sym_QMARK, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3318), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(2183), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3334), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3336), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2725), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [47269] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(3216), 1, + sym_ms_restrict_modifier, + ACTIONS(3220), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_SLASH, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2595), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3318), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3334), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3336), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2597), 9, + STATE(1409), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1791), 1, + sym__abstract_declarator, + STATE(1830), 1, + sym_parameter_list, + ACTIONS(3396), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3398), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1315), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1443), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3214), 3, 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, - [47332] = 14, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1829), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3394), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47474] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2595), 2, + ACTIONS(2690), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3332), 2, + ACTIONS(3374), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3334), 2, + ACTIONS(3376), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3336), 2, + ACTIONS(3378), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 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, + ACTIONS(3382), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - sym_identifier, - [47393] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_SLASH, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3318), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 15, + ACTIONS(2692), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -119913,46 +124592,40 @@ 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, - [47448] = 12, + [47537] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3336), 2, + ACTIONS(3378), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2595), 4, + ACTIONS(2690), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 13, + ACTIONS(2692), 13, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -119966,88 +124639,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [47505] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2595), 1, - anon_sym_PIPE, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(2880), 1, - anon_sym_LBRACK, - ACTIONS(3322), 1, - anon_sym_SLASH, - ACTIONS(3328), 1, - anon_sym_AMP, - STATE(1071), 1, - sym_argument_list, - ACTIONS(2884), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3318), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3334), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3336), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2597), 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, - [47570] = 15, + [47594] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(2023), 1, + ACTIONS(2073), 1, anon_sym_STAR, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1600), 1, + STATE(1636), 1, sym__declarator, - STATE(1750), 1, + STATE(1808), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - ACTIONS(3350), 2, + ACTIONS(3400), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -120063,391 +124687,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47633] = 17, + [47657] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 1, - anon_sym_PIPE, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - ACTIONS(3326), 1, - anon_sym_CARET, - ACTIONS(3328), 1, - anon_sym_AMP, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, + ACTIONS(2690), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3334), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3336), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2597), 8, + ACTIONS(2692), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [47700] = 20, + [47712] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - ACTIONS(3324), 1, - anon_sym_PIPE, - ACTIONS(3326), 1, - anon_sym_CARET, - ACTIONS(3328), 1, - anon_sym_AMP, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, - anon_sym_AMP_AMP, - ACTIONS(3348), 1, - anon_sym_QMARK, - STATE(1071), 1, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, + ACTIONS(2690), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3334), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3336), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2757), 5, + ACTIONS(2692), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, sym_identifier, - [47773] = 20, + [47765] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - ACTIONS(3324), 1, - anon_sym_PIPE, - ACTIONS(3326), 1, - anon_sym_CARET, - ACTIONS(3328), 1, + ACTIONS(3380), 1, anon_sym_AMP, - ACTIONS(3344), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3346), 1, + ACTIONS(3386), 1, anon_sym_AMP_AMP, - ACTIONS(3348), 1, - anon_sym_QMARK, - STATE(1071), 1, + ACTIONS(3388), 1, + anon_sym_PIPE, + ACTIONS(3390), 1, + anon_sym_CARET, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, + ACTIONS(3374), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3334), 2, + ACTIONS(3376), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3336), 2, + ACTIONS(3378), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3242), 5, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 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_QMARK, sym_identifier, - [47846] = 10, + [47834] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - STATE(1071), 1, + ACTIONS(3380), 1, + anon_sym_AMP, + ACTIONS(3388), 1, + anon_sym_PIPE, + ACTIONS(3390), 1, + anon_sym_CARET, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3320), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2595), 6, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3370), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3374), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 15, + ACTIONS(3376), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3378), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 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_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, - [47899] = 18, + [47901] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2880), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3322), 1, + ACTIONS(3372), 1, anon_sym_SLASH, - ACTIONS(3324), 1, - anon_sym_PIPE, - ACTIONS(3326), 1, - anon_sym_CARET, - ACTIONS(3328), 1, + ACTIONS(3380), 1, anon_sym_AMP, - ACTIONS(3346), 1, - anon_sym_AMP_AMP, - STATE(1071), 1, + ACTIONS(3390), 1, + anon_sym_CARET, + STATE(1095), 1, sym_argument_list, - ACTIONS(2884), 2, + ACTIONS(2964), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2886), 2, + ACTIONS(2966), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3318), 2, + ACTIONS(3368), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3320), 2, + ACTIONS(3370), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3332), 2, + ACTIONS(3374), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3334), 2, + ACTIONS(3376), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3336), 2, + ACTIONS(3378), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2597), 7, + ACTIONS(3382), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 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_QMARK, sym_identifier, - [47968] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LPAREN2, - ACTIONS(3356), 1, - anon_sym_STAR, - STATE(1368), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1626), 1, - sym__field_declarator, - STATE(2385), 1, - sym_ms_based_modifier, - ACTIONS(3180), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1263), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1400), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1710), 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, - [48028] = 14, + [47968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3402), 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(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - STATE(1368), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1600), 1, - sym__declarator, - STATE(2409), 1, - sym_ms_based_modifier, - ACTIONS(3180), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1263), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1407), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1647), 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, - [48088] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1368), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3369), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1263), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3366), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3364), 6, + ACTIONS(3404), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3362), 16, - anon_sym___extension__, - anon_sym___based, - 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, - [48134] = 3, + 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, + [48006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 11, + ACTIONS(3406), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -120459,7 +124975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3374), 19, + ACTIONS(3408), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -120479,42 +124995,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [48172] = 14, + [48044] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1615), 1, - sym__field_declarator, - STATE(2385), 1, + STATE(1631), 1, + sym__declarator, + STATE(2301), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1263), 2, + STATE(1312), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1413), 2, + STATE(1456), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1710), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1690), 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, @@ -120525,37 +125041,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48232] = 14, + [48104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3414), 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(3416), 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, + [48142] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1595), 1, + STATE(1631), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1262), 2, + STATE(1315), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1406), 2, + STATE(1456), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -120571,10 +125122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48292] = 3, + [48202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3376), 11, + ACTIONS(3418), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -120586,7 +125137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3378), 19, + ACTIONS(3420), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -120606,37 +125157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [48330] = 14, + [48240] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1588), 1, + STATE(1636), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1272), 2, + STATE(1315), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1411), 2, + STATE(1448), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -120652,37 +125203,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48390] = 14, + [48300] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3426), 1, anon_sym_STAR, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1626), 1, + STATE(1668), 1, sym__field_declarator, - STATE(2385), 1, + STATE(2388), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1265), 2, + STATE(1315), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1400), 2, + STATE(1447), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1710), 5, + STATE(1757), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -120698,42 +125249,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48450] = 14, + [48360] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1610), 1, - sym__field_declarator, - STATE(2385), 1, + STATE(1642), 1, + sym__declarator, + STATE(2301), 1, sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3218), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1261), 2, + STATE(1310), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1404), 2, + STATE(1450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3216), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1710), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1690), 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, @@ -120744,79 +125295,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 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(3382), 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, - [48548] = 14, + [48420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, - sym_identifier, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - STATE(1368), 1, + STATE(1409), 1, sym_ms_unaligned_ptr_modifier, - STATE(1595), 1, - sym__declarator, - STATE(2409), 1, - sym_ms_based_modifier, - ACTIONS(3180), 2, + ACTIONS(3435), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1263), 2, + STATE(1315), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1406), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3178), 3, + ACTIONS(3432), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(3430), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3428), 16, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -120825,1133 +125332,1162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3384), 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_primitive_type, sym_identifier, - ACTIONS(3386), 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, - [48646] = 21, + [48466] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3390), 3, + ACTIONS(3440), 3, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [48720] = 22, + [48540] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3422), 1, + sym_identifier, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3392), 1, - anon_sym_COMMA, - ACTIONS(3394), 1, - anon_sym_RPAREN, - STATE(870), 1, - sym_argument_list, - STATE(1982), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3426), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48795] = 22, + STATE(1409), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1668), 1, + sym__field_declarator, + STATE(2388), 1, + sym_ms_based_modifier, + ACTIONS(3218), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1318), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1447), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3216), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1757), 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, + [48600] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3422), 1, + sym_identifier, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_COMMA, - ACTIONS(3398), 1, - anon_sym_RPAREN, - STATE(870), 1, - sym_argument_list, - STATE(1891), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3426), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48870] = 22, + STATE(1409), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1664), 1, + sym__field_declarator, + STATE(2388), 1, + sym_ms_based_modifier, + ACTIONS(3218), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1315), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1452), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3216), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1757), 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, + [48660] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3422), 1, + sym_identifier, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - anon_sym_COMMA, - ACTIONS(3402), 1, - anon_sym_RBRACE, - STATE(870), 1, - sym_argument_list, - STATE(1992), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3426), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48945] = 22, + STATE(1409), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1654), 1, + sym__field_declarator, + STATE(2388), 1, + sym_ms_based_modifier, + ACTIONS(3218), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1313), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1449), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3216), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1757), 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, + [48720] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3396), 1, - anon_sym_COMMA, - ACTIONS(3404), 1, - anon_sym_RPAREN, - STATE(870), 1, - sym_argument_list, - STATE(1977), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49020] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3406), 1, + ACTIONS(3442), 1, anon_sym_COMMA, - ACTIONS(3408), 1, + ACTIONS(3444), 1, anon_sym_RBRACE, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - STATE(1938), 1, + STATE(1949), 1, aux_sym_initializer_list_repeat1, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49095] = 22, + [48795] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3410), 1, + ACTIONS(3448), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - STATE(2004), 1, + STATE(2043), 1, aux_sym_argument_list_repeat1, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49170] = 20, + [48870] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3412), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [49241] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3414), 1, + ACTIONS(3450), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - STATE(1886), 1, + STATE(2053), 1, aux_sym_argument_list_repeat1, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49316] = 22, + [48945] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3392), 1, + ACTIONS(3452), 1, anon_sym_COMMA, - ACTIONS(3416), 1, + ACTIONS(3454), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - STATE(1953), 1, + STATE(1978), 1, aux_sym_generic_expression_repeat1, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49391] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, - anon_sym_SLASH, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3420), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3424), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 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, - [49447] = 21, + [49020] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3452), 1, anon_sym_COMMA, - ACTIONS(3426), 1, - anon_sym_SEMI, - STATE(870), 1, + ACTIONS(3456), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + STATE(2060), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49519] = 21, + [49095] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3458), 1, anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_SEMI, - STATE(870), 1, + ACTIONS(3460), 1, + anon_sym_RBRACE, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + STATE(2054), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49591] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1565), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [49647] = 21, + [49170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49719] = 21, + ACTIONS(3462), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [49241] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3438), 1, - anon_sym_SEMI, - STATE(870), 1, + ACTIONS(3464), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + STATE(1933), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49791] = 21, + [49316] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3440), 1, + ACTIONS(3466), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + STATE(1980), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49863] = 21, + [49391] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3442), 1, - anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49935] = 12, + ACTIONS(3468), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49461] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, + sym__type_specifier, + STATE(1589), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1606), 1, + sym__type_definition_type, + STATE(1405), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3472), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [49517] = 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(2149), 1, + sym_identifier, + ACTIONS(3476), 1, + anon_sym_enum, + STATE(1440), 1, + sym__type_specifier, + STATE(1455), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2441), 1, + sym_type_descriptor, + STATE(1425), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1978), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [49573] = 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(1980), 1, + anon_sym_enum, + ACTIONS(2149), 1, + sym_identifier, + STATE(1440), 1, + sym__type_specifier, + STATE(1455), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2437), 1, + sym_type_descriptor, + STATE(1404), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1978), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [49629] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - STATE(870), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3478), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3418), 2, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2595), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2597), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [49989] = 21, + [49701] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, + sym__type_specifier, + STATE(1589), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1601), 1, + sym__type_definition_type, + STATE(1405), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3472), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [49757] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3444), 1, - anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50061] = 21, + ACTIONS(3480), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49827] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3446), 1, + ACTIONS(3482), 1, anon_sym_SEMI, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50133] = 13, + [49899] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, + sym__type_specifier, + STATE(1589), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1610), 1, + sym__type_definition_type, + STATE(1405), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3472), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [49955] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, sym_primitive_type, + STATE(1518), 1, + sym__type_specifier, + STATE(1589), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1602), 1, + sym__type_definition_type, + STATE(1405), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3472), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [50011] = 13, + ACTIONS(3), 1, + sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(3448), 1, + ACTIONS(1980), 1, anon_sym_enum, - STATE(1398), 1, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, sym__type_specifier, - STATE(1403), 1, + STATE(1589), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2199), 1, - sym_type_descriptor, - STATE(1385), 2, + STATE(1609), 1, + sym__type_definition_type, + STATE(1405), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + ACTIONS(3472), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -121967,58 +126503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50189] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3450), 1, - anon_sym_COLON, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3274), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3278), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3280), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50261] = 13, + [50067] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -122027,25 +126512,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(3448), 1, + ACTIONS(1980), 1, anon_sym_enum, - STATE(1398), 1, + ACTIONS(2149), 1, + sym_identifier, + STATE(1440), 1, sym__type_specifier, - STATE(1403), 1, + STATE(1455), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2381), 1, + STATE(2443), 1, sym_type_descriptor, - STATE(1385), 2, + STATE(1404), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + ACTIONS(1978), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -122061,34 +126546,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50317] = 13, + [50123] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1933), 1, + ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(3430), 1, + ACTIONS(3470), 1, sym_identifier, - ACTIONS(3434), 1, + ACTIONS(3474), 1, sym_primitive_type, - STATE(1472), 1, + STATE(1518), 1, sym__type_specifier, - STATE(1505), 1, + STATE(1589), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1566), 1, + STATE(1611), 1, sym__type_definition_type, - STATE(1355), 2, + STATE(1405), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, + ACTIONS(3472), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -122104,390 +126589,506 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50373] = 21, + [50179] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3452), 1, - anon_sym_RPAREN, - STATE(870), 1, + ACTIONS(3484), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50445] = 21, + [50251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3498), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, - anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(2785), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50517] = 20, + [50323] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, + sym__type_specifier, + STATE(1589), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1605), 1, + sym__type_definition_type, + STATE(1405), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3472), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [50379] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3488), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2690), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3298), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2692), 12, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3302), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(870), 1, + [50431] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3456), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50587] = 21, + ACTIONS(2692), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [50499] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, + sym__type_specifier, + STATE(1589), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1603), 1, + sym__type_definition_type, + STATE(1405), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3472), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [50555] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3498), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3458), 1, - anon_sym_SEMI, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50659] = 21, + ACTIONS(2692), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [50621] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3460), 1, - anon_sym_SEMI, - STATE(870), 1, + ACTIONS(3512), 1, + anon_sym_COLON, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50731] = 21, + [50693] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2690), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3498), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3462), 1, - anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50803] = 21, + ACTIONS(2692), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [50759] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, - anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2690), 1, anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, - anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3464), 1, - anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50875] = 13, + ACTIONS(2692), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [50823] = 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(1933), 1, + ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(2099), 1, + ACTIONS(3470), 1, sym_identifier, - STATE(1398), 1, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, sym__type_specifier, - STATE(1403), 1, + STATE(1589), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2280), 1, - sym_type_descriptor, - STATE(1373), 2, + STATE(1608), 1, + sym__type_definition_type, + STATE(1405), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + ACTIONS(3472), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -122503,130 +127104,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50931] = 21, + [50879] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2690), 2, anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3488), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3506), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2692), 6, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3302), 1, + anon_sym_CARET, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3466), 1, - anon_sym_RPAREN, - STATE(870), 1, + [50941] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, + anon_sym_QMARK, + ACTIONS(3514), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3516), 1, + anon_sym_RBRACK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51015] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, + anon_sym_SLASH, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2690), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3488), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3504), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2692), 8, + 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_RBRACK, + anon_sym_QMARK, + [51075] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, + anon_sym_SLASH, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3488), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51003] = 15, + ACTIONS(2690), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2692), 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, + [51131] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2589), 1, + ACTIONS(2647), 1, anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, + ACTIONS(3171), 1, anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2595), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3418), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(2690), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2597), 8, + ACTIONS(2692), 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, - [51063] = 13, + [51185] = 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(2099), 1, - sym_identifier, - ACTIONS(3448), 1, + ACTIONS(1980), 1, anon_sym_enum, - STATE(1398), 1, + ACTIONS(3470), 1, + sym_identifier, + ACTIONS(3474), 1, + sym_primitive_type, + STATE(1518), 1, sym__type_specifier, - STATE(1403), 1, + STATE(1589), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2358), 1, - sym_type_descriptor, - STATE(1385), 2, + STATE(1607), 1, + sym__type_definition_type, + STATE(1405), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + ACTIONS(3472), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -122642,356 +127375,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51119] = 20, + [51241] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3518), 1, + anon_sym_COLON, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3472), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51189] = 21, + [51313] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3498), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3474), 1, - anon_sym_SEMI, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(2815), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51261] = 21, + [51385] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3476), 1, - anon_sym_SEMI, - STATE(870), 1, + ACTIONS(3520), 1, + anon_sym_COLON, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51333] = 21, + [51457] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3171), 1, + anon_sym_DOT, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3498), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3478), 1, - anon_sym_SEMI, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(2807), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51405] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, - anon_sym_SLASH, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2595), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3420), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3424), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3468), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2597), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [51467] = 20, + [51529] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3522), 1, + anon_sym_COLON, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3482), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51537] = 20, + [51601] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3524), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3484), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51607] = 13, + [51673] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -123000,25 +127690,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1933), 1, + ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(1398), 1, + STATE(1440), 1, sym__type_specifier, - STATE(1403), 1, + STATE(1455), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2287), 1, + STATE(2451), 1, sym_type_descriptor, - STATE(1373), 2, + STATE(1404), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + ACTIONS(1978), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -123034,393 +127724,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51663] = 20, + [51729] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3318), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3486), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51733] = 17, + [51799] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2595), 1, - anon_sym_PIPE, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, - anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3420), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2597), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [51797] = 21, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2149), 1, + sym_identifier, + ACTIONS(3476), 1, + anon_sym_enum, + STATE(1440), 1, + sym__type_specifier, + STATE(1455), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2252), 1, + sym_type_descriptor, + STATE(1425), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1978), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [51855] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(2149), 1, + sym_identifier, + STATE(1440), 1, + sym__type_specifier, + STATE(1455), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2440), 1, + sym_type_descriptor, + STATE(1404), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1978), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1050), 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, + [51911] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3490), 1, - anon_sym_COLON, - STATE(870), 1, + ACTIONS(3526), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51869] = 18, + [51983] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2595), 1, - anon_sym_PIPE, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, anon_sym_CARET, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3420), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2597), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, + ACTIONS(3346), 1, anon_sym_QMARK, - [51935] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, - anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3528), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3418), 2, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2597), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [52001] = 19, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52055] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - STATE(870), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3530), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3418), 2, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2597), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [52069] = 20, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52127] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3532), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3242), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52139] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1558), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [52195] = 13, + [52199] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -123429,25 +128073,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1933), 1, + ACTIONS(1980), 1, anon_sym_enum, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - STATE(1398), 1, + STATE(1440), 1, sym__type_specifier, - STATE(1403), 1, + STATE(1455), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2378), 1, + STATE(2248), 1, sym_type_descriptor, - STATE(1373), 2, + STATE(1404), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + ACTIONS(1978), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -123463,1375 +128107,1050 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52251] = 21, + [52255] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3498), 1, - anon_sym_RPAREN, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52323] = 20, + ACTIONS(3534), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52325] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3500), 2, + ACTIONS(3536), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [52393] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1557), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [52449] = 11, + anon_sym_RBRACE, + [52395] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - STATE(870), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3538), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3420), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2595), 6, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2597), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52467] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + ACTIONS(3328), 1, anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3540), 1, + anon_sym_RPAREN, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [52501] = 21, + [52539] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3502), 1, + ACTIONS(3542), 1, anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52573] = 21, + [52611] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3504), 1, + ACTIONS(3544), 1, anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52645] = 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(1933), 1, - anon_sym_enum, - ACTIONS(2099), 1, - sym_identifier, - STATE(1398), 1, - sym__type_specifier, - STATE(1403), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2314), 1, - sym_type_descriptor, - STATE(1373), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [52701] = 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(1933), 1, - anon_sym_enum, - ACTIONS(2099), 1, - sym_identifier, - STATE(1398), 1, - sym__type_specifier, - STATE(1403), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2277), 1, - sym_type_descriptor, - STATE(1373), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [52757] = 22, + [52683] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3506), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3510), 1, - anon_sym_RBRACK, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3546), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3418), 2, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [52831] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1559), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [52887] = 21, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52755] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3548), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2757), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3418), 2, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [52959] = 21, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52827] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53031] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1564), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [53087] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1562), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [53143] = 21, + ACTIONS(3550), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52897] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3516), 1, + ACTIONS(3552), 1, anon_sym_SEMI, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53215] = 21, + [52969] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3518), 1, + ACTIONS(3554), 1, anon_sym_SEMI, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53287] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1561), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [53343] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1560), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [53399] = 21, + [53041] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2753), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3418), 2, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [53471] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1472), 1, - sym__type_specifier, - STATE(1505), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1563), 1, - sym__type_definition_type, - STATE(1355), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(998), 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, - [53527] = 21, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3556), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53111] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3520), 1, - anon_sym_SEMI, - STATE(870), 1, + ACTIONS(3558), 1, + anon_sym_COLON, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53599] = 21, + [53183] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3522), 1, - anon_sym_SEMI, - STATE(870), 1, + ACTIONS(3560), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53671] = 21, + [53255] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3524), 1, + ACTIONS(3562), 1, anon_sym_SEMI, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53743] = 21, + [53327] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3526), 1, - anon_sym_RPAREN, - STATE(870), 1, + ACTIONS(3564), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53815] = 20, + [53399] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3566), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3528), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [53885] = 21, + [53471] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3117), 1, - anon_sym_DOT, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3568), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2725), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3418), 2, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [53957] = 21, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53543] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3388), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3530), 1, + ACTIONS(3570), 1, anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54029] = 20, + [53615] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 1, - anon_sym_RBRACK, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54098] = 12, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53687] = 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(1933), 1, - anon_sym_enum, - ACTIONS(3430), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(3434), 1, - sym_primitive_type, - STATE(1453), 1, + ACTIONS(3476), 1, + anon_sym_enum, + STATE(1440), 1, sym__type_specifier, - STATE(1505), 1, + STATE(1455), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1383), 2, + STATE(2438), 1, + sym_type_descriptor, + STATE(1425), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3432), 4, + ACTIONS(1978), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -124847,591 +129166,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54151] = 20, + [53743] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 1, - anon_sym_RBRACK, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54220] = 20, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3574), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [53813] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3532), 1, - anon_sym_COLON, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3576), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54289] = 20, + [53885] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3534), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - STATE(870), 1, + ACTIONS(3578), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54358] = 20, + [53957] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_RBRACK, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, - anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, - anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, - anon_sym_QMARK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3420), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54427] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2330), 1, - anon_sym_RBRACK, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, + anon_sym_SEMI, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54496] = 20, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54029] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3536), 1, - anon_sym_COLON, - STATE(870), 1, + ACTIONS(3582), 1, + anon_sym_COMMA, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54565] = 12, + [54098] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, - anon_sym_STAR, - ACTIONS(3217), 1, - sym_primitive_type, - STATE(1633), 1, - sym__type_declarator, - STATE(2160), 1, - sym_ms_based_modifier, - STATE(1383), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3215), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1728), 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, - [54618] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2364), 1, - anon_sym_RBRACK, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, - anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3584), 1, + anon_sym_RPAREN, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54687] = 3, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54167] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2643), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3538), 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, - [54722] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2583), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3498), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3542), 1, - anon_sym_RPAREN, - STATE(870), 1, + ACTIONS(3586), 1, + anon_sym_RBRACK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54791] = 20, + [54236] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(2428), 1, anon_sym_RBRACK, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, ACTIONS(3492), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54860] = 20, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54305] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3544), 1, - anon_sym_COMMA, - STATE(870), 1, + ACTIONS(3588), 1, + anon_sym_COLON, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54929] = 3, + [54374] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3548), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3546), 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, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(2149), 1, + sym_identifier, + STATE(1442), 1, + sym__type_specifier, + STATE(1455), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1978), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1050), 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, @@ -125440,39 +129655,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54964] = 12, + [54427] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1980), 1, + anon_sym_enum, + ACTIONS(3470), 1, sym_identifier, - ACTIONS(3211), 1, - anon_sym_LPAREN2, - ACTIONS(3213), 1, - anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3474), 1, sym_primitive_type, - STATE(1648), 1, - sym__type_declarator, - STATE(2160), 1, - sym_ms_based_modifier, - STATE(1383), 2, + STATE(1536), 1, + sym__type_specifier, + STATE(1589), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3215), 4, + ACTIONS(3472), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1050), 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, @@ -125483,186 +129696,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55017] = 20, + [54480] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3498), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3500), 1, anon_sym_AMP, - ACTIONS(3298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3550), 1, - anon_sym_COLON, - STATE(870), 1, + ACTIONS(3590), 1, + anon_sym_RBRACK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55086] = 20, + [54549] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3259), 1, + sym_identifier, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3263), 1, + anon_sym_STAR, + ACTIONS(3267), 1, + sym_primitive_type, + STATE(1677), 1, + sym__type_declarator, + STATE(2394), 1, + sym_ms_based_modifier, + STATE(1421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1763), 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, + [54602] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3552), 1, + ACTIONS(3592), 1, anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55155] = 20, + [54671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(3596), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3422), 1, - anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, - anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, - anon_sym_QMARK, - ACTIONS(3554), 1, - anon_sym_RBRACK, - STATE(870), 1, - sym_argument_list, - ACTIONS(2587), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3418), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3420), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3470), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [55224] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3594), 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, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1933), 1, - anon_sym_enum, - ACTIONS(2099), 1, sym_identifier, - STATE(1396), 1, - sym__type_specifier, - STATE(1403), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1383), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + [54706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3600), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3598), 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, - STATE(998), 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, @@ -125671,81 +129897,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55277] = 20, + sym_primitive_type, + sym_identifier, + [54741] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2366), 1, + anon_sym_RBRACK, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, ACTIONS(3492), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3556), 1, - anon_sym_RBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [55346] = 12, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54810] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1643), 1, + STATE(1682), 1, sym__type_declarator, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -125761,363 +129989,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55399] = 20, + [54863] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, - anon_sym_RBRACK, - ACTIONS(2585), 1, - anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_CARET, - ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, + ACTIONS(3328), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - STATE(870), 1, + ACTIONS(3602), 1, + anon_sym_COLON, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [55468] = 20, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54932] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3290), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_CARET, - ACTIONS(3294), 1, - anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3492), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, + ACTIONS(3494), 1, anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3558), 1, - anon_sym_COLON, - STATE(870), 1, + ACTIONS(3604), 1, + anon_sym_RBRACK, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55537] = 20, + [55001] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2396), 1, anon_sym_RBRACK, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, ACTIONS(3492), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [55606] = 20, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55070] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3560), 1, - anon_sym_RPAREN, - STATE(870), 1, + ACTIONS(3606), 1, + anon_sym_COMMA, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55675] = 20, + [55139] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(2364), 1, + anon_sym_RBRACK, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, ACTIONS(3492), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - ACTIONS(3562), 1, - anon_sym_RBRACK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [55744] = 20, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, + ACTIONS(2398), 1, anon_sym_RBRACK, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, ACTIONS(3492), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3468), 2, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [55813] = 20, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55277] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, - anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3346), 1, anon_sym_QMARK, - ACTIONS(3564), 1, + ACTIONS(3608), 1, anon_sym_COLON, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3324), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3336), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3338), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3340), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3342), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55882] = 5, + [55346] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3259), 1, + sym_identifier, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3263), 1, + anon_sym_STAR, + ACTIONS(3267), 1, + sym_primitive_type, + STATE(1689), 1, + sym__type_declarator, + STATE(2394), 1, + sym_ms_based_modifier, + STATE(1421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3265), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1763), 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, + [55399] = 5, ACTIONS(3), 1, sym_comment, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2688), 6, + ACTIONS(2734), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3566), 9, + ACTIONS(3610), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -126127,7 +130396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2686), 10, + ACTIONS(2732), 10, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -126138,56 +130407,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [55921] = 20, + [55438] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2392), 1, anon_sym_RBRACK, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(2856), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(3422), 1, + ACTIONS(3490), 1, anon_sym_SLASH, - ACTIONS(3488), 1, - anon_sym_AMP, ACTIONS(3492), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(3494), 1, - anon_sym_PIPE, - ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3508), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3512), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3418), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3420), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3424), 2, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3506), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3468), 2, + [55507] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 1, + anon_sym_RBRACK, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3488), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3470), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3480), 2, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55576] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2394), 1, + anon_sym_RBRACK, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3488), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [55990] = 12, + ACTIONS(3504), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3506), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55645] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -126196,23 +130563,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2099), 1, + ACTIONS(2149), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3476), 1, anon_sym_enum, - STATE(1396), 1, + STATE(1442), 1, sym__type_specifier, - STATE(1403), 1, + STATE(1455), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1931), 4, + ACTIONS(1978), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(998), 5, + STATE(1050), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -126228,94 +130595,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [56043] = 7, + [55698] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3105), 1, - anon_sym_LBRACE, - STATE(1029), 1, - sym_attribute_specifier, - STATE(1392), 1, - sym_enumerator_list, - ACTIONS(3169), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2641), 1, anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + ACTIONS(3613), 1, + anon_sym_COLON, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55767] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + ACTIONS(3615), 1, anon_sym_COLON, - ACTIONS(3167), 16, - anon_sym___extension__, - anon_sym___based, - 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, - [56085] = 19, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55836] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2378), 1, + anon_sym_RBRACK, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, + anon_sym_AMP_AMP, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3488), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3504), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3506), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3508), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55905] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2643), 1, anon_sym_LBRACK, - ACTIONS(3276), 1, + ACTIONS(3326), 1, anon_sym_SLASH, - ACTIONS(3290), 1, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, anon_sym_PIPE, - ACTIONS(3292), 1, + ACTIONS(3332), 1, anon_sym_CARET, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_AMP, - ACTIONS(3298), 1, + ACTIONS(3344), 1, anon_sym_PIPE_PIPE, - ACTIONS(3300), 1, + ACTIONS(3346), 1, + anon_sym_QMARK, + ACTIONS(3617), 1, + anon_sym_RPAREN, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55974] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2430), 1, + anon_sym_RBRACK, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(3490), 1, + anon_sym_SLASH, + ACTIONS(3492), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3494), 1, anon_sym_AMP_AMP, - ACTIONS(3302), 1, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3498), 1, + anon_sym_CARET, + ACTIONS(3500), 1, + anon_sym_AMP, + ACTIONS(3510), 1, anon_sym_QMARK, - STATE(870), 1, + STATE(924), 1, sym_argument_list, - ACTIONS(2587), 2, + ACTIONS(2645), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2589), 2, + ACTIONS(2647), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3272), 2, + ACTIONS(3486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3274), 2, + ACTIONS(3488), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3278), 2, + ACTIONS(3502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3280), 2, + ACTIONS(3504), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3282), 2, + ACTIONS(3506), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3284), 2, + ACTIONS(3508), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [56151] = 4, + [56043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3619), 1, anon_sym_SEMI, - ACTIONS(2571), 7, + ACTIONS(2561), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -126323,7 +130853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2573), 18, + ACTIONS(2563), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -126342,26 +130872,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [56187] = 8, + [56079] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3326), 1, + anon_sym_SLASH, + ACTIONS(3328), 1, + anon_sym_AMP_AMP, + ACTIONS(3330), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_CARET, + ACTIONS(3334), 1, + anon_sym_AMP, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_QMARK, + STATE(924), 1, + sym_argument_list, + ACTIONS(2645), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2647), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3322), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3324), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3336), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3338), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3340), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3342), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56145] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(3621), 1, + anon_sym_COLON, + STATE(1066), 1, + sym_attribute_specifier, + STATE(1437), 1, + sym_enumerator_list, + ACTIONS(3150), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(3148), 16, + anon_sym___extension__, + anon_sym___based, + 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, + [56189] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3105), 1, + ACTIONS(3155), 1, anon_sym_LBRACE, - ACTIONS(3571), 1, - anon_sym_COLON, - STATE(1040), 1, + STATE(1067), 1, sym_attribute_specifier, - STATE(1391), 1, + STATE(1436), 1, sym_enumerator_list, - ACTIONS(3100), 5, + ACTIONS(3203), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3098), 16, + anon_sym_COLON, + ACTIONS(3201), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -126383,16 +130995,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1026), 1, + STATE(1074), 1, sym_attribute_specifier, - ACTIONS(3190), 6, + ACTIONS(3247), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3188), 16, + ACTIONS(3245), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -126414,16 +131026,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1028), 1, + STATE(1035), 1, sym_attribute_specifier, - ACTIONS(3197), 6, + ACTIONS(3238), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3195), 16, + ACTIONS(3236), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -126445,16 +131057,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1035), 1, + STATE(1044), 1, sym_attribute_specifier, - ACTIONS(3204), 6, + ACTIONS(3254), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3202), 16, + ACTIONS(3252), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -126471,71 +131083,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [56339] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, - anon_sym_LPAREN2, - ACTIONS(3213), 1, - anon_sym_STAR, - ACTIONS(3217), 1, - sym_primitive_type, - STATE(1568), 1, - sym_ms_call_modifier, - STATE(1716), 1, - sym__type_declarator, - STATE(2160), 1, - sym_ms_based_modifier, - ACTIONS(3215), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1728), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56388] = 11, + [56339] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1751), 1, + STATE(1812), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3573), 3, + ACTIONS(3623), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, + ACTIONS(3394), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -126544,34 +131119,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [56386] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3259), 1, + sym_identifier, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3263), 1, + anon_sym_STAR, + ACTIONS(3267), 1, + sym_primitive_type, + STATE(1613), 1, + sym_ms_call_modifier, + STATE(1777), 1, + sym__type_declarator, + STATE(2394), 1, + sym_ms_based_modifier, + ACTIONS(3265), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1763), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, [56435] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1743), 1, + STATE(1825), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1438), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3176), 3, + ACTIONS(3625), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, + ACTIONS(3394), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -126585,29 +131197,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1755), 1, + STATE(1789), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(1397), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3575), 3, + ACTIONS(3627), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, + ACTIONS(3394), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -126621,29 +131233,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1744), 1, + STATE(1793), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1441), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3577), 3, + ACTIONS(3629), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, + ACTIONS(3394), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -126657,29 +131269,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1741), 1, + STATE(1808), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(1394), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3579), 3, + ACTIONS(3400), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, + ACTIONS(3394), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -126693,64 +131305,30 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2131), 1, + ACTIONS(2181), 1, anon_sym_LPAREN2, - ACTIONS(2133), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(3182), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1750), 1, + STATE(1791), 1, sym__abstract_declarator, - STATE(1788), 1, + STATE(1830), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3350), 3, + ACTIONS(3214), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1786), 4, + STATE(1829), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3338), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [56670] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LPAREN2, - ACTIONS(3356), 1, - anon_sym_STAR, - STATE(1615), 1, - sym__field_declarator, - STATE(2385), 1, - sym_ms_based_modifier, - STATE(1383), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1710), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(3394), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -126758,34 +131336,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [56714] = 15, + [56670] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(879), 1, + STATE(915), 1, sym__old_style_function_declarator, - STATE(1601), 1, + STATE(1639), 1, sym_ms_call_modifier, - STATE(1646), 1, - sym__declarator, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1752), 1, + STATE(1692), 1, + sym__declarator, + STATE(1786), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1927), 1, + STATE(2012), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -126797,20 +131375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [56768] = 5, + [56724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3635), 1, anon_sym_LPAREN2, - STATE(1273), 1, + STATE(1306), 1, sym_preproc_argument_list, - ACTIONS(3587), 5, + ACTIONS(3637), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3583), 15, + ACTIONS(3633), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -126826,56 +131404,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56802] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2914), 1, - sym_primitive_type, - ACTIONS(3589), 1, - sym_identifier, - STATE(1408), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3591), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2908), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2910), 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, - [56840] = 10, + [56758] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3426), 1, anon_sym_STAR, - STATE(1626), 1, + STATE(1664), 1, sym__field_declarator, - STATE(2385), 1, + STATE(2388), 1, sym_ms_based_modifier, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1710), 5, + STATE(1757), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -126891,64 +131438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [56884] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3581), 1, - sym_identifier, - STATE(852), 1, - sym__old_style_function_declarator, - STATE(1591), 1, - sym_ms_call_modifier, - STATE(1632), 1, - sym__declarator, - STATE(1647), 1, - sym_function_declarator, - STATE(1745), 1, - sym__declaration_declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(1900), 1, - sym_init_declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1651), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [56938] = 10, + [56802] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1600), 1, + STATE(1645), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -126964,30 +131472,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [56982] = 10, + [56846] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3426), 1, anon_sym_STAR, - STATE(1586), 1, - sym__declarator, - STATE(2409), 1, + STATE(1668), 1, + sym__field_declarator, + STATE(2388), 1, sym_ms_based_modifier, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1757), 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, @@ -126998,133 +131506,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57026] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(962), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2813), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(2817), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3023), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3020), 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, - [57062] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3581), 1, - sym_identifier, - STATE(871), 1, - sym__old_style_function_declarator, - STATE(1604), 1, - sym_ms_call_modifier, - STATE(1640), 1, - sym__declarator, - STATE(1647), 1, - sym_function_declarator, - STATE(1740), 1, - sym__declaration_declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(1949), 1, - sym_init_declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1651), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [57116] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3581), 1, - sym_identifier, - STATE(885), 1, - sym__old_style_function_declarator, - STATE(1599), 1, - sym_ms_call_modifier, - STATE(1634), 1, - sym__declarator, - STATE(1647), 1, - sym_function_declarator, - STATE(1747), 1, - sym__declaration_declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(2002), 1, - sym_init_declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1651), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [57170] = 10, + [56890] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1595), 1, + STATE(1631), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127140,34 +131540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57214] = 15, + [56934] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(849), 1, + STATE(911), 1, sym__old_style_function_declarator, - STATE(1584), 1, + STATE(1641), 1, sym_ms_call_modifier, - STATE(1639), 1, + STATE(1679), 1, sym__declarator, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1782), 1, + STATE(1792), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1964), 1, + STATE(1927), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127179,25 +131579,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [57268] = 10, + [56988] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3426), 1, anon_sym_STAR, - STATE(1608), 1, + STATE(1657), 1, sym__field_declarator, - STATE(2385), 1, + STATE(2388), 1, sym_ms_based_modifier, - STATE(1383), 2, + STATE(1421), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1710), 5, + STATE(1757), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -127213,99 +131613,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57312] = 5, - ACTIONS(3583), 1, - anon_sym_LF, - ACTIONS(3593), 1, - anon_sym_LPAREN2, - ACTIONS(3595), 1, - sym_comment, - STATE(1509), 1, - sym_preproc_argument_list, - ACTIONS(3587), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57345] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, - anon_sym_COMMA, - ACTIONS(3599), 1, - anon_sym_RPAREN, - ACTIONS(3605), 1, - anon_sym_SLASH, - ACTIONS(3607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3609), 1, - anon_sym_AMP_AMP, - ACTIONS(3611), 1, - anon_sym_PIPE, - ACTIONS(3613), 1, - anon_sym_CARET, - ACTIONS(3615), 1, - anon_sym_AMP, - STATE(2003), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3601), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3603), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3619), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3623), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57400] = 14, + [57032] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1603), 1, + STATE(907), 1, + sym__old_style_function_declarator, + STATE(1628), 1, sym_ms_call_modifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1723), 1, + STATE(1685), 1, sym__declarator, - STATE(1782), 1, + STATE(1690), 1, + sym_function_declarator, + STATE(1788), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1964), 1, + STATE(2024), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127317,32 +131652,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [57451] = 14, + [57086] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1599), 1, + STATE(906), 1, + sym__old_style_function_declarator, + STATE(1638), 1, sym_ms_call_modifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1663), 1, + STATE(1681), 1, sym__declarator, - STATE(1747), 1, + STATE(1690), 1, + sym_function_declarator, + STATE(1810), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2002), 1, + STATE(2023), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127354,135 +131691,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [57502] = 10, + [57140] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3013), 1, + sym_primitive_type, + ACTIONS(3639), 1, sym_identifier, - ACTIONS(3627), 1, + STATE(1458), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3641), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3007), 6, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, - anon_sym_defined, - ACTIONS(3637), 1, - sym_number_literal, - ACTIONS(3633), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3635), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3639), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1415), 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, - [57545] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3625), 1, - sym_identifier, - ACTIONS(3629), 1, - anon_sym_LPAREN2, - ACTIONS(3631), 1, - anon_sym_defined, - ACTIONS(3641), 1, - anon_sym_RPAREN, - ACTIONS(3643), 1, - sym_number_literal, - ACTIONS(3633), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3635), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3639), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1424), 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, - [57588] = 14, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3009), 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, + [57178] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, - sym_identifier, - STATE(1597), 1, - sym_ms_call_modifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1723), 1, + STATE(1636), 1, sym__declarator, - STATE(1767), 1, - sym__declaration_declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(1959), 1, - sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [57639] = 14, + 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, + [57222] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1585), 1, + STATE(917), 1, + sym__old_style_function_declarator, + STATE(1643), 1, sym_ms_call_modifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1723), 1, + STATE(1687), 1, sym__declarator, - STATE(1745), 1, + STATE(1690), 1, + sym_function_declarator, + STATE(1783), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1983), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127494,69 +131795,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [57690] = 14, + [57276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3581), 1, + STATE(1001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2823), 2, + sym_primitive_type, sym_identifier, - STATE(1592), 1, - sym_ms_call_modifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1723), 1, - sym__declarator, - STATE(1752), 1, - sym__declaration_declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(1927), 1, - sym_init_declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1651), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [57741] = 14, + ACTIONS(2827), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3083), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3080), 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, + [57312] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1584), 1, + STATE(1640), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1654), 1, + STATE(1779), 1, sym__declarator, - STATE(1782), 1, + STATE(1788), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1964), 1, + STATE(2024), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127568,71 +131862,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [57792] = 16, + [57363] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3643), 1, anon_sym_COMMA, - ACTIONS(3605), 1, + ACTIONS(3645), 1, + anon_sym_RPAREN, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3607), 1, + ACTIONS(3653), 1, anon_sym_PIPE_PIPE, - ACTIONS(3609), 1, + ACTIONS(3655), 1, anon_sym_AMP_AMP, - ACTIONS(3611), 1, + ACTIONS(3657), 1, anon_sym_PIPE, - ACTIONS(3613), 1, + ACTIONS(3659), 1, anon_sym_CARET, - ACTIONS(3615), 1, + ACTIONS(3661), 1, anon_sym_AMP, - ACTIONS(3645), 1, - anon_sym_RPAREN, - STATE(1926), 1, + STATE(1987), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3601), 2, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3617), 2, + ACTIONS(3663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3619), 2, + ACTIONS(3665), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3621), 2, + ACTIONS(3667), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3623), 2, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [57847] = 14, + [57418] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1596), 1, + STATE(1646), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1723), 1, + STATE(1779), 1, sym__declarator, - STATE(1772), 1, + STATE(1786), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1993), 1, + STATE(2012), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127644,32 +131938,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [57898] = 14, + [57469] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3671), 1, + sym_identifier, + ACTIONS(3673), 1, + anon_sym_RPAREN, + ACTIONS(3675), 1, + anon_sym_LPAREN2, + ACTIONS(3677), 1, + anon_sym_defined, + ACTIONS(3683), 1, + sym_number_literal, + ACTIONS(3679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3685), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1460), 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, + [57512] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1583), 1, + STATE(1635), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1723), 1, + STATE(1779), 1, sym__declarator, - STATE(1740), 1, + STATE(1810), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1949), 1, + STATE(2023), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127681,71 +132008,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [57949] = 16, + [57563] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3643), 1, anon_sym_COMMA, - ACTIONS(3605), 1, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3607), 1, + ACTIONS(3653), 1, anon_sym_PIPE_PIPE, - ACTIONS(3609), 1, + ACTIONS(3655), 1, anon_sym_AMP_AMP, - ACTIONS(3611), 1, + ACTIONS(3657), 1, anon_sym_PIPE, - ACTIONS(3613), 1, + ACTIONS(3659), 1, anon_sym_CARET, - ACTIONS(3615), 1, + ACTIONS(3661), 1, anon_sym_AMP, - ACTIONS(3647), 1, + ACTIONS(3687), 1, anon_sym_RPAREN, - STATE(1978), 1, + STATE(2045), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3601), 2, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3617), 2, + ACTIONS(3663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3619), 2, + ACTIONS(3665), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3621), 2, + ACTIONS(3667), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3623), 2, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [58004] = 14, + [57618] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(3671), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LPAREN2, + ACTIONS(3677), 1, + anon_sym_defined, + ACTIONS(3689), 1, + anon_sym_RPAREN, + ACTIONS(3691), 1, + sym_number_literal, + ACTIONS(3679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3685), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1475), 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, + [57661] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1582), 1, + STATE(1628), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1723), 1, + STATE(1695), 1, sym__declarator, - STATE(1787), 1, + STATE(1788), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2050), 1, + STATE(2024), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127757,32 +132117,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [58055] = 14, + [57712] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1598), 1, + STATE(1632), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1723), 1, + STATE(1779), 1, sym__declarator, - STATE(1747), 1, + STATE(1792), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2002), 1, + STATE(1927), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127794,32 +132154,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [58106] = 14, + [57763] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1604), 1, + STATE(1644), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1669), 1, + STATE(1779), 1, sym__declarator, - STATE(1740), 1, + STATE(1827), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1949), 1, + STATE(2042), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127831,32 +132191,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [58157] = 14, + [57814] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1601), 1, + STATE(1643), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1664), 1, + STATE(1699), 1, sym__declarator, - STATE(1752), 1, + STATE(1783), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1927), 1, + STATE(1983), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127868,32 +132228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [58208] = 14, + [57865] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1591), 1, + STATE(1638), 1, sym_ms_call_modifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1667), 1, + STATE(1705), 1, sym__declarator, - STATE(1745), 1, + STATE(1810), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(2023), 1, sym_init_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -127905,437 +132265,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [58259] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3625), 1, - sym_identifier, - ACTIONS(3629), 1, - anon_sym_LPAREN2, - ACTIONS(3631), 1, - anon_sym_defined, - ACTIONS(3649), 1, - anon_sym_RPAREN, - ACTIONS(3651), 1, - sym_number_literal, - ACTIONS(3633), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3635), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3639), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1427), 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, - [58302] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, + [57916] = 5, + ACTIONS(3633), 1, + anon_sym_LF, + ACTIONS(3693), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3663), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1526), 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, - [58342] = 11, - ACTIONS(3), 1, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3605), 1, - anon_sym_SLASH, - ACTIONS(3615), 1, - anon_sym_AMP, - ACTIONS(3669), 1, - anon_sym_PIPE, - ACTIONS(3601), 2, + STATE(1558), 1, + sym_preproc_argument_list, + ACTIONS(3637), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3617), 2, + 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(3619), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3623), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3667), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [58386] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3671), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1501), 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, - [58426] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3673), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1544), 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, - [58466] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3675), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1503), 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, - [58506] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3677), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1500), 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, - [58546] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3679), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1533), 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, - [58586] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3681), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1542), 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, - [58626] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3683), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1539), 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, - [58666] = 13, + [57949] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(2023), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3182), 1, - anon_sym_LBRACK, - STATE(1700), 1, + STATE(1641), 1, + sym_ms_call_modifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1697), 1, sym__declarator, - STATE(1788), 1, - sym_parameter_list, - STATE(1800), 1, - sym__abstract_declarator, - STATE(2409), 1, + STATE(1792), 1, + sym__declaration_declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(1927), 1, + sym_init_declarator, + STATE(2301), 1, sym_ms_based_modifier, - ACTIONS(3685), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1786), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1647), 5, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [58714] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3687), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1519), 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, - [58754] = 5, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58000] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 2, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, anon_sym_LPAREN2, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1383), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3689), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(3631), 1, 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, - [58786] = 9, + STATE(1647), 1, + sym_ms_call_modifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1779), 1, + sym__declarator, + STATE(1783), 1, + sym__declaration_declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(1983), 1, + sym_init_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1700), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58051] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3693), 1, + ACTIONS(3697), 1, + anon_sym_RPAREN, + ACTIONS(3699), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1475), 7, + STATE(1464), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128343,61 +132400,180 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58826] = 9, + [58094] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(3643), 1, + anon_sym_COMMA, + ACTIONS(3651), 1, + anon_sym_SLASH, ACTIONS(3653), 1, - sym_identifier, + anon_sym_PIPE_PIPE, ACTIONS(3655), 1, - anon_sym_LPAREN2, + anon_sym_AMP_AMP, ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3695), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, + anon_sym_PIPE, + ACTIONS(3659), 1, + anon_sym_CARET, + ACTIONS(3661), 1, + anon_sym_AMP, + ACTIONS(3701), 1, + anon_sym_RPAREN, + STATE(1971), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1513), 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, - [58866] = 9, + ACTIONS(3649), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3663), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3665), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58149] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, + anon_sym_STAR, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3655), 1, + STATE(1639), 1, + sym_ms_call_modifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1707), 1, + sym__declarator, + STATE(1786), 1, + sym__declaration_declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(2012), 1, + sym_init_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1700), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58200] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3412), 1, + anon_sym_STAR, + ACTIONS(3631), 1, + sym_identifier, + STATE(1649), 1, + sym_ms_call_modifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1779), 1, + sym__declarator, + STATE(1841), 1, + sym__declaration_declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(2133), 1, + sym_init_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1700), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58251] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, + anon_sym_STAR, + ACTIONS(3631), 1, + sym_identifier, + STATE(1629), 1, + sym_ms_call_modifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1779), 1, + sym__declarator, + STATE(1804), 1, + sym__declaration_declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(2048), 1, + sym_init_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1700), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58302] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3697), 1, + ACTIONS(3713), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1499), 7, + STATE(1585), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128405,30 +132581,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58906] = 9, + [58342] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3699), 1, + ACTIONS(3717), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1545), 7, + STATE(1504), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128436,16 +132612,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58946] = 3, + [58382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 5, + ACTIONS(3721), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3701), 15, + ACTIONS(3719), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -128461,119 +132637,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [58974] = 9, + [58410] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, ACTIONS(3705), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1547), 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, - [59014] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, ACTIONS(3707), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1534), 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, - [59054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3711), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1445), 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, - [59086] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3713), 1, + ACTIONS(3723), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1496), 7, + STATE(1555), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128581,30 +132668,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [59126] = 9, + [58450] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3715), 1, + ACTIONS(3725), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1473), 7, + STATE(1552), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128612,88 +132699,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [59166] = 9, + [58490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3655), 1, - anon_sym_LPAREN2, - ACTIONS(3657), 1, - anon_sym_defined, - ACTIONS(3717), 1, - sym_number_literal, - ACTIONS(3659), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3729), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3727), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1521), 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, - [59206] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3721), 2, - anon_sym_LPAREN2, anon_sym_STAR, - STATE(1383), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3719), 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, - [59238] = 9, + 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, + [58518] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3723), 1, + ACTIONS(3731), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1525), 7, + STATE(1542), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128701,30 +132755,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [59278] = 9, + [58558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3725), 1, + ACTIONS(3733), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1520), 7, + STATE(1495), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128732,23 +132786,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [59318] = 6, + [58598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3601), 2, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3669), 4, + ACTIONS(3729), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3667), 11, + ACTIONS(3727), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -128760,26 +132814,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [59352] = 7, + [58632] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3601), 2, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3623), 2, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3669), 4, + ACTIONS(3729), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3667), 9, + ACTIONS(3727), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -128789,118 +132843,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [59388] = 3, + [58668] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 5, + ACTIONS(3651), 1, anon_sym_SLASH, + ACTIONS(3647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3649), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3665), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3729), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(3727), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [58708] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, + anon_sym_SLASH, + ACTIONS(3647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3649), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3663), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3665), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2577), 15, + ACTIONS(3667), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3727), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [58750] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, + anon_sym_SLASH, + ACTIONS(3661), 1, + anon_sym_AMP, + ACTIONS(3729), 1, + anon_sym_PIPE, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(3663), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3665), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3727), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + [58794] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, + anon_sym_SLASH, + ACTIONS(3659), 1, + anon_sym_CARET, + ACTIONS(3661), 1, + anon_sym_AMP, + ACTIONS(3729), 1, + anon_sym_PIPE, + ACTIONS(3647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3649), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3665), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [59416] = 9, + ACTIONS(3727), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [58840] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3735), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1549), 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, + [58880] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3671), 1, + sym_identifier, + ACTIONS(3675), 1, + anon_sym_LPAREN2, + ACTIONS(3677), 1, + anon_sym_defined, + ACTIONS(3737), 1, + sym_number_literal, + ACTIONS(3679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3685), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1540), 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, + [58920] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3601), 2, + ACTIONS(3653), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3655), 1, + anon_sym_AMP_AMP, + ACTIONS(3657), 1, + anon_sym_PIPE, + ACTIONS(3659), 1, + anon_sym_CARET, + ACTIONS(3661), 1, + anon_sym_AMP, + ACTIONS(3647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3649), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3663), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3665), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3739), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58970] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3741), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1577), 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, + [59010] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3743), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3619), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3623), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3669), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3667), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [59456] = 10, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1575), 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, + [59050] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, - anon_sym_SLASH, - ACTIONS(3601), 2, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3745), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3619), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3623), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3669), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3667), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [59498] = 9, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1541), 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, + [59090] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3727), 1, + ACTIONS(3747), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1435), 7, + STATE(1568), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -128908,119 +133195,116 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [59538] = 12, + [59130] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, - anon_sym_SLASH, - ACTIONS(3613), 1, - anon_sym_CARET, - ACTIONS(3615), 1, - anon_sym_AMP, - ACTIONS(3669), 1, - anon_sym_PIPE, - ACTIONS(3601), 2, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3749), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3619), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3623), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3667), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [59584] = 12, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1562), 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, + [59170] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3611), 1, + ACTIONS(3657), 1, anon_sym_PIPE, - ACTIONS(3613), 1, + ACTIONS(3659), 1, anon_sym_CARET, - ACTIONS(3615), 1, + ACTIONS(3661), 1, anon_sym_AMP, - ACTIONS(3601), 2, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3617), 2, + ACTIONS(3663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3619), 2, + ACTIONS(3665), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3621), 2, + ACTIONS(3667), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3623), 2, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3667), 4, + ACTIONS(3727), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [59630] = 13, + [59216] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3609), 1, + ACTIONS(3655), 1, anon_sym_AMP_AMP, - ACTIONS(3611), 1, + ACTIONS(3657), 1, anon_sym_PIPE, - ACTIONS(3613), 1, + ACTIONS(3659), 1, anon_sym_CARET, - ACTIONS(3615), 1, + ACTIONS(3661), 1, anon_sym_AMP, - ACTIONS(3601), 2, + ACTIONS(3647), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3617), 2, + ACTIONS(3663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3619), 2, + ACTIONS(3665), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3621), 2, + ACTIONS(3667), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3623), 2, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3667), 3, + ACTIONS(3727), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [59678] = 3, + [59264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 5, + ACTIONS(2581), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3667), 15, + ACTIONS(2583), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -129036,20 +133320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [59706] = 5, + [59292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3651), 1, anon_sym_SLASH, - ACTIONS(3603), 2, + ACTIONS(3649), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3669), 4, + ACTIONS(3729), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3667), 13, + ACTIONS(3727), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -129063,16 +133347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [59738] = 3, + [59324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 5, + ACTIONS(3753), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3729), 15, + ACTIONS(3751), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -129088,143 +133372,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [59766] = 5, + [59352] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 2, + ACTIONS(3671), 1, + sym_identifier, + ACTIONS(3675), 1, anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1457), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3733), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(3677), 1, + anon_sym_defined, + ACTIONS(3755), 1, + sym_number_literal, + ACTIONS(3679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3685), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1574), 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, + [59392] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, 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, - [59798] = 14, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3757), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1543), 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, + [59432] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, - anon_sym_SLASH, - ACTIONS(3607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3609), 1, - anon_sym_AMP_AMP, - ACTIONS(3611), 1, - anon_sym_PIPE, - ACTIONS(3613), 1, - anon_sym_CARET, - ACTIONS(3615), 1, - anon_sym_AMP, - ACTIONS(3601), 2, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3759), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3619), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3623), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3737), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59848] = 3, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1546), 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, + [59472] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3739), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3761), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 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, - [59876] = 3, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1553), 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, + [59512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3743), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3763), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 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, - [59904] = 9, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1565), 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, + [59552] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3747), 1, + ACTIONS(3765), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1470), 7, + STATE(1567), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129232,30 +133558,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [59944] = 9, + [59592] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3749), 1, + ACTIONS(3767), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1506), 7, + STATE(1572), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129263,30 +133589,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [59984] = 9, + [59632] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3751), 1, + ACTIONS(3769), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1469), 7, + STATE(1580), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129294,30 +133620,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60024] = 9, + [59672] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3753), 1, + ACTIONS(3771), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1468), 7, + STATE(1582), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129325,30 +133651,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60064] = 9, + [59712] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3755), 1, + ACTIONS(3773), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1538), 7, + STATE(1584), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129356,30 +133682,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60104] = 9, + [59752] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3757), 1, + ACTIONS(3775), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1527), 7, + STATE(1587), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129387,30 +133713,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60144] = 9, + [59792] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3759), 1, + ACTIONS(3777), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1528), 7, + STATE(1489), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129418,30 +133744,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60184] = 9, + [59832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3781), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1537), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3779), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(3655), 1, + 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, + [59864] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3671), 1, + sym_identifier, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3761), 1, + ACTIONS(3783), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1529), 7, + STATE(1484), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129449,30 +133802,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60224] = 9, + [59904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3763), 1, + ACTIONS(3785), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1530), 7, + STATE(1488), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129480,30 +133833,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60264] = 9, + [59944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3765), 1, + ACTIONS(3787), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1532), 7, + STATE(1547), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129511,30 +133864,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60304] = 9, + [59984] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3767), 1, + ACTIONS(3789), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1535), 7, + STATE(1564), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129542,30 +133895,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60344] = 9, + [60024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3769), 1, + ACTIONS(3791), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1467), 7, + STATE(1502), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129573,30 +133926,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60384] = 9, + [60064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3771), 1, + ACTIONS(3793), 1, + sym_number_literal, + ACTIONS(3679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3685), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1501), 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, + [60104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3795), 1, + sym_number_literal, + ACTIONS(3709), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3711), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3715), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1591), 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, + [60144] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, + anon_sym_defined, + ACTIONS(3797), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1536), 7, + STATE(1560), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129604,30 +134019,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60424] = 9, + [60184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3773), 1, + ACTIONS(3799), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1522), 7, + STATE(1487), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129635,30 +134050,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60464] = 9, + [60224] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2071), 1, + anon_sym_LPAREN2, + ACTIONS(2073), 1, + anon_sym_STAR, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3220), 1, + anon_sym_LBRACK, + STATE(1743), 1, + sym__declarator, + STATE(1830), 1, + sym_parameter_list, + STATE(1832), 1, + sym__abstract_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + ACTIONS(3801), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1829), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1690), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [60272] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3775), 1, + ACTIONS(3803), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1466), 7, + STATE(1492), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129666,30 +134116,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60504] = 9, + [60312] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3671), 1, sym_identifier, - ACTIONS(3655), 1, + ACTIONS(3675), 1, anon_sym_LPAREN2, - ACTIONS(3657), 1, + ACTIONS(3677), 1, anon_sym_defined, - ACTIONS(3777), 1, + ACTIONS(3805), 1, sym_number_literal, - ACTIONS(3659), 2, + ACTIONS(3679), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3661), 2, + ACTIONS(3681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3665), 5, + ACTIONS(3685), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1537), 7, + STATE(1491), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129697,30 +134147,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60544] = 9, + [60352] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3779), 1, + ACTIONS(3807), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1460), 7, + STATE(1583), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129728,30 +134178,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60584] = 9, + [60392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3811), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3809), 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, + [60424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3781), 1, + ACTIONS(3813), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1461), 7, + STATE(1566), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129759,30 +134236,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60624] = 9, + [60464] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3783), 1, + ACTIONS(3815), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1463), 7, + STATE(1571), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129790,30 +134267,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60664] = 9, + [60504] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3625), 1, + ACTIONS(3703), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3705), 1, anon_sym_LPAREN2, - ACTIONS(3631), 1, + ACTIONS(3707), 1, anon_sym_defined, - ACTIONS(3785), 1, + ACTIONS(3817), 1, sym_number_literal, - ACTIONS(3633), 2, + ACTIONS(3709), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3635), 2, + ACTIONS(3711), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3639), 5, + ACTIONS(3715), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1464), 7, + STATE(1578), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -129821,87 +134298,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [60704] = 12, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_LF, - ACTIONS(3793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, - anon_sym_AMP_AMP, - ACTIONS(3797), 1, - anon_sym_PIPE, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_AMP, - ACTIONS(3789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3803), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3805), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60749] = 11, + [60544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, - sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3821), 2, anon_sym_LPAREN2, - ACTIONS(3360), 1, anon_sym_STAR, - STATE(874), 1, - sym__old_style_function_declarator, - STATE(1621), 1, - sym_ms_call_modifier, - STATE(1658), 1, - sym__declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [60792] = 5, + STATE(1532), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3819), 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, + [60576] = 5, ACTIONS(3), 1, sym_comment, - STATE(962), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3023), 2, + ACTIONS(3825), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3809), 4, + STATE(1421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3823), 7, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3020), 12, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -129910,118 +134352,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + [60608] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3671), 1, sym_identifier, - [60823] = 12, - ACTIONS(3595), 1, + ACTIONS(3675), 1, + anon_sym_LPAREN2, + ACTIONS(3677), 1, + anon_sym_defined, + ACTIONS(3827), 1, + sym_number_literal, + ACTIONS(3679), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3685), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1490), 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, + [60648] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, - anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3831), 5, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_LF, - ACTIONS(3789), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3829), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, - anon_sym_STAR, + [60676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3835), 5, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3805), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_LT, + ACTIONS(3833), 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, - [60868] = 12, - ACTIONS(3595), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60704] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3837), 1, + anon_sym_LF, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3815), 1, - anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60913] = 12, - ACTIONS(3595), 1, + [60749] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3817), 1, + ACTIONS(3859), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60958] = 3, - ACTIONS(2577), 1, - anon_sym_LF, - ACTIONS(3595), 1, + [60794] = 4, + ACTIONS(3695), 1, sym_comment, - ACTIONS(2575), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3727), 1, + anon_sym_LF, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3729), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -130035,53 +134524,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [60985] = 12, - ACTIONS(3595), 1, + [60823] = 3, + ACTIONS(3408), 1, + anon_sym_LF, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3406), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3819), 1, - anon_sym_LF, - ACTIONS(3789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61030] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60850] = 5, ACTIONS(3), 1, sym_comment, - STATE(1518), 1, + STATE(1550), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2901), 2, + ACTIONS(2978), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3821), 4, + ACTIONS(3861), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2899), 12, + ACTIONS(2976), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -130094,24 +134574,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [61061] = 7, + [60881] = 3, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3727), 1, + anon_sym_LF, + ACTIONS(3729), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60908] = 12, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3845), 1, + anon_sym_AMP_AMP, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(3849), 1, + anon_sym_CARET, + ACTIONS(3851), 1, + anon_sym_AMP, + ACTIONS(3864), 1, + anon_sym_LF, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3853), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3841), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3855), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - sym_identifier, - ACTIONS(3830), 1, - sym_primitive_type, - STATE(1498), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2908), 2, - anon_sym_LPAREN2, + ACTIONS(2033), 1, anon_sym_STAR, - ACTIONS(3827), 4, + ACTIONS(3049), 1, + anon_sym_LPAREN2, + STATE(1551), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2910), 10, + ACTIONS(2017), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -130122,53 +134656,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [61096] = 12, - ACTIONS(3595), 1, + sym_primitive_type, + sym_identifier, + [60986] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3833), 1, + ACTIONS(3869), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61141] = 5, + [61031] = 5, ACTIONS(3), 1, sym_comment, - STATE(962), 1, + STATE(1001), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2986), 2, + ACTIONS(3066), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3835), 4, + ACTIONS(3871), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2984), 12, + ACTIONS(3064), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -130181,20 +134717,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [61172] = 5, + [61062] = 5, ACTIONS(3), 1, sym_comment, - STATE(962), 1, + STATE(1001), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2974), 2, + ACTIONS(3070), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3838), 4, + ACTIONS(3874), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2972), 12, + ACTIONS(3068), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -130207,98 +134743,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [61203] = 3, - ACTIONS(3386), 1, - anon_sym_LF, - ACTIONS(3595), 1, + [61093] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3651), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3653), 1, anon_sym_PIPE_PIPE, + ACTIONS(3655), 1, anon_sym_AMP_AMP, + ACTIONS(3657), 1, anon_sym_PIPE, + ACTIONS(3659), 1, anon_sym_CARET, + ACTIONS(3661), 1, anon_sym_AMP, + ACTIONS(3877), 1, + anon_sym_RPAREN, + ACTIONS(3647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3649), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3665), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [61230] = 3, - ACTIONS(3382), 1, - anon_sym_LF, - ACTIONS(3595), 1, + [61142] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3380), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3727), 1, + anon_sym_LF, + ACTIONS(3729), 1, anon_sym_PIPE_PIPE, + ACTIONS(3845), 1, anon_sym_AMP_AMP, + ACTIONS(3847), 1, anon_sym_PIPE, + ACTIONS(3849), 1, anon_sym_CARET, + ACTIONS(3851), 1, anon_sym_AMP, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [61257] = 3, - ACTIONS(3378), 1, - anon_sym_LF, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3376), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61284] = 11, + [61187] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(855), 1, + STATE(910), 1, sym__old_style_function_declarator, - STATE(1609), 1, + STATE(1665), 1, sym_ms_call_modifier, - STATE(1650), 1, + STATE(1701), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -130311,53 +134843,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [61327] = 12, - ACTIONS(3595), 1, + [61230] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3841), 1, + ACTIONS(3879), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61372] = 5, + [61275] = 5, ACTIONS(3), 1, sym_comment, - STATE(1508), 1, + STATE(1592), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3032), 2, + ACTIONS(3094), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3843), 4, + ACTIONS(3881), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3030), 12, + ACTIONS(3092), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -130370,20 +134902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [61403] = 5, + [61306] = 5, ACTIONS(3), 1, sym_comment, - STATE(1507), 1, + STATE(1588), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2946), 2, + ACTIONS(3088), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3846), 4, + ACTIONS(3884), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2944), 12, + ACTIONS(3086), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -130396,12 +134928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [61434] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3701), 1, + [61337] = 3, + ACTIONS(3404), 1, anon_sym_LF, - ACTIONS(3703), 18, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3402), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -130420,47 +134952,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [61461] = 6, + [61364] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_STAR, - ACTIONS(2888), 1, - anon_sym_LPAREN2, - STATE(1540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3849), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1967), 12, - anon_sym___extension__, + ACTIONS(2075), 1, 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, + ACTIONS(3212), 1, sym_identifier, - [61494] = 5, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, + anon_sym_STAR, + STATE(898), 1, + sym__old_style_function_declarator, + STATE(1655), 1, + sym_ms_call_modifier, + STATE(1713), 1, + sym__declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1690), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [61407] = 12, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3845), 1, + anon_sym_AMP_AMP, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(3849), 1, + anon_sym_CARET, + ACTIONS(3851), 1, + anon_sym_AMP, + ACTIONS(3887), 1, + anon_sym_LF, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3853), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3841), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3855), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [61452] = 5, ACTIONS(3), 1, sym_comment, - STATE(962), 1, + STATE(1001), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2994), 2, + ACTIONS(3083), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3852), 4, + ACTIONS(3889), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2992), 12, + ACTIONS(3080), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -130473,160 +135043,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [61525] = 12, - ACTIONS(3595), 1, + [61483] = 12, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3845), 1, + anon_sym_AMP_AMP, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(3849), 1, + anon_sym_CARET, + ACTIONS(3851), 1, + anon_sym_AMP, + ACTIONS(3893), 1, + anon_sym_LF, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3853), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3841), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3855), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [61528] = 3, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_LF, + ACTIONS(3753), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61555] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3855), 1, + ACTIONS(3895), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61570] = 12, - ACTIONS(3595), 1, + [61600] = 11, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, - anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3727), 1, + anon_sym_LF, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3857), 1, - anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3729), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61615] = 12, - ACTIONS(3595), 1, + [61643] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3859), 1, + ACTIONS(3897), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61660] = 14, - ACTIONS(3), 1, + [61688] = 10, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3727), 1, + anon_sym_LF, + ACTIONS(3849), 1, + anon_sym_CARET, + ACTIONS(3851), 1, + anon_sym_AMP, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3853), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3729), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3841), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3607), 1, + anon_sym_PERCENT, + ACTIONS(3855), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [61729] = 12, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3609), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3611), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3613), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3615), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3861), 1, - anon_sym_RPAREN, - ACTIONS(3601), 2, + ACTIONS(3899), 1, + anon_sym_LF, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3617), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3619), 2, + ACTIONS(3857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3841), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3855), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3623), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61709] = 11, + anon_sym_LT, + [61774] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(875), 1, + STATE(919), 1, sym__old_style_function_declarator, - STATE(1607), 1, + STATE(1661), 1, sym_ms_call_modifier, - STATE(1652), 1, + STATE(1709), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -130639,211 +135294,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [61752] = 3, - ACTIONS(3595), 1, + [61817] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LF, - ACTIONS(3731), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + STATE(903), 1, + sym__old_style_function_declarator, + STATE(1670), 1, + sym_ms_call_modifier, + STATE(1694), 1, + sym__declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1690), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [61860] = 12, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, + ACTIONS(3845), 1, anon_sym_AMP_AMP, + ACTIONS(3847), 1, anon_sym_PIPE, + ACTIONS(3849), 1, anon_sym_CARET, + ACTIONS(3851), 1, anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_LF, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3841), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61779] = 4, - ACTIONS(3595), 1, + [61905] = 9, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3727), 1, anon_sym_LF, - ACTIONS(3791), 3, + ACTIONS(3851), 1, + anon_sym_AMP, + ACTIONS(3839), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3853), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3729), 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(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61808] = 3, - ACTIONS(3595), 1, + [61944] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_LF, - ACTIONS(3669), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, anon_sym_STAR, + STATE(900), 1, + sym__old_style_function_declarator, + STATE(1662), 1, + sym_ms_call_modifier, + STATE(1712), 1, + sym__declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1690), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [61987] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3653), 1, anon_sym_PIPE_PIPE, + ACTIONS(3655), 1, anon_sym_AMP_AMP, + ACTIONS(3657), 1, anon_sym_PIPE, + ACTIONS(3659), 1, anon_sym_CARET, + ACTIONS(3661), 1, anon_sym_AMP, + ACTIONS(3903), 1, + anon_sym_RPAREN, + ACTIONS(3647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3649), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3665), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [61835] = 12, - ACTIONS(3595), 1, + [62036] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_LF, - ACTIONS(3669), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3789), 2, + ACTIONS(3905), 1, + anon_sym_LF, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61880] = 11, - ACTIONS(3595), 1, + [62081] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3829), 1, anon_sym_LF, - ACTIONS(3797), 1, - anon_sym_PIPE, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_AMP, - ACTIONS(3669), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3789), 2, + ACTIONS(3831), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 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, - [61923] = 10, - ACTIONS(3595), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62108] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_LF, - ACTIONS(3799), 1, + ACTIONS(3843), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3845), 1, + anon_sym_AMP_AMP, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3789), 2, + ACTIONS(3907), 1, + anon_sym_LF, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3669), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [61964] = 9, - ACTIONS(3595), 1, + [62153] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3833), 1, anon_sym_LF, - ACTIONS(3801), 1, - anon_sym_AMP, - ACTIONS(3789), 2, + ACTIONS(3835), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3805), 4, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [62003] = 3, - ACTIONS(3374), 1, - anon_sym_LF, - ACTIONS(3595), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62180] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3372), 18, + ACTIONS(3719), 1, + anon_sym_LF, + ACTIONS(3721), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -130862,122 +135594,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [62030] = 8, - ACTIONS(3595), 1, + [62207] = 8, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3727), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3669), 5, + ACTIONS(3729), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [62067] = 12, - ACTIONS(3595), 1, + [62244] = 3, + ACTIONS(2583), 1, + anon_sym_LF, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(2581), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3863), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62271] = 7, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3727), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [62112] = 12, - ACTIONS(3595), 1, + ACTIONS(3729), 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, + [62306] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3865), 1, + ACTIONS(3909), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [62157] = 7, - ACTIONS(3595), 1, + [62351] = 6, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3727), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3669), 7, + ACTIONS(3729), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -130985,22 +135731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [62192] = 6, - ACTIONS(3595), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [62384] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3727), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 11, + ACTIONS(3729), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -131012,19 +135759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [62225] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3667), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62415] = 3, + ACTIONS(3416), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3669), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -131038,86 +135785,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [62256] = 12, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, - anon_sym_AMP_AMP, - ACTIONS(3797), 1, - anon_sym_PIPE, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_AMP, - ACTIONS(3867), 1, - anon_sym_LF, - ACTIONS(3789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3803), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3805), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [62301] = 12, - ACTIONS(3595), 1, + [62442] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3799), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3801), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3869), 1, + ACTIONS(3911), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3791), 3, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [62346] = 5, + [62487] = 5, ACTIONS(3), 1, sym_comment, - STATE(962), 1, + STATE(1001), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2960), 2, + ACTIONS(2934), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3871), 4, + ACTIONS(3913), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2958), 12, + ACTIONS(2932), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -131130,237 +135844,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [62377] = 11, + [62518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3916), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3922), 1, + sym_primitive_type, + STATE(1561), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3007), 2, anon_sym_LPAREN2, - ACTIONS(3360), 1, anon_sym_STAR, - STATE(880), 1, - sym__old_style_function_declarator, - STATE(1620), 1, - sym_ms_call_modifier, - STATE(1666), 1, - sym__declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [62420] = 12, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, - anon_sym_AMP_AMP, - ACTIONS(3797), 1, - anon_sym_PIPE, - ACTIONS(3799), 1, - anon_sym_CARET, - ACTIONS(3801), 1, - anon_sym_AMP, - ACTIONS(3874), 1, + ACTIONS(3919), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3009), 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, + [62553] = 3, + ACTIONS(3420), 1, anon_sym_LF, - ACTIONS(3789), 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(3418), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3803), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3805), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [62465] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, - sym_identifier, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - STATE(867), 1, - sym__old_style_function_declarator, - STATE(1618), 1, - sym_ms_call_modifier, - STATE(1661), 1, - sym__declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [62508] = 12, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3876), 1, - anon_sym_LF, - ACTIONS(3789), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3807), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3791), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [62553] = 14, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62580] = 12, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3605), 1, - anon_sym_SLASH, - ACTIONS(3607), 1, + ACTIONS(3843), 1, anon_sym_PIPE_PIPE, - ACTIONS(3609), 1, + ACTIONS(3845), 1, anon_sym_AMP_AMP, - ACTIONS(3611), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(3613), 1, + ACTIONS(3849), 1, anon_sym_CARET, - ACTIONS(3615), 1, + ACTIONS(3851), 1, anon_sym_AMP, - ACTIONS(3878), 1, - anon_sym_RPAREN, - ACTIONS(3601), 2, + ACTIONS(3925), 1, + anon_sym_LF, + ACTIONS(3839), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3603), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3617), 2, + ACTIONS(3853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3619), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3621), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3623), 2, + ACTIONS(3857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [62602] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(3739), 1, - anon_sym_LF, - ACTIONS(3741), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3841), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3855), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62629] = 3, - ACTIONS(3595), 1, + [62625] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, - anon_sym_LF, - ACTIONS(3745), 18, - anon_sym_DASH, - anon_sym_PLUS, + STATE(1001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2924), 2, + anon_sym_LPAREN2, 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, + ACTIONS(3927), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2922), 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, [62656] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1624), 1, + STATE(1662), 1, sym_ms_call_modifier, - STATE(1714), 1, + STATE(1755), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -131373,29 +135985,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [62696] = 10, + [62696] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, - sym_identifier, - ACTIONS(3358), 1, + ACTIONS(2071), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(2073), 1, anon_sym_STAR, - STATE(1618), 1, - sym_ms_call_modifier, - STATE(1673), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3220), 1, + anon_sym_LBRACK, + STATE(1775), 1, sym__declarator, - STATE(2409), 1, + STATE(1830), 1, + sym_parameter_list, + STATE(1920), 1, + sym__abstract_declarator, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1829), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, + [62740] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3422), 1, + sym_identifier, + ACTIONS(3424), 1, + anon_sym_LPAREN2, + ACTIONS(3426), 1, + anon_sym_STAR, + STATE(1660), 1, + sym_ms_call_modifier, + STATE(1765), 1, + sym__field_declarator, + STATE(2388), 1, + sym_ms_based_modifier, + STATE(1757), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -131403,24 +136047,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [62736] = 10, + [62780] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1609), 1, + STATE(1661), 1, sym_ms_call_modifier, - STATE(1704), 1, + STATE(1746), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -131433,24 +136077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [62776] = 10, + [62820] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1607), 1, + STATE(1655), 1, sym_ms_call_modifier, - STATE(1678), 1, + STATE(1725), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -131463,61 +136107,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [62816] = 12, + [62860] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - anon_sym_LPAREN2, - ACTIONS(2023), 1, - anon_sym_STAR, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3182), 1, - anon_sym_LBRACK, - STATE(1724), 1, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, + anon_sym_STAR, + STATE(1671), 1, + sym_ms_call_modifier, + STATE(1782), 1, sym__declarator, - STATE(1788), 1, - sym_parameter_list, - STATE(1832), 1, - sym__abstract_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1786), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62860] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LPAREN2, - ACTIONS(3356), 1, - anon_sym_STAR, - STATE(1614), 1, - sym_ms_call_modifier, - STATE(1729), 1, - sym__field_declarator, - STATE(2385), 1, - sym_ms_based_modifier, - STATE(1710), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -131528,21 +136140,21 @@ static const uint16_t ts_small_parse_table[] = { [62900] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1620), 1, + STATE(1670), 1, sym_ms_call_modifier, - STATE(1689), 1, + STATE(1737), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -131558,21 +136170,21 @@ static const uint16_t ts_small_parse_table[] = { [62940] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1621), 1, + STATE(1665), 1, sym_ms_call_modifier, - STATE(1709), 1, + STATE(1742), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -131585,148 +136197,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [62980] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3098), 1, - anon_sym_const, - ACTIONS(3105), 1, - anon_sym_LBRACE, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(3882), 1, - anon_sym_COLON, - STATE(1040), 1, - sym_attribute_specifier, - STATE(1391), 1, - sym_enumerator_list, - ACTIONS(3100), 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, - [63015] = 11, + [62980] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1914), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [63056] = 11, + [63021] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1805), 1, + STATE(1889), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [63097] = 11, + [63062] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1874), 1, + STATE(1864), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, + [63103] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3148), 1, + anon_sym_const, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(3932), 1, + anon_sym_COLON, + STATE(1066), 1, + sym_attribute_specifier, + STATE(1437), 1, + sym_enumerator_list, + ACTIONS(3150), 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, [63138] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1842), 1, + STATE(1919), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -131735,28 +136347,28 @@ static const uint16_t ts_small_parse_table[] = { [63179] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1816), 1, + STATE(1859), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -131765,28 +136377,28 @@ static const uint16_t ts_small_parse_table[] = { [63220] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1845), 1, + STATE(1891), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -131795,28 +136407,28 @@ static const uint16_t ts_small_parse_table[] = { [63261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1837), 1, + STATE(1880), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -131825,28 +136437,28 @@ static const uint16_t ts_small_parse_table[] = { [63302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1870), 1, + STATE(1861), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -131855,28 +136467,28 @@ static const uint16_t ts_small_parse_table[] = { [63343] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1831), 1, + STATE(1901), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -131885,212 +136497,238 @@ static const uint16_t ts_small_parse_table[] = { [63384] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1631), 1, + STATE(1693), 1, sym__type_declarator, - STATE(1876), 1, + STATE(1906), 1, sym__type_definition_declarators, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [63425] = 11, + [63425] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3885), 1, + ACTIONS(3935), 1, sym_identifier, - ACTIONS(3891), 1, + ACTIONS(3939), 1, anon_sym_LBRACK, - STATE(1580), 1, + STATE(1619), 1, sym_gnu_asm_expression, - STATE(1628), 1, - sym_attribute_specifier, - STATE(1715), 1, - aux_sym_type_definition_repeat1, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3887), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1571), 2, + STATE(1625), 3, sym_preproc_call_expression, + sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3889), 4, + ACTIONS(3937), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [63465] = 10, + [63459] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1730), 1, + STATE(1773), 1, sym__type_declarator, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [63503] = 8, + [63497] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3885), 1, + ACTIONS(3935), 1, sym_identifier, - ACTIONS(3891), 1, + ACTIONS(3939), 1, anon_sym_LBRACK, - STATE(1573), 1, + STATE(1617), 1, sym_gnu_asm_expression, + STATE(1658), 1, + sym_attribute_specifier, + STATE(1761), 1, + aux_sym_type_definition_repeat1, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - STATE(1571), 3, + ACTIONS(3941), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1625), 2, sym_preproc_call_expression, - sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3889), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3937), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, [63537] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3209), 1, + ACTIONS(3259), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3213), 1, + ACTIONS(3263), 1, anon_sym_STAR, - ACTIONS(3217), 1, + ACTIONS(3267), 1, sym_primitive_type, - STATE(1655), 1, + STATE(1717), 1, sym__type_declarator, - STATE(2160), 1, + STATE(2394), 1, sym_ms_based_modifier, - ACTIONS(3215), 4, + ACTIONS(3265), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1728), 5, + STATE(1763), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [63575] = 6, + [63575] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, + sym_identifier, + ACTIONS(3945), 1, + aux_sym_preproc_if_token2, + ACTIONS(3947), 1, + aux_sym_preproc_else_token1, + ACTIONS(3949), 1, + aux_sym_preproc_elif_token1, + STATE(1653), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1666), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1759), 1, + sym_enumerator, + ACTIONS(3951), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2396), 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, + STATE(2433), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [63614] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3885), 1, + ACTIONS(3935), 1, sym_identifier, - ACTIONS(3895), 3, + ACTIONS(3957), 1, anon_sym_LBRACK, + STATE(1658), 1, + sym_attribute_specifier, + STATE(1760), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3953), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3959), 2, anon_sym_asm, anon_sym___asm__, - STATE(1578), 3, + STATE(1621), 2, sym_preproc_call_expression, - sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3893), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3955), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [63604] = 12, + [63651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3961), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3966), 1, + anon_sym___attribute__, + ACTIONS(3969), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1618), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3964), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3356), 1, - anon_sym_STAR, - ACTIONS(3897), 1, anon_sym_SEMI, - STATE(1605), 1, - sym__field_declarator, - STATE(1915), 1, - sym__field_declaration_declarator, - STATE(2126), 1, - sym_attribute_specifier, - STATE(2385), 1, - sym_ms_based_modifier, - STATE(1710), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [63645] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [63680] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3885), 1, + ACTIONS(3935), 1, sym_identifier, - ACTIONS(3895), 3, + ACTIONS(3957), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1575), 3, + STATE(1621), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3893), 7, + ACTIONS(3955), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -132098,51 +136736,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [63674] = 12, + [63709] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3426), 1, anon_sym_STAR, - ACTIONS(3899), 1, + ACTIONS(3971), 1, anon_sym_SEMI, - STATE(1605), 1, + STATE(1650), 1, sym__field_declarator, - STATE(2018), 1, + STATE(2028), 1, sym__field_declaration_declarator, - STATE(2385), 1, - sym_ms_based_modifier, - STATE(2412), 1, + STATE(2209), 1, sym_attribute_specifier, - STATE(1710), 5, + STATE(2388), 1, + sym_ms_based_modifier, + STATE(1757), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [63715] = 6, + [63750] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3885), 1, + ACTIONS(3935), 1, sym_identifier, - ACTIONS(3903), 3, + ACTIONS(3975), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1578), 3, + STATE(1618), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3901), 7, + ACTIONS(3973), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -132150,153 +136788,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [63744] = 12, + [63779] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3426), 1, anon_sym_STAR, - ACTIONS(3905), 1, + ACTIONS(3977), 1, anon_sym_SEMI, - STATE(1605), 1, + STATE(1650), 1, sym__field_declarator, - STATE(1939), 1, + STATE(2063), 1, sym__field_declaration_declarator, - STATE(2385), 1, + STATE(2388), 1, sym_ms_based_modifier, - STATE(2389), 1, + STATE(2456), 1, sym_attribute_specifier, - STATE(1710), 5, + STATE(1757), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [63785] = 12, + [63820] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3426), 1, anon_sym_STAR, - ACTIONS(3907), 1, + ACTIONS(3979), 1, anon_sym_SEMI, - STATE(1605), 1, + STATE(1650), 1, sym__field_declarator, - STATE(2015), 1, + STATE(1963), 1, sym__field_declaration_declarator, - STATE(2270), 1, + STATE(2364), 1, sym_attribute_specifier, - STATE(2385), 1, + STATE(2388), 1, sym_ms_based_modifier, - STATE(1710), 5, + STATE(1757), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [63826] = 6, + [63861] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, - sym_identifier, - ACTIONS(3914), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3917), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1578), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3912), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3422), 1, + sym_identifier, + ACTIONS(3424), 1, anon_sym_LPAREN2, + ACTIONS(3426), 1, + anon_sym_STAR, + ACTIONS(3981), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [63855] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3919), 1, - sym_identifier, - ACTIONS(3921), 1, - aux_sym_preproc_if_token2, - ACTIONS(3923), 1, - aux_sym_preproc_else_token1, - ACTIONS(3925), 1, - aux_sym_preproc_elif_token1, - STATE(1625), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1627), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1735), 1, - sym_enumerator, - ACTIONS(3927), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2233), 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, - STATE(2234), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [63894] = 10, + STATE(1650), 1, + sym__field_declarator, + STATE(1972), 1, + sym__field_declaration_declarator, + STATE(2388), 1, + sym_ms_based_modifier, + STATE(2389), 1, + sym_attribute_specifier, + STATE(1757), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [63902] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3885), 1, + ACTIONS(3935), 1, sym_identifier, - ACTIONS(3895), 1, + ACTIONS(3957), 3, anon_sym_LBRACK, - STATE(1628), 1, - sym_attribute_specifier, - STATE(1726), 1, - aux_sym_type_definition_repeat1, - ACTIONS(3929), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3931), 2, anon_sym_asm, anon_sym___asm__, - STATE(1575), 2, + STATE(1618), 3, sym_preproc_call_expression, + sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3893), 4, + ACTIONS(3955), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, [63931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 1, + ACTIONS(3985), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3988), 1, anon_sym_LBRACK, - STATE(1581), 2, + STATE(1626), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3933), 10, + ACTIONS(3983), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -132307,125 +136919,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [63957] = 11, + [63957] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3990), 1, sym_identifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1773), 1, - sym__declarator, - STATE(1803), 1, - sym__declaration_declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1651), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [63994] = 11, + ACTIONS(3992), 1, + aux_sym_preproc_if_token1, + ACTIONS(3996), 1, + anon_sym_RBRACE, + ACTIONS(3994), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2083), 2, + sym_preproc_call, + sym_enumerator, + STATE(2477), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1630), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [63990] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1757), 1, - sym__declaration_declarator, - STATE(1773), 1, + STATE(1720), 1, sym__declarator, - STATE(1844), 1, + STATE(1785), 1, + sym__declaration_declarator, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64031] = 11, + [64027] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, - sym_function_declarator, STATE(1690), 1, - sym__declarator, - STATE(1760), 1, + sym_function_declarator, + STATE(1794), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1817), 1, + sym__declarator, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64068] = 11, + [64064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3990), 1, sym_identifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1753), 1, - sym__declaration_declarator, - STATE(1773), 1, - sym__declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1651), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64105] = 7, + ACTIONS(3992), 1, + aux_sym_preproc_if_token1, + ACTIONS(3998), 1, + anon_sym_RBRACE, + ACTIONS(3994), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2096), 2, + sym_preproc_call, + sym_enumerator, + STATE(2352), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1669), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [64097] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3940), 7, + ACTIONS(4000), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -132433,16 +137041,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [64134] = 3, + [64126] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, + anon_sym_STAR, + ACTIONS(3631), 1, + sym_identifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1790), 1, + sym__declaration_declarator, + STATE(1817), 1, + sym__declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1700), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 5, + ACTIONS(3199), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3948), 8, + ACTIONS(3192), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -132451,38 +137085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [64155] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, - anon_sym_LBRACK, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3950), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, [64184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 5, + ACTIONS(3232), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3158), 8, + ACTIONS(3225), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -132491,261 +137103,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [64205] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3952), 1, - sym_identifier, - ACTIONS(3954), 1, - aux_sym_preproc_if_token1, - ACTIONS(3958), 1, - anon_sym_RBRACE, - ACTIONS(3956), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2032), 2, - sym_preproc_call, - sym_enumerator, - STATE(2392), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1616), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [64238] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - ACTIONS(3581), 1, - sym_identifier, - STATE(1647), 1, - sym_function_declarator, - STATE(1694), 1, - sym__declarator, - STATE(1753), 1, - sym__declaration_declarator, - STATE(1844), 1, - sym__function_declaration_declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1651), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [64275] = 11, + [64205] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1756), 1, + STATE(1801), 1, sym__declaration_declarator, - STATE(1773), 1, + STATE(1817), 1, sym__declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64312] = 3, + [64242] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 5, - anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4004), 1, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3146), 8, + STATE(1612), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4006), 7, 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, - [64333] = 5, + anon_sym_asm, + anon_sym___asm__, + [64271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3635), 1, anon_sym_LPAREN2, - STATE(1273), 1, + STATE(1306), 1, sym_preproc_argument_list, - ACTIONS(3960), 5, + ACTIONS(4008), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3962), 6, + ACTIONS(4010), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [64358] = 7, + [64296] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, - anon_sym_LBRACK, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3964), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [64387] = 11, + ACTIONS(3412), 1, + anon_sym_STAR, + ACTIONS(3631), 1, + sym_identifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1753), 1, + sym__declarator, + STATE(1801), 1, + sym__declaration_declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1700), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64333] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1754), 1, - sym__declaration_declarator, - STATE(1773), 1, + STATE(1736), 1, sym__declarator, - STATE(1844), 1, + STATE(1821), 1, + sym__declaration_declarator, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64424] = 11, + [64370] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1763), 1, + STATE(1785), 1, sym__declaration_declarator, - STATE(1773), 1, + STATE(1817), 1, sym__declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64461] = 11, + [64407] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1769), 1, - sym__declaration_declarator, - STATE(1773), 1, + STATE(1722), 1, sym__declarator, - STATE(1844), 1, + STATE(1790), 1, + sym__declaration_declarator, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64498] = 11, + [64444] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4004), 1, + anon_sym_LBRACK, + STATE(1612), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4012), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [64473] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1697), 1, + STATE(1734), 1, sym__declarator, - STATE(1769), 1, + STATE(1822), 1, + sym__declaration_declarator, + STATE(1890), 1, + sym__function_declaration_declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1700), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64510] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3410), 1, + anon_sym_LPAREN2, + ACTIONS(3412), 1, + anon_sym_STAR, + ACTIONS(3631), 1, + sym_identifier, + STATE(1690), 1, + sym_function_declarator, + STATE(1813), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1817), 1, + sym__declarator, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64535] = 7, + [64547] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3966), 7, + ACTIONS(4014), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -132753,104 +137371,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [64564] = 11, + [64576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1685), 1, + STATE(1817), 1, sym__declarator, - STATE(1756), 1, + STATE(1821), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [64601] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3952), 1, - sym_identifier, - ACTIONS(3954), 1, - aux_sym_preproc_if_token1, - ACTIONS(3968), 1, - anon_sym_RBRACE, - ACTIONS(3956), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2082), 2, - sym_preproc_call, - sym_enumerator, - STATE(2239), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1590), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [64634] = 11, + [64613] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1760), 1, - sym__declaration_declarator, - STATE(1773), 1, + STATE(1817), 1, sym__declarator, - STATE(1844), 1, + STATE(1822), 1, + sym__declaration_declarator, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, + [64650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4016), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(4018), 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, [64671] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - ACTIONS(3581), 1, + ACTIONS(3631), 1, sym_identifier, - STATE(1647), 1, + STATE(1690), 1, sym_function_declarator, - STATE(1693), 1, + STATE(1817), 1, sym__declarator, - STATE(1757), 1, + STATE(1848), 1, sym__declaration_declarator, - STATE(1844), 1, + STATE(1890), 1, sym__function_declaration_declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1651), 4, + STATE(1700), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -132860,24 +137472,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3970), 1, + ACTIONS(4020), 1, anon_sym_COMMA, - ACTIONS(3974), 1, + ACTIONS(4024), 1, anon_sym_LBRACK, - ACTIONS(3976), 1, + ACTIONS(4026), 1, anon_sym_COLON, - STATE(1706), 1, + STATE(1735), 1, sym_parameter_list, - STATE(1811), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1854), 1, + STATE(1865), 1, sym_bitfield_clause, - ACTIONS(3972), 2, + STATE(1877), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4022), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1642), 2, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, [64744] = 5, @@ -132885,12 +137497,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3980), 1, + ACTIONS(4030), 1, anon_sym_LBRACK, - STATE(1581), 2, + STATE(1626), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3978), 8, + ACTIONS(4028), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -132902,608 +137514,476 @@ static const uint16_t ts_small_parse_table[] = { [64768] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3426), 1, anon_sym_STAR, - STATE(1680), 1, - sym__declarator, - STATE(2409), 1, + STATE(1673), 1, + sym__field_declarator, + STATE(2388), 1, sym_ms_based_modifier, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [64797] = 7, + STATE(1757), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [64797] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3990), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_preproc_if_token2, + ACTIONS(4034), 1, + aux_sym_preproc_else_token1, + ACTIONS(4036), 1, + aux_sym_preproc_elif_token1, + STATE(1741), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2323), 1, + sym_enumerator, + ACTIONS(4038), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2324), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [64828] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3974), 1, + ACTIONS(4024), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1735), 1, sym_parameter_list, - STATE(1642), 2, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3982), 5, + ACTIONS(4040), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [64824] = 8, + [64855] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1699), 1, + STATE(1721), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [64853] = 7, + [64884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 1, + sym_identifier, + STATE(893), 1, + sym_string_literal, + ACTIONS(4044), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1885), 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, + [64909] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3974), 1, + ACTIONS(4024), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1735), 1, sym_parameter_list, - STATE(1642), 2, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3984), 5, + ACTIONS(4046), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [64880] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 1, - sym_identifier, - ACTIONS(3986), 1, - aux_sym_preproc_if_token2, - ACTIONS(3988), 1, - aux_sym_preproc_else_token1, - ACTIONS(3990), 1, - aux_sym_preproc_elif_token1, - STATE(1625), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2334), 1, - sym_enumerator, - ACTIONS(3992), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2234), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [64911] = 8, + [64936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(4050), 1, + anon_sym___attribute__, + ACTIONS(4008), 2, + anon_sym_LBRACK, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4053), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4010), 4, anon_sym_LPAREN2, - ACTIONS(3356), 1, - anon_sym_STAR, - STATE(1622), 1, - sym__field_declarator, - STATE(2385), 1, - sym_ms_based_modifier, - STATE(1710), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [64940] = 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [64961] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 1, + ACTIONS(3947), 1, aux_sym_preproc_else_token1, - ACTIONS(3994), 1, + ACTIONS(4055), 1, sym_identifier, - ACTIONS(3996), 1, + ACTIONS(4057), 1, aux_sym_preproc_if_token2, - ACTIONS(3998), 1, + ACTIONS(4059), 1, aux_sym_preproc_elif_token1, - STATE(1683), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1688), 1, + STATE(1730), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1802), 1, + STATE(1731), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1842), 1, sym_enumerator, - STATE(2243), 2, + STATE(2232), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - STATE(2244), 2, + STATE(2233), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [64973] = 8, + [64994] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3352), 1, + ACTIONS(3422), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3424), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3426), 1, anon_sym_STAR, - STATE(1718), 1, + STATE(1774), 1, sym__field_declarator, - STATE(2385), 1, + STATE(2388), 1, sym_ms_based_modifier, - STATE(1710), 5, + STATE(1757), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [65002] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3974), 1, - anon_sym_LBRACK, - STATE(1706), 1, - sym_parameter_list, - STATE(1642), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4000), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [65029] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, - sym_identifier, - ACTIONS(4005), 1, - aux_sym_preproc_if_token1, - ACTIONS(4011), 1, - sym_preproc_directive, - ACTIONS(4014), 1, - anon_sym_RBRACE, - ACTIONS(4008), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2226), 2, - sym_preproc_call, - sym_enumerator, - STATE(1616), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [65058] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 1, - aux_sym_preproc_else_token1, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(3998), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4016), 1, - aux_sym_preproc_if_token2, - STATE(1682), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1713), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1802), 1, - sym_enumerator, - STATE(2196), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(2197), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [65091] = 8, + [65023] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1687), 1, + STATE(1752), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [65120] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 1, - aux_sym_preproc_else_token1, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(3998), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4018), 1, - aux_sym_preproc_if_token2, - STATE(1695), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1696), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1802), 1, - sym_enumerator, - STATE(2405), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2406), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [65153] = 8, + [65052] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1691), 1, + STATE(1749), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [65182] = 8, + [65081] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3947), 1, + aux_sym_preproc_else_token1, + ACTIONS(4055), 1, sym_identifier, - ACTIONS(3358), 1, - anon_sym_LPAREN2, - ACTIONS(3360), 1, - anon_sym_STAR, - STATE(1711), 1, - sym__declarator, - STATE(2409), 1, - sym_ms_based_modifier, - STATE(1647), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [65211] = 9, + ACTIONS(4059), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4061), 1, + aux_sym_preproc_if_token2, + STATE(1719), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1751), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1842), 1, + sym_enumerator, + STATE(2405), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + STATE(2408), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [65114] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3974), 1, + ACTIONS(4024), 1, anon_sym_LBRACK, - ACTIONS(3976), 1, - anon_sym_COLON, - STATE(1706), 1, + STATE(1735), 1, sym_parameter_list, - STATE(2019), 1, - sym_bitfield_clause, - STATE(1642), 2, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4020), 3, + ACTIONS(4063), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [65242] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4022), 1, - sym_identifier, - STATE(845), 1, - sym_string_literal, - ACTIONS(4024), 2, - anon_sym_RPAREN, anon_sym_COLON, - STATE(1875), 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, - [65267] = 8, + [65141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(2075), 1, anon_sym___based, - ACTIONS(3174), 1, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(3360), 1, + ACTIONS(3412), 1, anon_sym_STAR, - STATE(1724), 1, + STATE(1738), 1, sym__declarator, - STATE(2409), 1, + STATE(2301), 1, sym_ms_based_modifier, - STATE(1647), 5, + STATE(1690), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [65296] = 9, + [65170] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3943), 1, sym_identifier, - ACTIONS(3988), 1, + ACTIONS(4065), 1, + aux_sym_preproc_if_token2, + ACTIONS(4067), 1, aux_sym_preproc_else_token1, + ACTIONS(4069), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4071), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1739), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2310), 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, + [65199] = 9, + ACTIONS(3), 1, + sym_comment, ACTIONS(3990), 1, + sym_identifier, + ACTIONS(4034), 1, + aux_sym_preproc_else_token1, + ACTIONS(4036), 1, aux_sym_preproc_elif_token1, - ACTIONS(4026), 1, + ACTIONS(4073), 1, aux_sym_preproc_if_token2, - STATE(1676), 1, + STATE(1653), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2334), 1, + STATE(2323), 1, sym_enumerator, - ACTIONS(3992), 2, + ACTIONS(4038), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2331), 3, + STATE(2433), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [65327] = 7, + [65230] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3974), 1, + ACTIONS(4024), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1735), 1, sym_parameter_list, - STATE(1642), 2, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4028), 5, + ACTIONS(4075), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [65354] = 8, + [65257] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(4077), 1, sym_identifier, - ACTIONS(4030), 1, - aux_sym_preproc_if_token2, - ACTIONS(4032), 1, - aux_sym_preproc_else_token1, - ACTIONS(4034), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4036), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1692), 2, + ACTIONS(4080), 1, + aux_sym_preproc_if_token1, + ACTIONS(4086), 1, + sym_preproc_directive, + ACTIONS(4089), 1, + anon_sym_RBRACE, + ACTIONS(4083), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2463), 2, + sym_preproc_call, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2236), 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, - [65383] = 6, + STATE(1669), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [65286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 1, - anon_sym___attribute__, - ACTIONS(3960), 2, - anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, sym_identifier, - ACTIONS(4038), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4043), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3962), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [65408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - anon_sym_LBRACK, - STATE(1827), 1, - sym_gnu_asm_output_operand, - STATE(2173), 1, - sym_string_literal, - ACTIONS(4045), 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, - [65432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 1, - anon_sym_LBRACK, - ACTIONS(4049), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3410), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [65450] = 9, + ACTIONS(3412), 1, + anon_sym_STAR, + STATE(1747), 1, + sym__declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1690), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(2075), 1, + anon_sym___based, + ACTIONS(3212), 1, + sym_identifier, + ACTIONS(3410), 1, anon_sym_LPAREN2, - ACTIONS(4053), 1, - anon_sym_COMMA, - ACTIONS(4057), 1, - anon_sym_LBRACK, - STATE(1717), 1, - sym_parameter_list, - STATE(1867), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4055), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65480] = 10, + ACTIONS(3412), 1, + anon_sym_STAR, + STATE(1775), 1, + sym__declarator, + STATE(2301), 1, + sym_ms_based_modifier, + STATE(1690), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65344] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3944), 1, - anon_sym_LBRACK, + ACTIONS(3947), 1, + aux_sym_preproc_else_token1, + ACTIONS(4055), 1, + sym_identifier, ACTIONS(4059), 1, - anon_sym_LPAREN2, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(153), 1, - sym_compound_statement, - STATE(1216), 1, - sym__old_style_parameter_list, - STATE(1567), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65512] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(4057), 1, - anon_sym_LBRACK, - STATE(1717), 1, - sym_parameter_list, - STATE(1670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4063), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [65538] = 10, + aux_sym_preproc_elif_token1, + ACTIONS(4091), 1, + aux_sym_preproc_if_token2, + STATE(1754), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1756), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1842), 1, + sym_enumerator, + STATE(2347), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2349), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [65377] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3944), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(516), 1, - sym_compound_statement, - STATE(1216), 1, - sym__old_style_parameter_list, - STATE(1567), 1, + ACTIONS(4024), 1, + anon_sym_LBRACK, + ACTIONS(4026), 1, + anon_sym_COLON, + STATE(1735), 1, sym_parameter_list, - STATE(1606), 2, + STATE(2058), 1, + sym_bitfield_clause, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4067), 1, - anon_sym_LBRACK, - ACTIONS(4065), 9, + ACTIONS(4093), 3, 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__, - [65588] = 6, + anon_sym___attribute__, + [65408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 1, + ACTIONS(4097), 1, anon_sym_LBRACK, - STATE(1868), 1, - sym_gnu_asm_input_operand, - STATE(2136), 1, + STATE(1893), 1, + sym_gnu_asm_output_operand, + STATE(2402), 1, sym_string_literal, - ACTIONS(4069), 2, + ACTIONS(4095), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(95), 5, @@ -133512,12 +137992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65612] = 3, + [65432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, + ACTIONS(4101), 1, anon_sym_LBRACK, - ACTIONS(4073), 9, + ACTIONS(4099), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -133527,12 +138007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [65630] = 3, + [65450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(4105), 1, anon_sym_LBRACK, - ACTIONS(4077), 9, + ACTIONS(4103), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -133542,111 +138022,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [65648] = 10, + [65468] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3944), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(498), 1, - sym_compound_statement, - STATE(1216), 1, - sym__old_style_parameter_list, - STATE(1567), 1, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(1768), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1706), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65680] = 10, + ACTIONS(4107), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [65494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 1, + anon_sym_LBRACK, + ACTIONS(4111), 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__, + [65512] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4115), 1, anon_sym_LPAREN2, - ACTIONS(4061), 1, + ACTIONS(4117), 1, anon_sym_EQ, - STATE(245), 1, + STATE(164), 1, sym_compound_statement, - STATE(1216), 1, + STATE(1285), 1, sym__old_style_parameter_list, - STATE(1567), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65712] = 7, + [65544] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4057), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(1717), 1, + STATE(1768), 1, sym_parameter_list, - STATE(1670), 2, + STATE(1706), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4081), 4, + ACTIONS(4119), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [65738] = 5, + [65570] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4085), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(1581), 2, + ACTIONS(4115), 1, + anon_sym_LPAREN2, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(273), 1, + sym_compound_statement, + STATE(1285), 1, + sym__old_style_parameter_list, + STATE(1614), 1, + sym_parameter_list, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4083), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [65760] = 7, + [65602] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4057), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(1717), 1, + STATE(1768), 1, sym_parameter_list, - STATE(1670), 2, + STATE(1706), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4087), 4, + ACTIONS(4121), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [65786] = 3, + [65628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 1, + ACTIONS(4125), 1, anon_sym_LBRACK, - ACTIONS(4089), 9, + ACTIONS(4123), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -133656,12 +138153,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [65804] = 3, + [65646] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4129), 1, + anon_sym_LBRACK, + STATE(1626), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4127), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [65668] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4115), 1, + anon_sym_LPAREN2, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(566), 1, + sym_compound_statement, + STATE(1285), 1, + sym__old_style_parameter_list, + STATE(1614), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 1, + ACTIONS(4133), 1, anon_sym_LBRACK, - ACTIONS(4093), 9, + ACTIONS(4131), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -133671,34 +138207,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [65822] = 10, + [65718] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(565), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4115), 1, anon_sym_LPAREN2, - ACTIONS(4061), 1, + ACTIONS(4117), 1, anon_sym_EQ, - STATE(451), 1, + STATE(445), 1, sym_compound_statement, - STATE(1216), 1, + STATE(1285), 1, sym__old_style_parameter_list, - STATE(1567), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65854] = 3, + [65750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, + ACTIONS(4137), 1, anon_sym_LBRACK, - ACTIONS(4097), 9, + ACTIONS(4135), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -133708,104 +138244,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [65872] = 7, + [65768] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4057), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(1717), 1, + STATE(1768), 1, sym_parameter_list, - STATE(1670), 2, + STATE(1706), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4101), 4, + ACTIONS(4139), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [65898] = 5, + [65794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4107), 1, - sym_system_lib_string, - STATE(2297), 2, - sym_preproc_call_expression, + ACTIONS(4143), 1, + anon_sym_LBRACK, + ACTIONS(4141), 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__, + [65812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACK, + STATE(1888), 1, + sym_gnu_asm_input_operand, + STATE(2257), 1, sym_string_literal, - ACTIONS(4105), 5, + ACTIONS(4145), 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, - [65919] = 9, + [65836] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(643), 1, anon_sym_LBRACE, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4115), 1, anon_sym_LPAREN2, - STATE(164), 1, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(548), 1, sym_compound_statement, - STATE(1216), 1, + STATE(1285), 1, sym__old_style_parameter_list, - STATE(1569), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65948] = 4, + [65868] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, - anon_sym_LBRACK, - ACTIONS(4097), 4, - anon_sym_LPAREN2, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(4109), 4, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, + anon_sym_LBRACK, + ACTIONS(4149), 1, anon_sym_COMMA, + STATE(1768), 1, + sym_parameter_list, + STATE(1852), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4151), 2, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [65967] = 9, + anon_sym___attribute__, + STATE(1706), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65898] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(565), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4115), 1, anon_sym_LPAREN2, - STATE(433), 1, + STATE(257), 1, sym_compound_statement, - STATE(1216), 1, + STATE(1285), 1, sym__old_style_parameter_list, - STATE(1569), 1, + STATE(1612), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65927] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(566), 1, + sym_compound_statement, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65996] = 5, + [65956] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4042), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1987), 2, + STATE(1940), 2, sym__string, sym_concatenated_string, ACTIONS(95), 5, @@ -133814,70 +138395,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66017] = 9, + [65977] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4061), 1, + ACTIONS(4117), 1, anon_sym_EQ, - STATE(498), 1, + STATE(164), 1, sym_compound_statement, - STATE(1567), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66046] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(4057), 1, - anon_sym_LBRACK, - STATE(1717), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1670), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4111), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [66071] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 1, - anon_sym_LPAREN2, - ACTIONS(2133), 1, - anon_sym_STAR, - ACTIONS(3182), 1, - anon_sym_LBRACK, - STATE(1788), 1, - sym_parameter_list, - STATE(1832), 1, - sym__abstract_declarator, - STATE(1786), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [66096] = 5, + [66006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4042), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1901), 2, + STATE(1934), 2, sym__string, sym_concatenated_string, ACTIONS(95), 5, @@ -133886,198 +138431,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66117] = 9, + [66027] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3944), 1, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(445), 1, + sym_compound_statement, + STATE(1614), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 1, + anon_sym_LBRACK, + ACTIONS(4141), 4, anon_sym_LPAREN2, - STATE(491), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4153), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [66075] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(499), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_LBRACK, + ACTIONS(4115), 1, + anon_sym_LPAREN2, + STATE(502), 1, sym_compound_statement, - STATE(1216), 1, + STATE(1285), 1, sym__old_style_parameter_list, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66146] = 5, + [66104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4155), 1, sym_identifier, - STATE(845), 1, + ACTIONS(4159), 1, + sym_system_lib_string, + STATE(2197), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1974), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(4157), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66167] = 5, + [66125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(4042), 1, sym_identifier, - ACTIONS(4115), 1, - sym_system_lib_string, - STATE(2305), 2, - sym_preproc_call_expression, + STATE(893), 1, sym_string_literal, - ACTIONS(4105), 5, + STATE(2034), 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, - [66188] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3944), 1, - anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_LPAREN2, - STATE(233), 1, - sym_compound_statement, - STATE(1216), 1, - sym__old_style_parameter_list, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66217] = 5, + [66146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(4119), 1, + ACTIONS(4163), 1, sym_system_lib_string, - STATE(2194), 2, + STATE(2447), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4105), 5, + ACTIONS(4157), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66238] = 9, + [66167] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4061), 1, + ACTIONS(4117), 1, anon_sym_EQ, - STATE(516), 1, + STATE(273), 1, sym_compound_statement, - STATE(1567), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66267] = 9, + [66196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4167), 1, + anon_sym_LBRACK, + STATE(1626), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4165), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [66217] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(565), 1, + ACTIONS(643), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4061), 1, + ACTIONS(4117), 1, anon_sym_EQ, - STATE(451), 1, + STATE(548), 1, sym_compound_statement, - STATE(1567), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66296] = 5, + [66246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4121), 1, + ACTIONS(4169), 1, sym_identifier, - ACTIONS(4123), 1, + ACTIONS(4171), 1, sym_system_lib_string, - STATE(2249), 2, + STATE(2348), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4105), 5, + ACTIONS(4157), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66317] = 9, + [66267] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4115), 1, anon_sym_LPAREN2, - STATE(536), 1, + STATE(560), 1, sym_compound_statement, - STATE(1216), 1, + STATE(1285), 1, sym__old_style_parameter_list, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66346] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, - anon_sym_LBRACK, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(153), 1, - sym_compound_statement, - STATE(1567), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66375] = 5, + [66296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4042), 1, sym_identifier, - STATE(845), 1, + STATE(893), 1, sym_string_literal, - STATE(1887), 2, + STATE(1994), 2, sym__string, sym_concatenated_string, ACTIONS(95), 5, @@ -134086,111 +138642,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66396] = 9, + [66317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4175), 1, + sym_system_lib_string, + STATE(2181), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4157), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66338] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(643), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(245), 1, + ACTIONS(4115), 1, + anon_sym_LPAREN2, + STATE(535), 1, sym_compound_statement, - STATE(1567), 1, + STATE(1285), 1, + sym__old_style_parameter_list, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66425] = 5, + [66367] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4127), 1, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(1581), 2, + ACTIONS(4115), 1, + anon_sym_LPAREN2, + STATE(188), 1, + sym_compound_statement, + STATE(1285), 1, + sym__old_style_parameter_list, + STATE(1612), 1, + sym_parameter_list, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4125), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + [66396] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2181), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [66446] = 5, + ACTIONS(2183), 1, + anon_sym_STAR, + ACTIONS(3220), 1, + anon_sym_LBRACK, + STATE(1830), 1, + sym_parameter_list, + STATE(1920), 1, + sym__abstract_declarator, + STATE(1829), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [66421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 1, + ACTIONS(4042), 1, sym_identifier, - ACTIONS(4131), 1, - sym_system_lib_string, - STATE(2357), 2, - sym_preproc_call_expression, + STATE(893), 1, sym_string_literal, - ACTIONS(4105), 5, + STATE(1965), 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, - [66467] = 5, + [66442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4177), 1, sym_identifier, - STATE(845), 1, + ACTIONS(4179), 1, + sym_system_lib_string, + STATE(2199), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(2011), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(4157), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66488] = 8, + [66463] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(233), 1, - sym_compound_statement, - STATE(1569), 1, + STATE(1768), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1706), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 1, - anon_sym_LBRACK, - ACTIONS(4133), 7, + ACTIONS(4181), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [66530] = 3, + [66488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(4185), 1, anon_sym_LBRACK, - ACTIONS(4137), 7, + ACTIONS(4183), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -134198,62 +138779,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [66546] = 6, + [66504] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4055), 1, sym_identifier, - ACTIONS(4146), 1, + ACTIONS(4067), 1, + aux_sym_preproc_else_token1, + ACTIONS(4187), 1, + aux_sym_preproc_if_token2, + ACTIONS(4189), 1, aux_sym_preproc_elif_token1, - STATE(1676), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2334), 1, + STATE(1796), 2, sym_enumerator, - ACTIONS(4144), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [66568] = 4, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2336), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [66528] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4152), 1, - anon_sym_EQ, - ACTIONS(4148), 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, - [66586] = 8, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4004), 1, + anon_sym_LBRACK, + STATE(569), 1, + sym_compound_statement, + STATE(1614), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66554] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(565), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(433), 1, + STATE(158), 1, sym_compound_statement, - STATE(1569), 1, + STATE(1612), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66580] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4004), 1, + anon_sym_LBRACK, + STATE(175), 1, + sym_compound_statement, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66612] = 5, + [66606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 1, + ACTIONS(4097), 1, anon_sym_LBRACK, - STATE(1933), 1, - sym_gnu_asm_input_operand, - STATE(2136), 1, + STATE(2030), 1, + sym_gnu_asm_output_operand, + STATE(2402), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -134261,30 +138865,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [66632] = 8, + [66626] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3990), 1, + sym_identifier, + ACTIONS(4034), 1, + aux_sym_preproc_else_token1, + ACTIONS(4191), 1, + aux_sym_preproc_if_token2, + ACTIONS(4193), 1, + aux_sym_preproc_elif_token1, + STATE(1751), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2299), 1, + sym_enumerator, + STATE(2408), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [66652] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(565), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(413), 1, + STATE(188), 1, sym_compound_statement, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66658] = 3, + [66678] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + sym_identifier, + ACTIONS(4067), 1, + aux_sym_preproc_else_token1, + ACTIONS(4189), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4195), 1, + aux_sym_preproc_if_token2, + STATE(1754), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2349), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [66702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4199), 1, anon_sym_LBRACK, - ACTIONS(4154), 7, + ACTIONS(4197), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -134292,48 +138931,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [66674] = 8, + [66718] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + sym_identifier, + ACTIONS(4067), 1, + aux_sym_preproc_else_token1, + ACTIONS(4189), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4201), 1, + aux_sym_preproc_if_token2, + STATE(1730), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2233), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [66742] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3990), 1, sym_identifier, - ACTIONS(3988), 1, + ACTIONS(4034), 1, aux_sym_preproc_else_token1, - ACTIONS(4158), 1, + ACTIONS(4057), 1, aux_sym_preproc_if_token2, - ACTIONS(4160), 1, + ACTIONS(4193), 1, aux_sym_preproc_elif_token1, - STATE(1738), 1, + STATE(1731), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2399), 1, + STATE(2299), 1, sym_enumerator, - STATE(2225), 2, + STATE(2232), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [66700] = 8, + [66768] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(4055), 1, sym_identifier, - ACTIONS(3988), 1, + ACTIONS(4067), 1, aux_sym_preproc_else_token1, - ACTIONS(4160), 1, + ACTIONS(4189), 1, aux_sym_preproc_elif_token1, - ACTIONS(4162), 1, + ACTIONS(4203), 1, aux_sym_preproc_if_token2, - STATE(1738), 1, + STATE(1796), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2427), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [66792] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3990), 1, + sym_identifier, + ACTIONS(4034), 1, + aux_sym_preproc_else_token1, + ACTIONS(4193), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4205), 1, + aux_sym_preproc_if_token2, + STATE(1795), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2399), 1, + STATE(2299), 1, sym_enumerator, - STATE(2401), 2, + STATE(2425), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [66726] = 3, + [66818] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACK, + STATE(1954), 1, + sym_gnu_asm_input_operand, + STATE(2257), 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, + [66838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4209), 1, anon_sym_LBRACK, - ACTIONS(4164), 7, + ACTIONS(4207), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -134341,30 +139029,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [66742] = 8, + [66854] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(565), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(436), 1, + STATE(486), 1, sym_compound_statement, - STATE(1567), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66768] = 3, + [66880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 1, + ACTIONS(4213), 1, anon_sym_LBRACK, - ACTIONS(4168), 7, + ACTIONS(4211), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -134372,403 +139060,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [66784] = 8, + [66896] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(643), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(248), 1, + STATE(538), 1, sym_compound_statement, - STATE(1569), 1, + STATE(1614), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66810] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(4032), 1, - aux_sym_preproc_else_token1, - ACTIONS(4172), 1, - aux_sym_preproc_if_token2, - ACTIONS(4174), 1, - aux_sym_preproc_elif_token1, - STATE(1759), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2400), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [66834] = 8, + [66922] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(536), 1, + STATE(257), 1, sym_compound_statement, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66860] = 8, + [66948] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(493), 1, + STATE(545), 1, sym_compound_statement, - STATE(1567), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66886] = 8, + [66974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4215), 1, + sym_identifier, + ACTIONS(4220), 1, + aux_sym_preproc_elif_token1, + STATE(1739), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4218), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [66994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4224), 1, anon_sym_LBRACK, - STATE(524), 1, - sym_compound_statement, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [66912] = 5, + ACTIONS(4222), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [67010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4226), 1, sym_identifier, - ACTIONS(4181), 1, + ACTIONS(4231), 1, aux_sym_preproc_elif_token1, - STATE(1692), 2, + STATE(1741), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2323), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4179), 4, + ACTIONS(4229), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [66932] = 8, + [67032] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(236), 1, + STATE(502), 1, sym_compound_statement, - STATE(1567), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66958] = 8, + [67058] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(156), 1, - sym_compound_statement, - STATE(1567), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + ACTIONS(4233), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [66984] = 8, + [67082] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3990), 1, sym_identifier, - ACTIONS(3988), 1, + ACTIONS(4034), 1, aux_sym_preproc_else_token1, - ACTIONS(4160), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4183), 1, + ACTIONS(4091), 1, aux_sym_preproc_if_token2, - STATE(1738), 1, + ACTIONS(4193), 1, + aux_sym_preproc_elif_token1, + STATE(1756), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2399), 1, + STATE(2299), 1, sym_enumerator, - STATE(2362), 2, + STATE(2347), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [67010] = 7, + [67108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(4032), 1, - aux_sym_preproc_else_token1, - ACTIONS(4174), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4185), 1, - aux_sym_preproc_if_token2, - STATE(1759), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2361), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [67034] = 8, + ACTIONS(4237), 1, + anon_sym_LBRACK, + ACTIONS(4235), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [67124] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(515), 1, + STATE(560), 1, sym_compound_statement, - STATE(1567), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67060] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 1, - sym_identifier, - ACTIONS(3988), 1, - aux_sym_preproc_else_token1, - ACTIONS(4160), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4187), 1, - aux_sym_preproc_if_token2, - STATE(1682), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2399), 1, - sym_enumerator, - STATE(2196), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [67086] = 8, + [67150] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(143), 1, + STATE(254), 1, sym_compound_statement, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67112] = 7, + [67176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 1, + anon_sym_LBRACK, + ACTIONS(4239), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [67192] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(643), 1, + anon_sym_LBRACE, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(1569), 1, + STATE(526), 1, + sym_compound_statement, + STATE(1612), 1, sym_parameter_list, - ACTIONS(4189), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67136] = 8, + [67218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - sym_identifier, - ACTIONS(3988), 1, - aux_sym_preproc_else_token1, - ACTIONS(4018), 1, - aux_sym_preproc_if_token2, - ACTIONS(4160), 1, + ACTIONS(4245), 1, aux_sym_preproc_elif_token1, - STATE(1695), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2399), 1, - sym_enumerator, - STATE(2406), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [67162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - anon_sym_LBRACK, - ACTIONS(4191), 7, + ACTIONS(4247), 1, + anon_sym_EQ, + ACTIONS(4243), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [67178] = 8, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [67236] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3990), 1, sym_identifier, - ACTIONS(3988), 1, + ACTIONS(4034), 1, aux_sym_preproc_else_token1, - ACTIONS(3996), 1, - aux_sym_preproc_if_token2, - ACTIONS(4160), 1, + ACTIONS(4193), 1, aux_sym_preproc_elif_token1, - STATE(1683), 1, + ACTIONS(4249), 1, + aux_sym_preproc_if_token2, + STATE(1795), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2399), 1, + STATE(2299), 1, sym_enumerator, - STATE(2243), 2, + STATE(2327), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [67204] = 8, + [67262] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(164), 1, + STATE(565), 1, sym_compound_statement, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67230] = 3, + [67288] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - anon_sym_LBRACK, - ACTIONS(4195), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [67246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - anon_sym_LBRACK, - ACTIONS(4199), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(4002), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [67262] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(4032), 1, - aux_sym_preproc_else_token1, - ACTIONS(4174), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4203), 1, - aux_sym_preproc_if_token2, - STATE(1696), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2405), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [67286] = 7, + ACTIONS(4004), 1, + anon_sym_LBRACK, + STATE(266), 1, + sym_compound_statement, + STATE(1614), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3994), 1, + ACTIONS(4055), 1, sym_identifier, - ACTIONS(4032), 1, + ACTIONS(4067), 1, aux_sym_preproc_else_token1, - ACTIONS(4174), 1, + ACTIONS(4189), 1, aux_sym_preproc_elif_token1, - ACTIONS(4205), 1, + ACTIONS(4251), 1, aux_sym_preproc_if_token2, - STATE(1688), 2, + STATE(1796), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, STATE(2244), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [67310] = 8, + [67338] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(643), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(491), 1, + STATE(535), 1, sym_compound_statement, - STATE(1569), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1606), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67336] = 3, + [67364] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 1, + ACTIONS(3990), 1, + sym_identifier, + ACTIONS(4034), 1, + aux_sym_preproc_else_token1, + ACTIONS(4193), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4253), 1, + aux_sym_preproc_if_token2, + STATE(1795), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2299), 1, + sym_enumerator, + STATE(2243), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [67390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, anon_sym_LBRACK, - ACTIONS(4207), 7, + ACTIONS(4255), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -134776,650 +139425,538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [67352] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, - anon_sym_LBRACK, - STATE(460), 1, - sym_compound_statement, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67378] = 5, + [67406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, + ACTIONS(4261), 1, anon_sym_LBRACK, - STATE(1975), 1, - sym_gnu_asm_output_operand, - STATE(2173), 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, - [67398] = 7, + ACTIONS(4259), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [67422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3994), 1, - sym_identifier, - ACTIONS(4032), 1, - aux_sym_preproc_else_token1, - ACTIONS(4174), 1, + ACTIONS(4265), 1, + anon_sym_COMMA, + ACTIONS(4267), 1, aux_sym_preproc_elif_token1, - ACTIONS(4211), 1, + ACTIONS(4263), 5, aux_sym_preproc_if_token2, - STATE(1759), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2237), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [67422] = 7, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [67439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, - anon_sym_LBRACK, - ACTIONS(4213), 1, - anon_sym_RPAREN, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67445] = 4, + ACTIONS(3930), 1, + anon_sym___attribute__, + STATE(1771), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4269), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [67456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - STATE(1737), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3929), 4, + ACTIONS(3953), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [67462] = 7, + [67473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4273), 1, + anon_sym_LBRACK, + ACTIONS(4271), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4057), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [67488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 1, anon_sym_LBRACK, - ACTIONS(4215), 1, + ACTIONS(4275), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1717), 1, - sym_parameter_list, - STATE(1670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67485] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [67503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 1, + ACTIONS(4281), 1, anon_sym_LBRACK, - ACTIONS(4217), 6, + ACTIONS(4279), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [67500] = 7, + [67518] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3974), 1, + ACTIONS(4024), 1, anon_sym_LBRACK, - ACTIONS(4221), 1, + ACTIONS(4283), 1, anon_sym_RPAREN, - STATE(1706), 1, + STATE(1735), 1, sym_parameter_list, - STATE(1642), 2, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67523] = 3, + [67541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(4287), 1, anon_sym_LBRACK, - ACTIONS(4223), 6, + ACTIONS(4285), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [67538] = 3, + [67556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, + ACTIONS(4291), 1, anon_sym_LBRACK, - ACTIONS(4227), 6, + ACTIONS(4289), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [67553] = 3, + [67571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 1, + ACTIONS(4295), 1, anon_sym_LBRACK, - ACTIONS(4231), 6, + ACTIONS(4293), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [67568] = 5, + [67586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, + ACTIONS(4299), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4240), 1, - anon_sym_DOT, - STATE(1722), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [67587] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4297), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3944), 1, - anon_sym_LBRACK, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(1567), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67610] = 7, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [67601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, + ACTIONS(4303), 1, anon_sym_LBRACK, - ACTIONS(4243), 1, + ACTIONS(4301), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1569), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [67633] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2697), 1, - anon_sym_LBRACE, - ACTIONS(4245), 1, - sym_identifier, - STATE(969), 1, - sym_field_declaration_list, - STATE(1790), 1, - sym_attribute_specifier, - STATE(1904), 1, - sym_ms_declspec_modifier, - [67658] = 4, + anon_sym_LBRACK_LBRACK, + [67616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(4307), 1, anon_sym___attribute__, - STATE(1737), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4247), 4, + ACTIONS(4305), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [67675] = 3, + [67633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 1, + ACTIONS(4312), 1, anon_sym_LBRACK, - ACTIONS(4249), 6, + ACTIONS(4310), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [67690] = 3, + [67648] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(4253), 6, - anon_sym_COMMA, + ACTIONS(4314), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [67705] = 7, + STATE(1768), 1, + sym_parameter_list, + STATE(1706), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67671] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(3974), 1, + ACTIONS(4024), 1, anon_sym_LBRACK, - ACTIONS(4257), 1, + ACTIONS(4316), 1, anon_sym_RPAREN, - STATE(1706), 1, + STATE(1735), 1, sym_parameter_list, - STATE(1642), 2, + STATE(1684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67728] = 7, + [67694] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4057), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - ACTIONS(4259), 1, + ACTIONS(4318), 1, anon_sym_RPAREN, - STATE(1717), 1, + STATE(1612), 1, sym_parameter_list, - STATE(1670), 2, + STATE(1651), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [67751] = 3, + [67717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 1, + ACTIONS(4322), 1, anon_sym_LBRACK, - ACTIONS(4261), 6, + ACTIONS(4320), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [67766] = 3, + [67732] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, - anon_sym_LBRACK, - ACTIONS(4265), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - [67781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4271), 1, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(4269), 6, - anon_sym_COMMA, + ACTIONS(4324), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [67796] = 5, + STATE(1768), 1, + sym_parameter_list, + STATE(1706), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67755] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(2133), 1, anon_sym_LBRACK, - ACTIONS(4273), 1, + ACTIONS(4326), 1, anon_sym_EQ, - ACTIONS(4275), 1, + ACTIONS(4328), 1, anon_sym_DOT, - STATE(1722), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [67815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4279), 1, - anon_sym_COMMA, - ACTIONS(4281), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4277), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [67832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - anon_sym_LBRACK, - ACTIONS(4283), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [67847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4289), 1, - anon_sym___attribute__, - STATE(1737), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4287), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [67864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 1, - sym_identifier, - STATE(1738), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2399), 1, - sym_enumerator, - ACTIONS(4144), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [67882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4294), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [67896] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4298), 1, - anon_sym_SEMI, - STATE(1881), 1, - aux_sym_declaration_repeat1, - STATE(1882), 1, - sym_gnu_asm_expression, - ACTIONS(4300), 2, - anon_sym_asm, - anon_sym___asm__, - [67916] = 5, + STATE(1780), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [67774] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4304), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(1791), 1, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(1614), 1, sym_parameter_list, - ACTIONS(4302), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [67934] = 3, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67797] = 5, ACTIONS(3), 1, sym_comment, - STATE(824), 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, - [67948] = 5, + ACTIONS(4330), 1, + anon_sym_LBRACK, + ACTIONS(4333), 1, + anon_sym_EQ, + ACTIONS(4335), 1, + anon_sym_DOT, + STATE(1780), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [67816] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2755), 1, + anon_sym_LBRACE, + ACTIONS(4338), 1, + sym_identifier, + STATE(1015), 1, + sym_field_declaration_list, + STATE(1840), 1, + sym_attribute_specifier, + STATE(2014), 1, + sym_ms_declspec_modifier, + [67841] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4304), 1, + ACTIONS(4004), 1, anon_sym_LBRACK, - STATE(1791), 1, + ACTIONS(4340), 1, + anon_sym_RPAREN, + STATE(1612), 1, sym_parameter_list, - ACTIONS(4306), 3, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67864] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [67966] = 5, + ACTIONS(4344), 1, + anon_sym_SEMI, + STATE(1924), 1, + aux_sym_declaration_repeat1, + STATE(1995), 1, + sym_gnu_asm_expression, + ACTIONS(4346), 2, + anon_sym_asm, + anon_sym___asm__, + [67884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4304), 1, + ACTIONS(4350), 1, anon_sym_LBRACK, - STATE(1791), 1, + STATE(1837), 1, sym_parameter_list, - ACTIONS(4308), 3, + ACTIONS(4348), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [67984] = 6, + [67902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4310), 1, + ACTIONS(4352), 1, anon_sym_SEMI, - STATE(1889), 1, + STATE(1969), 1, sym_gnu_asm_expression, - STATE(1890), 1, + STATE(2002), 1, aux_sym_declaration_repeat1, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4312), 1, - anon_sym_LPAREN2, - STATE(1749), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4314), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [68020] = 6, + [67922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4316), 1, + ACTIONS(4354), 1, anon_sym_SEMI, - STATE(1960), 1, + STATE(2010), 1, aux_sym_declaration_repeat1, - STATE(1961), 1, + STATE(2011), 1, sym_gnu_asm_expression, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68040] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, - anon_sym_LPAREN2, - STATE(1775), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4314), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [68056] = 4, + [67942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, - anon_sym_LPAREN2, - STATE(1774), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4314), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [68072] = 5, + ACTIONS(4356), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4358), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [67956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(4304), 1, - anon_sym_LBRACK, - STATE(1791), 1, - sym_parameter_list, - ACTIONS(4322), 3, + ACTIONS(4342), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68090] = 5, + ACTIONS(4360), 1, + anon_sym_SEMI, + STATE(1930), 1, + sym_gnu_asm_expression, + STATE(1957), 1, + aux_sym_declaration_repeat1, + ACTIONS(4346), 2, + anon_sym_asm, + anon_sym___asm__, + [67976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4304), 1, + ACTIONS(4350), 1, anon_sym_LBRACK, - STATE(1791), 1, + STATE(1837), 1, sym_parameter_list, - ACTIONS(4324), 3, + ACTIONS(4362), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [68108] = 6, + [67994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4326), 1, + ACTIONS(4364), 1, anon_sym_SEMI, - STATE(1930), 1, + STATE(1966), 1, sym_gnu_asm_expression, - STATE(1941), 1, + STATE(1967), 1, aux_sym_declaration_repeat1, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68128] = 6, + [68014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4350), 1, + anon_sym_LBRACK, + STATE(1837), 1, + sym_parameter_list, + ACTIONS(4366), 3, anon_sym_COMMA, - ACTIONS(4328), 1, - anon_sym_SEMI, - STATE(1920), 1, - sym_gnu_asm_expression, - STATE(1921), 1, - aux_sym_declaration_repeat1, - ACTIONS(4300), 2, - anon_sym_asm, - anon_sym___asm__, - [68148] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + [68032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4330), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - STATE(1999), 1, - aux_sym_declaration_repeat1, - STATE(2006), 1, + STATE(1942), 1, sym_gnu_asm_expression, - ACTIONS(4300), 2, + STATE(1943), 1, + aux_sym_declaration_repeat1, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68168] = 5, + [68052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4304), 1, + ACTIONS(4350), 1, anon_sym_LBRACK, - STATE(1791), 1, + STATE(1837), 1, sym_parameter_list, - ACTIONS(4332), 3, + ACTIONS(4370), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [68186] = 6, + [68070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4334), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - STATE(1944), 1, - sym_gnu_asm_expression, - STATE(1945), 1, + STATE(2031), 1, aux_sym_declaration_repeat1, - ACTIONS(4300), 2, + STATE(2032), 1, + sym_gnu_asm_expression, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68206] = 6, + [68090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4336), 1, - anon_sym_SEMI, - STATE(1903), 1, - sym_gnu_asm_expression, - STATE(1908), 1, - aux_sym_declaration_repeat1, - ACTIONS(4300), 2, - anon_sym_asm, - anon_sym___asm__, - [68226] = 3, + ACTIONS(4226), 1, + sym_identifier, + STATE(1795), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2299), 1, + sym_enumerator, + ACTIONS(4229), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [68108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 1, + sym_identifier, + STATE(1796), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4218), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [68124] = 3, ACTIONS(3), 1, sym_comment, - STATE(2335), 1, + STATE(2464), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -135427,6538 +139964,6745 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [68240] = 4, + [68138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(4377), 2, + anon_sym_RBRACE, sym_identifier, - STATE(1759), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4179), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [68256] = 6, + ACTIONS(4379), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [68152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 1, + anon_sym_LPAREN2, + STATE(1826), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4383), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 1, + anon_sym_LPAREN2, + STATE(1814), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4383), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4341), 1, + ACTIONS(4387), 1, anon_sym_SEMI, - STATE(2005), 1, + STATE(2017), 1, aux_sym_declaration_repeat1, - STATE(2008), 1, + STATE(2019), 1, sym_gnu_asm_expression, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68276] = 3, + [68204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4343), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4345), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68290] = 3, + ACTIONS(4389), 1, + anon_sym_LPAREN2, + STATE(1802), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4391), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4347), 2, + ACTIONS(4394), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4349), 4, + ACTIONS(4396), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [68304] = 6, + [68234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4351), 1, + ACTIONS(4398), 1, anon_sym_SEMI, - STATE(1907), 1, + STATE(2039), 1, aux_sym_declaration_repeat1, - STATE(1912), 1, + STATE(2040), 1, sym_gnu_asm_expression, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4353), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [68338] = 3, + [68254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4355), 2, + ACTIONS(4400), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4357), 4, + ACTIONS(4402), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [68352] = 3, + [68268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, + ACTIONS(4404), 1, anon_sym_EQ, - ACTIONS(4148), 5, + ACTIONS(4243), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [68366] = 6, + [68282] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(867), 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, + [68296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4350), 1, + anon_sym_LBRACK, + STATE(1837), 1, + sym_parameter_list, + ACTIONS(4406), 3, anon_sym_COMMA, - ACTIONS(4361), 1, - anon_sym_SEMI, - STATE(1940), 1, - aux_sym_declaration_repeat1, - STATE(1947), 1, - sym_gnu_asm_expression, - ACTIONS(4300), 2, - anon_sym_asm, - anon_sym___asm__, - [68386] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [68314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4347), 2, + ACTIONS(4408), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4349), 4, + ACTIONS(4410), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [68400] = 6, + [68328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4363), 1, + ACTIONS(4412), 1, anon_sym_SEMI, - STATE(1885), 1, - sym_gnu_asm_expression, - STATE(1902), 1, + STATE(2021), 1, aux_sym_declaration_repeat1, - ACTIONS(4300), 2, + STATE(2022), 1, + sym_gnu_asm_expression, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68420] = 3, + [68348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4365), 2, + ACTIONS(4377), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4367), 4, + ACTIONS(4379), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [68434] = 5, + [68362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4304), 1, + ACTIONS(4350), 1, anon_sym_LBRACK, - STATE(1791), 1, + STATE(1837), 1, sym_parameter_list, - ACTIONS(4369), 3, + ACTIONS(4414), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [68452] = 6, + [68380] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4371), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - STATE(2009), 1, + STATE(2064), 1, sym_gnu_asm_expression, - STATE(2010), 1, + STATE(2065), 1, aux_sym_declaration_repeat1, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - [68472] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(3944), 1, - anon_sym_LBRACK, - STATE(1567), 1, - sym_parameter_list, - STATE(1606), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [68492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4373), 1, - anon_sym_LPAREN2, - STATE(1774), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4375), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [68508] = 4, + [68400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 1, + ACTIONS(4418), 1, anon_sym_LPAREN2, - STATE(1774), 2, + STATE(1802), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4314), 3, + ACTIONS(4383), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [68524] = 3, + [68416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 2, + ACTIONS(4356), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4382), 4, + ACTIONS(4358), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [68538] = 3, + [68430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 1, + ACTIONS(4231), 1, aux_sym_preproc_elif_token1, - ACTIONS(4144), 5, + ACTIONS(4229), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [68552] = 3, + [68444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4004), 1, + anon_sym_LBRACK, + STATE(1614), 1, + sym_parameter_list, + STATE(1651), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 2, + ACTIONS(4089), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4386), 4, + ACTIONS(4420), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [68566] = 3, + [68478] = 3, ACTIONS(3), 1, sym_comment, - STATE(2386), 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, - [68580] = 3, + ACTIONS(4422), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4424), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [68492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4343), 2, + ACTIONS(4426), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4345), 4, + ACTIONS(4428), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [68594] = 3, + [68506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4430), 1, + anon_sym_SEMI, + STATE(2006), 1, + aux_sym_declaration_repeat1, + STATE(2008), 1, + sym_gnu_asm_expression, + ACTIONS(4346), 2, + anon_sym_asm, + anon_sym___asm__, + [68526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4432), 1, + anon_sym_SEMI, + STATE(2035), 1, + sym_gnu_asm_expression, + STATE(2036), 1, + aux_sym_declaration_repeat1, + ACTIONS(4346), 2, + anon_sym_asm, + anon_sym___asm__, + [68546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 2, + ACTIONS(4434), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4390), 4, + ACTIONS(4436), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + [68560] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2484), 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, + [68574] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4350), 1, + anon_sym_LBRACK, + STATE(1837), 1, + sym_parameter_list, + ACTIONS(4438), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [68592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4440), 1, + anon_sym_LPAREN2, + STATE(1802), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4383), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, [68608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4392), 1, + ACTIONS(4442), 1, anon_sym_SEMI, - STATE(1883), 1, + STATE(2056), 1, sym_gnu_asm_expression, - STATE(1996), 1, + STATE(2057), 1, aux_sym_declaration_repeat1, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, [68628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 5, + ACTIONS(4444), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68639] = 5, + [68639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(4398), 1, - anon_sym_COLON_COLON, - STATE(2094), 1, - sym_argument_list, - ACTIONS(4396), 2, + ACTIONS(4446), 5, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [68656] = 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [68650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 5, + ACTIONS(4448), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68667] = 2, + [68661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 5, + ACTIONS(4450), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68678] = 4, + [68672] = 5, ACTIONS(3), 1, sym_comment, - STATE(2024), 1, - sym_gnu_asm_expression, - ACTIONS(4300), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4404), 2, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4350), 1, + anon_sym_LBRACK, + STATE(1837), 1, + sym_parameter_list, + ACTIONS(4233), 2, anon_sym_COMMA, - anon_sym_SEMI, - [68693] = 2, + anon_sym_RPAREN, + [68689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 5, + ACTIONS(4452), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68704] = 2, + [68700] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, + sym_identifier, + ACTIONS(4454), 1, + aux_sym_preproc_if_token2, + STATE(1759), 1, + sym_enumerator, + STATE(1869), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1870), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [68719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 5, + ACTIONS(4456), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68715] = 6, + [68730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2697), 1, - anon_sym_LBRACE, - ACTIONS(4410), 1, - sym_identifier, - STATE(968), 1, - sym_field_declaration_list, - STATE(1968), 1, - sym_ms_declspec_modifier, - [68734] = 2, + ACTIONS(4458), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [68741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 5, + ACTIONS(4460), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68745] = 2, + [68752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 5, + ACTIONS(4462), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68756] = 6, + [68763] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2697), 1, + ACTIONS(2755), 1, anon_sym_LBRACE, - ACTIONS(4416), 1, + ACTIONS(4464), 1, sym_identifier, - STATE(967), 1, + STATE(1030), 1, sym_field_declaration_list, - STATE(1932), 1, + STATE(2044), 1, sym_ms_declspec_modifier, - [68775] = 2, + [68782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [68786] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2755), 1, + anon_sym_LBRACE, + ACTIONS(4466), 1, + sym_identifier, + STATE(1004), 1, + sym_field_declaration_list, + STATE(1951), 1, + sym_ms_declspec_modifier, + [68801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, - sym_identifier, - ACTIONS(4420), 1, - aux_sym_preproc_if_token2, - STATE(1735), 1, - sym_enumerator, - STATE(1822), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1823), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [68805] = 2, + STATE(2072), 1, + sym_gnu_asm_expression, + ACTIONS(4346), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4468), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [68816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 5, + ACTIONS(4470), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [68816] = 2, + ACTIONS(4263), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [68829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 5, + ACTIONS(4472), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68827] = 2, + [68840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 5, + ACTIONS(4474), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68838] = 2, + [68851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 5, + ACTIONS(4476), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68849] = 5, + [68862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(4304), 1, - anon_sym_LBRACK, - STATE(1791), 1, - sym_parameter_list, - ACTIONS(4189), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4430), 5, + ACTIONS(4478), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [68877] = 3, + [68873] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + STATE(2092), 1, + sym_argument_list, + ACTIONS(4480), 2, anon_sym_COMMA, - ACTIONS(4277), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, + anon_sym_RBRACK_RBRACK, [68890] = 4, ACTIONS(3), 1, sym_comment, - STATE(2092), 1, + STATE(2155), 1, sym_gnu_asm_expression, - ACTIONS(4300), 2, + ACTIONS(4346), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(4434), 2, + ACTIONS(4484), 2, anon_sym_COMMA, anon_sym_SEMI, - [68905] = 5, - ACTIONS(3595), 1, + [68905] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 1, - anon_sym_DQUOTE, - ACTIONS(4438), 1, - aux_sym_string_literal_token1, - ACTIONS(4440), 1, - sym_escape_sequence, - STATE(1862), 1, - aux_sym_string_literal_repeat1, - [68921] = 4, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4486), 1, + anon_sym_SEMI, + STATE(1771), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [68919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4442), 1, + ACTIONS(4488), 1, anon_sym_SEMI, - STATE(1849), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [68935] = 4, + [68933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - STATE(2023), 1, + STATE(2098), 1, sym_argument_list, - ACTIONS(4444), 2, + ACTIONS(4490), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [68949] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4446), 1, - aux_sym_preproc_include_token2, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, - sym_preproc_arg, - STATE(2035), 1, - sym_preproc_params, - [68965] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4452), 1, - aux_sym_preproc_include_token2, - ACTIONS(4454), 1, - sym_preproc_arg, - STATE(2085), 1, - sym_preproc_params, - [68981] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4456), 1, - anon_sym_DQUOTE, - ACTIONS(4458), 1, - aux_sym_string_literal_token1, - ACTIONS(4460), 1, - sym_escape_sequence, - STATE(1872), 1, - aux_sym_string_literal_repeat1, - [68997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3970), 1, - anon_sym_COMMA, - STATE(1812), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4462), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [69011] = 4, + [68947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 1, + ACTIONS(4149), 1, anon_sym_COMMA, - STATE(1812), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4464), 2, + STATE(1856), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4492), 2, anon_sym_SEMI, anon_sym___attribute__, - [69025] = 4, - ACTIONS(3), 1, + [68961] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4466), 1, - anon_sym_COMMA, - STATE(1812), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4469), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [69039] = 4, + ACTIONS(4494), 1, + aux_sym_preproc_include_token2, + ACTIONS(4496), 1, + anon_sym_LPAREN, + ACTIONS(4498), 1, + sym_preproc_arg, + STATE(2165), 1, + sym_preproc_params, + [68977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4471), 1, + ACTIONS(4500), 1, anon_sym_SEMI, - STATE(1737), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69053] = 4, + [68991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4473), 1, - anon_sym_SEMI, - STATE(1737), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [69067] = 4, + ACTIONS(4502), 1, + anon_sym___except, + ACTIONS(4504), 1, + anon_sym___finally, + STATE(216), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(4506), 1, anon_sym_COMMA, - STATE(1815), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4478), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [69081] = 4, + STATE(1856), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4509), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [69019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4480), 1, + ACTIONS(4511), 1, anon_sym_SEMI, - STATE(1851), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69095] = 4, + [69033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4513), 1, anon_sym___except, - ACTIONS(4484), 1, + ACTIONS(4515), 1, anon_sym___finally, - STATE(351), 2, + STATE(425), 2, sym_seh_except_clause, sym_seh_finally_clause, - [69109] = 4, + [69047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4517), 1, + anon_sym_SEMI, + STATE(1857), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, anon_sym___except, - ACTIONS(4488), 1, + ACTIONS(4521), 1, anon_sym___finally, - STATE(349), 2, + STATE(425), 2, sym_seh_except_clause, sym_seh_finally_clause, - [69123] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4490), 1, - anon_sym_DQUOTE, - ACTIONS(4492), 1, - aux_sym_string_literal_token1, - ACTIONS(4494), 1, - sym_escape_sequence, - STATE(1846), 1, - aux_sym_string_literal_repeat1, - [69139] = 4, + [69075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4496), 1, + ACTIONS(4523), 1, anon_sym_SEMI, - STATE(1737), 2, + STATE(1849), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69153] = 4, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4498), 1, - anon_sym_SQUOTE, - STATE(1865), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4500), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [69167] = 5, + [69089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - sym_identifier, - ACTIONS(4502), 1, - aux_sym_preproc_if_token2, - STATE(1676), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2334), 1, - sym_enumerator, - [69183] = 4, + ACTIONS(4525), 1, + anon_sym_COMMA, + STATE(1862), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4528), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69103] = 5, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN, + ACTIONS(4530), 1, + aux_sym_preproc_include_token2, + ACTIONS(4532), 1, + sym_preproc_arg, + STATE(2171), 1, + sym_preproc_params, + [69119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, - sym_identifier, - ACTIONS(4504), 1, - aux_sym_preproc_if_token2, - STATE(1692), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [69197] = 4, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4534), 1, + anon_sym_SEMI, + STATE(1854), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 1, + ACTIONS(4020), 1, anon_sym_COMMA, - STATE(1824), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4509), 2, + STATE(1918), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4536), 2, anon_sym_SEMI, anon_sym___attribute__, - [69211] = 4, + [69147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4511), 1, - anon_sym_SEMI, - STATE(1737), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [69225] = 5, - ACTIONS(3595), 1, + ACTIONS(4538), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [69157] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(4496), 1, anon_sym_LPAREN, - ACTIONS(4513), 1, + ACTIONS(4540), 1, aux_sym_preproc_include_token2, - ACTIONS(4515), 1, + ACTIONS(4542), 1, sym_preproc_arg, - STATE(2103), 1, + STATE(2160), 1, sym_preproc_params, - [69241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4517), 1, - anon_sym_COMMA, - STATE(1836), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4519), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [69255] = 5, - ACTIONS(3595), 1, + [69173] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(4496), 1, anon_sym_LPAREN, - ACTIONS(4521), 1, + ACTIONS(4544), 1, aux_sym_preproc_include_token2, - ACTIONS(4523), 1, + ACTIONS(4546), 1, sym_preproc_arg, - STATE(2105), 1, + STATE(2179), 1, sym_preproc_params, - [69271] = 2, + [69189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4144), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(3990), 1, sym_identifier, - [69281] = 4, + ACTIONS(4548), 1, + aux_sym_preproc_if_token2, + STATE(1741), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2323), 1, + sym_enumerator, + [69205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(3943), 1, sym_identifier, - ACTIONS(4525), 1, + ACTIONS(4550), 1, aux_sym_preproc_if_token2, - STATE(1823), 2, + STATE(1739), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [69295] = 4, + [69219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4527), 1, + ACTIONS(4552), 1, + anon_sym_COMMA, + STATE(1871), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4555), 2, anon_sym_SEMI, - STATE(1813), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [69309] = 5, + anon_sym___attribute__, + [69233] = 5, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4557), 1, + anon_sym_DQUOTE, + ACTIONS(4559), 1, + aux_sym_string_literal_token1, + ACTIONS(4561), 1, + sym_escape_sequence, + STATE(1911), 1, + aux_sym_string_literal_repeat1, + [69249] = 4, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4563), 1, + anon_sym_SQUOTE, + STATE(1910), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4565), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4002), 1, anon_sym_LPAREN2, - ACTIONS(4304), 1, + ACTIONS(4350), 1, anon_sym_LBRACK, - ACTIONS(4529), 1, + ACTIONS(4567), 1, anon_sym_RPAREN, - STATE(1791), 1, + STATE(1837), 1, sym_parameter_list, - [69325] = 2, + [69279] = 4, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4569), 1, + anon_sym_SQUOTE, + STATE(1910), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4565), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [69335] = 4, + ACTIONS(4571), 1, + anon_sym_COMMA, + STATE(1876), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4574), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 1, - anon_sym___except, - ACTIONS(4535), 1, - anon_sym___finally, - STATE(351), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [69349] = 5, - ACTIONS(3595), 1, + ACTIONS(4020), 1, + anon_sym_COMMA, + STATE(1871), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4576), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [69321] = 5, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_LPAREN, + ACTIONS(4578), 1, + aux_sym_preproc_include_token2, + ACTIONS(4580), 1, + sym_preproc_arg, + STATE(2144), 1, + sym_preproc_params, + [69337] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4537), 1, + ACTIONS(4582), 1, anon_sym_DQUOTE, - ACTIONS(4539), 1, + ACTIONS(4584), 1, aux_sym_string_literal_token1, - ACTIONS(4541), 1, + ACTIONS(4586), 1, sym_escape_sequence, - STATE(1860), 1, + STATE(1905), 1, aux_sym_string_literal_repeat1, - [69365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4517), 1, - anon_sym_COMMA, - STATE(1815), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4543), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [69379] = 4, + [69353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4545), 1, + ACTIONS(4588), 1, anon_sym_SEMI, - STATE(1814), 2, + STATE(1899), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69393] = 4, + [69367] = 5, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4559), 1, + aux_sym_string_literal_token1, + ACTIONS(4561), 1, + sym_escape_sequence, + ACTIONS(4590), 1, + anon_sym_DQUOTE, + STATE(1911), 1, + aux_sym_string_literal_repeat1, + [69383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, + ACTIONS(4592), 1, anon_sym_COMMA, - STATE(1838), 1, + STATE(1921), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4550), 2, + ACTIONS(4594), 2, anon_sym_RPAREN, anon_sym_COLON, - [69407] = 4, - ACTIONS(3), 1, + [69397] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4552), 1, - anon_sym_SEMI, - STATE(1737), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [69421] = 5, - ACTIONS(3595), 1, + ACTIONS(4596), 1, + anon_sym_DQUOTE, + ACTIONS(4598), 1, + aux_sym_string_literal_token1, + ACTIONS(4600), 1, + sym_escape_sequence, + STATE(1872), 1, + aux_sym_string_literal_repeat1, + [69413] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(4496), 1, anon_sym_LPAREN, - ACTIONS(4554), 1, + ACTIONS(4602), 1, aux_sym_preproc_include_token2, - ACTIONS(4556), 1, + ACTIONS(4604), 1, sym_preproc_arg, - STATE(2112), 1, + STATE(2070), 1, sym_preproc_params, - [69437] = 4, + [69429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, + ACTIONS(4606), 1, anon_sym_COMMA, - STATE(1841), 1, + STATE(1917), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4561), 2, + ACTIONS(4608), 2, anon_sym_RPAREN, anon_sym_COLON, - [69451] = 4, + [69443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4563), 1, - anon_sym_SEMI, - STATE(1858), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [69465] = 4, + ACTIONS(3943), 1, + sym_identifier, + ACTIONS(4610), 1, + aux_sym_preproc_if_token2, + STATE(1870), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [69457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4565), 1, + ACTIONS(4612), 1, anon_sym___except, - ACTIONS(4567), 1, + ACTIONS(4614), 1, anon_sym___finally, - STATE(204), 2, + STATE(408), 2, sym_seh_except_clause, sym_seh_finally_clause, - [69479] = 2, + [69471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 1, + anon_sym_COMMA, + STATE(1882), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4616), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4618), 1, + anon_sym_SEMI, + STATE(1895), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 4, + ACTIONS(4620), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [69489] = 4, + [69509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4571), 1, + ACTIONS(4622), 1, anon_sym_SEMI, - STATE(1863), 2, + STATE(1850), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69503] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4573), 1, - anon_sym_DQUOTE, - ACTIONS(4575), 1, - aux_sym_string_literal_token1, - ACTIONS(4578), 1, - sym_escape_sequence, - STATE(1846), 1, - aux_sym_string_literal_repeat1, - [69519] = 5, - ACTIONS(3595), 1, + [69523] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(4496), 1, anon_sym_LPAREN, - ACTIONS(4581), 1, + ACTIONS(4624), 1, aux_sym_preproc_include_token2, - ACTIONS(4583), 1, + ACTIONS(4626), 1, sym_preproc_arg, - STATE(2110), 1, + STATE(2101), 1, sym_preproc_params, - [69535] = 4, + [69539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 1, + ACTIONS(4628), 1, anon_sym_COMMA, - STATE(1841), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4587), 2, + STATE(1913), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4630), 2, anon_sym_RPAREN, anon_sym_COLON, - [69549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4589), 1, - anon_sym_SEMI, - STATE(1737), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [69563] = 5, + [69553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3990), 1, sym_identifier, - ACTIONS(4420), 1, + ACTIONS(4454), 1, aux_sym_preproc_if_token2, - STATE(1822), 1, + STATE(1869), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2334), 1, + STATE(2323), 1, sym_enumerator, - [69579] = 4, + [69569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4591), 1, + ACTIONS(4632), 1, anon_sym_SEMI, - STATE(1737), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69593] = 5, - ACTIONS(3), 1, + [69583] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_LPAREN2, - ACTIONS(4304), 1, - anon_sym_LBRACK, - ACTIONS(4593), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_parameter_list, - [69609] = 4, - ACTIONS(3), 1, + ACTIONS(4634), 1, + anon_sym_DQUOTE, + ACTIONS(4636), 1, + aux_sym_string_literal_token1, + ACTIONS(4638), 1, + sym_escape_sequence, + STATE(1915), 1, + aux_sym_string_literal_repeat1, + [69599] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4595), 1, - anon_sym___except, - ACTIONS(4597), 1, - anon_sym___finally, - STATE(282), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [69623] = 4, - ACTIONS(3), 1, + ACTIONS(4496), 1, + anon_sym_LPAREN, + ACTIONS(4640), 1, + aux_sym_preproc_include_token2, + ACTIONS(4642), 1, + sym_preproc_arg, + STATE(2148), 1, + sym_preproc_params, + [69615] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3970), 1, - anon_sym_COMMA, - STATE(1810), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4599), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [69637] = 4, + ACTIONS(4496), 1, + anon_sym_LPAREN, + ACTIONS(4644), 1, + aux_sym_preproc_include_token2, + ACTIONS(4646), 1, + sym_preproc_arg, + STATE(2136), 1, + sym_preproc_params, + [69631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4601), 1, + ACTIONS(4648), 1, anon_sym_SEMI, - STATE(1737), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69651] = 4, + [69645] = 5, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4650), 1, + anon_sym_DQUOTE, + ACTIONS(4652), 1, + aux_sym_string_literal_token1, + ACTIONS(4654), 1, + sym_escape_sequence, + STATE(1881), 1, + aux_sym_string_literal_repeat1, + [69661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4603), 1, + ACTIONS(4656), 1, anon_sym_SEMI, - STATE(1839), 2, + STATE(1916), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69665] = 4, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4605), 1, - anon_sym_SQUOTE, - STATE(1865), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4500), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [69679] = 4, + [69675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4607), 1, + ACTIONS(4658), 1, anon_sym_SEMI, - STATE(1737), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69693] = 4, - ACTIONS(3595), 1, + [69689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym___except, + ACTIONS(4662), 1, + anon_sym___finally, + STATE(300), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69703] = 4, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4609), 1, + ACTIONS(4664), 1, anon_sym_SQUOTE, - STATE(1865), 1, + STATE(1910), 1, aux_sym_char_literal_repeat1, - ACTIONS(4500), 2, + ACTIONS(4565), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [69707] = 5, - ACTIONS(3595), 1, + [69717] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(4559), 1, aux_sym_string_literal_token1, - ACTIONS(4494), 1, + ACTIONS(4561), 1, sym_escape_sequence, - ACTIONS(4611), 1, + ACTIONS(4666), 1, anon_sym_DQUOTE, - STATE(1846), 1, + STATE(1911), 1, aux_sym_string_literal_repeat1, - [69723] = 5, + [69733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4668), 1, + anon_sym_SEMI, + STATE(1902), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4670), 1, anon_sym_COMMA, - ACTIONS(4615), 1, + ACTIONS(4672), 1, anon_sym_RPAREN, - STATE(1909), 1, + STATE(1929), 1, aux_sym__old_style_parameter_list_repeat1, - STATE(1934), 1, + STATE(1990), 1, aux_sym_parameter_list_repeat1, - [69739] = 5, - ACTIONS(3595), 1, + [69763] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, - aux_sym_string_literal_token1, - ACTIONS(4494), 1, - sym_escape_sequence, - ACTIONS(4617), 1, - anon_sym_DQUOTE, - STATE(1846), 1, - aux_sym_string_literal_repeat1, - [69755] = 4, + ACTIONS(4229), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [69773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4619), 1, + ACTIONS(4674), 1, anon_sym_SEMI, - STATE(1737), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_COMMA, - STATE(1838), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4623), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [69783] = 4, - ACTIONS(3595), 1, + [69787] = 4, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4625), 1, + ACTIONS(4676), 1, anon_sym_SQUOTE, - STATE(1865), 1, + STATE(1910), 1, aux_sym_char_literal_repeat1, - ACTIONS(4627), 2, + ACTIONS(4678), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [69797] = 5, - ACTIONS(3595), 1, + [69801] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4630), 1, - aux_sym_preproc_include_token2, - ACTIONS(4632), 1, - sym_preproc_arg, - STATE(2055), 1, - sym_preproc_params, - [69813] = 4, - ACTIONS(3), 1, + ACTIONS(4681), 1, + anon_sym_DQUOTE, + ACTIONS(4683), 1, + aux_sym_string_literal_token1, + ACTIONS(4686), 1, + sym_escape_sequence, + STATE(1911), 1, + aux_sym_string_literal_repeat1, + [69817] = 4, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4053), 1, - anon_sym_COMMA, - STATE(1824), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4634), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [69827] = 4, + ACTIONS(4689), 1, + anon_sym_SQUOTE, + STATE(1910), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4565), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, + ACTIONS(4628), 1, anon_sym_COMMA, - STATE(1864), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4636), 2, + STATE(1876), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4691), 2, anon_sym_RPAREN, anon_sym_COLON, - [69841] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4638), 1, - aux_sym_preproc_include_token2, - ACTIONS(4640), 1, - sym_preproc_arg, - STATE(2115), 1, - sym_preproc_params, - [69857] = 4, + [69845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4642), 1, + ACTIONS(4693), 1, anon_sym_SEMI, - STATE(1825), 2, + STATE(1922), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69871] = 4, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4644), 1, - anon_sym_SQUOTE, - STATE(1865), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4500), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [69885] = 5, - ACTIONS(3595), 1, + [69859] = 5, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(4559), 1, aux_sym_string_literal_token1, - ACTIONS(4494), 1, + ACTIONS(4561), 1, sym_escape_sequence, - ACTIONS(4646), 1, + ACTIONS(4695), 1, anon_sym_DQUOTE, - STATE(1846), 1, + STATE(1911), 1, aux_sym_string_literal_repeat1, - [69901] = 5, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - aux_sym_preproc_include_token2, - ACTIONS(4650), 1, - sym_preproc_arg, - STATE(2075), 1, - sym_preproc_params, - [69917] = 4, + [69875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4652), 1, + ACTIONS(4697), 1, anon_sym_SEMI, - STATE(1855), 2, + STATE(1771), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69931] = 4, + [69889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 1, + ACTIONS(4606), 1, anon_sym_COMMA, - STATE(1848), 1, + STATE(1862), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4654), 2, + ACTIONS(4699), 2, anon_sym_RPAREN, anon_sym_COLON, - [69945] = 4, + [69903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(4020), 1, + anon_sym_COMMA, + STATE(1871), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4701), 2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(4656), 1, + [69917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4703), 1, anon_sym_SEMI, - STATE(1820), 2, + STATE(1909), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [69959] = 5, - ACTIONS(3595), 1, + [69931] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 1, - anon_sym_DQUOTE, - ACTIONS(4660), 1, - aux_sym_string_literal_token1, - ACTIONS(4662), 1, - sym_escape_sequence, - STATE(1819), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4002), 1, + anon_sym_LPAREN2, + ACTIONS(4350), 1, + anon_sym_LBRACK, + ACTIONS(4705), 1, + anon_sym_RPAREN, + STATE(1837), 1, + sym_parameter_list, + [69947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 1, + anon_sym_COMMA, + STATE(1921), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4710), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4712), 1, + anon_sym_SEMI, + STATE(1771), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, [69975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 1, + ACTIONS(4714), 1, anon_sym___except, - ACTIONS(4666), 1, + ACTIONS(4716), 1, anon_sym___finally, - STATE(130), 2, + STATE(104), 2, sym_seh_except_clause, sym_seh_finally_clause, [69989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(4718), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, [70002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - anon_sym_LBRACE, - ACTIONS(4670), 1, - sym_identifier, - STATE(1390), 1, - sym_enumerator_list, - [70015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4672), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4674), 1, - anon_sym_SEMI, - STATE(1918), 1, - aux_sym_declaration_repeat1, - [70041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4676), 1, + ACTIONS(4720), 1, anon_sym_SEMI, - STATE(1879), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70054] = 4, + [70015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4722), 1, anon_sym_COMMA, - ACTIONS(4680), 1, - anon_sym_RBRACK_RBRACK, - STATE(1967), 1, - aux_sym_attribute_declaration_repeat1, - [70067] = 4, + ACTIONS(4724), 1, + anon_sym_RPAREN, + STATE(1982), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [70028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4682), 1, + ACTIONS(4726), 1, anon_sym_SEMI, - STATE(1910), 1, + STATE(1945), 1, aux_sym_declaration_repeat1, - [70080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3396), 1, - anon_sym_COMMA, - ACTIONS(4684), 1, - anon_sym_RPAREN, - STATE(1894), 1, - aux_sym_argument_list_repeat1, - [70093] = 4, + [70041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - anon_sym_RPAREN, - ACTIONS(4688), 1, - anon_sym_COLON, - STATE(1914), 1, - sym_gnu_asm_output_operand_list, - [70106] = 4, + ACTIONS(2067), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4728), 1, + sym_identifier, + STATE(2151), 1, + sym_variadic_parameter, + [70054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(4730), 1, anon_sym_COMMA, - ACTIONS(3410), 1, + ACTIONS(4732), 1, anon_sym_RPAREN, - STATE(2004), 1, - aux_sym_argument_list_repeat1, - [70119] = 4, + STATE(1997), 1, + aux_sym__old_style_parameter_list_repeat1, + [70067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4734), 1, anon_sym_SEMI, - STATE(1922), 1, + STATE(1977), 1, aux_sym_declaration_repeat1, - [70132] = 4, + [70080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4692), 1, + ACTIONS(4736), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70145] = 4, + [70093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(4738), 1, anon_sym_COMMA, - ACTIONS(4694), 1, + ACTIONS(4740), 1, anon_sym_RPAREN, - STATE(1894), 1, - aux_sym_argument_list_repeat1, - [70158] = 4, + STATE(1988), 1, + aux_sym_preproc_params_repeat1, + [70106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(4696), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70171] = 4, + ACTIONS(4742), 1, + anon_sym_RPAREN, + STATE(1935), 1, + aux_sym_argument_list_repeat1, + [70119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4744), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4700), 1, anon_sym_COLON, - STATE(2417), 1, - sym_gnu_asm_goto_list, - [70184] = 4, + [70128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3500), 1, + ACTIONS(3480), 1, anon_sym_RPAREN, - ACTIONS(4702), 1, + ACTIONS(4746), 1, anon_sym_COMMA, - STATE(1894), 1, + STATE(1935), 1, aux_sym_argument_list_repeat1, - [70197] = 4, + [70141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, - anon_sym_RPAREN, - ACTIONS(4705), 1, + ACTIONS(4749), 3, anon_sym_COMMA, - STATE(1895), 1, - aux_sym_preproc_argument_list_repeat1, - [70210] = 4, - ACTIONS(3595), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [70150] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, - aux_sym_preproc_include_token2, - ACTIONS(4710), 1, - anon_sym_LPAREN2, - STATE(2311), 1, - sym_preproc_argument_list, - [70223] = 4, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4753), 1, + anon_sym_RBRACK_RBRACK, + STATE(1955), 1, + aux_sym_attribute_declaration_repeat1, + [70163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3406), 1, + ACTIONS(3739), 1, + anon_sym_RPAREN, + ACTIONS(4755), 1, anon_sym_COMMA, - ACTIONS(3408), 1, - anon_sym_RBRACE, STATE(1938), 1, - aux_sym_initializer_list_repeat1, - [70236] = 4, + aux_sym_preproc_argument_list_repeat1, + [70176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4712), 1, + ACTIONS(4758), 1, anon_sym_COMMA, - ACTIONS(4715), 1, + ACTIONS(4761), 1, anon_sym_RPAREN, - STATE(1898), 1, + STATE(1939), 1, aux_sym_preproc_params_repeat1, - [70249] = 4, + [70189] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4763), 1, + anon_sym_RPAREN, + ACTIONS(4765), 1, + anon_sym_COLON, + STATE(1962), 1, + sym_gnu_asm_output_operand_list, + [70202] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4767), 1, + anon_sym_COMMA, + ACTIONS(4770), 1, + anon_sym_RPAREN, + STATE(1941), 1, + aux_sym_parameter_list_repeat1, + [70215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4717), 1, + ACTIONS(4772), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1968), 1, aux_sym_declaration_repeat1, - [70262] = 4, + [70228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4719), 1, + ACTIONS(4774), 1, anon_sym_SEMI, - STATE(1892), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70275] = 4, + [70241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, - anon_sym_COLON, - ACTIONS(4721), 1, + ACTIONS(4776), 1, + anon_sym_COMMA, + ACTIONS(4779), 1, anon_sym_RPAREN, - STATE(1928), 1, - sym_gnu_asm_output_operand_list, - [70288] = 4, + STATE(1944), 1, + aux_sym_generic_expression_repeat1, + [70254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4723), 1, + ACTIONS(4781), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70301] = 4, + [70267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4783), 1, anon_sym_COMMA, - ACTIONS(4725), 1, - anon_sym_SEMI, - STATE(1923), 1, - aux_sym_declaration_repeat1, - [70314] = 4, + ACTIONS(4785), 1, + anon_sym_RPAREN, + STATE(1990), 1, + aux_sym_parameter_list_repeat1, + [70280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - sym_identifier, - STATE(968), 1, - sym_field_declaration_list, - [70327] = 2, + ACTIONS(3440), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [70289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 3, + ACTIONS(4787), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [70336] = 4, + [70298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(2147), 1, + anon_sym_RBRACE, + ACTIONS(4789), 1, anon_sym_COMMA, - ACTIONS(4731), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70349] = 4, + STATE(2027), 1, + aux_sym_initializer_list_repeat1, + [70311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4791), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [70320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_LBRACE, + ACTIONS(4793), 1, + sym_identifier, + STATE(1029), 1, + sym_field_declaration_list, + [70333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4722), 1, anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70362] = 4, + ACTIONS(4795), 1, + anon_sym_RPAREN, + STATE(1926), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [70346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4797), 1, + anon_sym_EQ, + ACTIONS(4243), 2, anon_sym_COMMA, - ACTIONS(4735), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70375] = 4, + anon_sym_RBRACE, + [70357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4799), 3, anon_sym_COMMA, - ACTIONS(4739), 1, anon_sym_RPAREN, - STATE(1956), 1, - aux_sym__old_style_parameter_list_repeat1, - [70388] = 4, + anon_sym_COLON, + [70366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4801), 1, anon_sym_COMMA, - ACTIONS(4741), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70401] = 4, + ACTIONS(4804), 1, + anon_sym_RBRACK_RBRACK, + STATE(1955), 1, + aux_sym_attribute_declaration_repeat1, + [70379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, + ACTIONS(4751), 1, anon_sym_COMMA, - ACTIONS(4745), 1, - anon_sym_RPAREN, - STATE(1979), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [70414] = 4, + ACTIONS(4806), 1, + anon_sym_RBRACK_RBRACK, + STATE(1955), 1, + aux_sym_attribute_declaration_repeat1, + [70392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4747), 1, + ACTIONS(4808), 1, anon_sym_SEMI, - STATE(1899), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70427] = 4, + [70405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4812), 1, + anon_sym_RPAREN, + ACTIONS(4810), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [70416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, + ACTIONS(3155), 1, anon_sym_LBRACE, - ACTIONS(4749), 1, + ACTIONS(4814), 1, sym_identifier, - STATE(1390), 1, + STATE(1212), 1, sym_enumerator_list, + [70429] = 3, + ACTIONS(3695), 1, + sym_comment, + STATE(1873), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4816), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, [70440] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4818), 1, + anon_sym_RBRACK_RBRACK, + STATE(1956), 1, + aux_sym_attribute_declaration_repeat1, + [70453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, anon_sym_RPAREN, - ACTIONS(4753), 1, + ACTIONS(4822), 1, anon_sym_COLON, - STATE(1931), 1, + STATE(1989), 1, sym_gnu_asm_input_operand_list, - [70453] = 4, + [70466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4755), 1, + ACTIONS(4824), 1, anon_sym_SEMI, - STATE(2185), 1, + STATE(2304), 1, sym_attribute_specifier, - [70466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4757), 1, - anon_sym_COMMA, - ACTIONS(4760), 1, - anon_sym_RPAREN, - STATE(1916), 1, - aux_sym_parameter_list_repeat1, [70479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4762), 1, - sym_identifier, - STATE(2096), 1, - sym_variadic_parameter, - [70492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4764), 1, + ACTIONS(4826), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70505] = 4, + [70492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_COMMA, - ACTIONS(4769), 1, + ACTIONS(4765), 1, + anon_sym_COLON, + ACTIONS(4828), 1, anon_sym_RPAREN, - STATE(1919), 1, - aux_sym_generic_expression_repeat1, - [70518] = 4, + STATE(1985), 1, + sym_gnu_asm_output_operand_list, + [70505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4771), 1, + ACTIONS(4830), 1, anon_sym_SEMI, - STATE(1935), 1, + STATE(1981), 1, aux_sym_declaration_repeat1, - [70531] = 4, + [70518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4773), 1, + ACTIONS(4832), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70544] = 4, + [70531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4775), 1, + ACTIONS(4834), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70557] = 4, + [70544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4777), 1, + ACTIONS(4836), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1964), 1, aux_sym_declaration_repeat1, - [70570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4678), 1, - anon_sym_COMMA, - ACTIONS(4779), 1, - anon_sym_RBRACK_RBRACK, - STATE(1981), 1, - aux_sym_attribute_declaration_repeat1, - [70583] = 4, + [70557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4838), 3, anon_sym_COMMA, - ACTIONS(4781), 1, - anon_sym_RBRACK_RBRACK, - STATE(1884), 1, - aux_sym_attribute_declaration_repeat1, - [70596] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [70566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3643), 1, anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4840), 1, anon_sym_RPAREN, - STATE(1895), 1, + STATE(1938), 1, aux_sym_preproc_argument_list_repeat1, - [70609] = 4, + [70579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4785), 1, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4842), 1, anon_sym_SEMI, - STATE(1943), 1, - aux_sym_declaration_repeat1, - [70622] = 4, + STATE(2196), 1, + sym_attribute_specifier, + [70592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4787), 1, - anon_sym_RPAREN, - STATE(1989), 1, - sym_gnu_asm_input_operand_list, - [70635] = 4, - ACTIONS(3595), 1, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(4844), 1, + sym_identifier, + STATE(1435), 1, + sym_enumerator_list, + [70605] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4710), 1, - anon_sym_LPAREN2, - ACTIONS(4789), 1, + STATE(1904), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4846), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70616] = 4, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4848), 1, aux_sym_preproc_include_token2, - STATE(2311), 1, + ACTIONS(4850), 1, + anon_sym_LPAREN2, + STATE(2371), 1, sym_preproc_argument_list, - [70648] = 4, + [70629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4852), 1, + anon_sym_RBRACK_RBRACK, + STATE(1991), 1, + aux_sym_attribute_declaration_repeat1, + [70642] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4791), 1, + ACTIONS(4854), 1, anon_sym_SEMI, - STATE(1946), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70661] = 4, + [70655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 1, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(4856), 1, anon_sym_RPAREN, - ACTIONS(4795), 1, - anon_sym_COLON, - STATE(1893), 1, - sym_gnu_asm_clobber_list, - [70674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2697), 1, - anon_sym_LBRACE, - ACTIONS(4797), 1, - sym_identifier, - STATE(974), 1, - sym_field_declaration_list, - [70687] = 2, + STATE(1944), 1, + aux_sym_generic_expression_repeat1, + [70668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 3, + ACTIONS(4858), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [70696] = 4, + ACTIONS(4861), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [70681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(4803), 1, + ACTIONS(3464), 1, anon_sym_RPAREN, - STATE(1916), 1, - aux_sym_parameter_list_repeat1, - [70709] = 4, + STATE(1935), 1, + aux_sym_argument_list_repeat1, + [70694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4805), 1, + ACTIONS(4863), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70722] = 2, + [70707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4807), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [70731] = 4, + ACTIONS(4865), 1, + anon_sym_COMMA, + ACTIONS(4868), 1, + anon_sym_RPAREN, + STATE(1982), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [70720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4870), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(2000), 1, aux_sym_declaration_repeat1, - [70744] = 4, + [70733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym_RBRACE, - ACTIONS(4811), 1, + ACTIONS(4872), 3, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_initializer_list_repeat1, - [70757] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [70742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4813), 1, - anon_sym_SEMI, - STATE(2215), 1, - sym_attribute_specifier, - [70770] = 4, + ACTIONS(4822), 1, + anon_sym_COLON, + ACTIONS(4874), 1, + anon_sym_RPAREN, + STATE(1993), 1, + sym_gnu_asm_input_operand_list, + [70755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4876), 3, anon_sym_COMMA, - ACTIONS(4815), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70783] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [70764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(3643), 1, anon_sym_COMMA, - ACTIONS(4817), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70796] = 4, + ACTIONS(4878), 1, + anon_sym_RPAREN, + STATE(1938), 1, + aux_sym_preproc_argument_list_repeat1, + [70777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(4738), 1, anon_sym_COMMA, - ACTIONS(3404), 1, + ACTIONS(4880), 1, anon_sym_RPAREN, - STATE(1977), 1, - aux_sym_argument_list_repeat1, - [70809] = 4, + STATE(1939), 1, + aux_sym_preproc_params_repeat1, + [70790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4819), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70822] = 4, + ACTIONS(4882), 1, + anon_sym_RPAREN, + ACTIONS(4884), 1, + anon_sym_COLON, + STATE(1992), 1, + sym_gnu_asm_clobber_list, + [70803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4783), 1, anon_sym_COMMA, - ACTIONS(4821), 1, - anon_sym_SEMI, - STATE(1948), 1, - aux_sym_declaration_repeat1, - [70835] = 4, + ACTIONS(4886), 1, + anon_sym_RPAREN, + STATE(1941), 1, + aux_sym_parameter_list_repeat1, + [70816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4751), 1, anon_sym_COMMA, - ACTIONS(4823), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70848] = 4, + ACTIONS(4888), 1, + anon_sym_RBRACK_RBRACK, + STATE(1955), 1, + aux_sym_attribute_declaration_repeat1, + [70829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4825), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70861] = 4, + ACTIONS(4890), 1, + anon_sym_RPAREN, + ACTIONS(4892), 1, + anon_sym_COLON, + STATE(2213), 1, + sym_gnu_asm_goto_list, + [70842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4827), 1, - anon_sym_SEMI, - STATE(1906), 1, - aux_sym_declaration_repeat1, - [70874] = 4, + ACTIONS(4884), 1, + anon_sym_COLON, + ACTIONS(4894), 1, + anon_sym_RPAREN, + STATE(2007), 1, + sym_gnu_asm_clobber_list, + [70855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70887] = 4, + ACTIONS(4765), 1, + anon_sym_COLON, + ACTIONS(4896), 1, + anon_sym_RPAREN, + STATE(2033), 1, + sym_gnu_asm_output_operand_list, + [70868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4831), 1, + ACTIONS(4898), 1, anon_sym_SEMI, - STATE(1950), 1, + STATE(2038), 1, aux_sym_declaration_repeat1, - [70900] = 4, + [70881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4751), 1, anon_sym_COMMA, - ACTIONS(4833), 1, - anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [70913] = 2, + ACTIONS(4900), 1, + anon_sym_RBRACK_RBRACK, + STATE(1937), 1, + aux_sym_attribute_declaration_repeat1, + [70894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 3, + ACTIONS(4902), 1, anon_sym_COMMA, + ACTIONS(4905), 1, anon_sym_RPAREN, - anon_sym_COLON, - [70922] = 2, + STATE(1997), 1, + aux_sym__old_style_parameter_list_repeat1, + [70907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 3, + ACTIONS(3446), 1, anon_sym_COMMA, + ACTIONS(3466), 1, anon_sym_RPAREN, - anon_sym_COLON, - [70931] = 4, - ACTIONS(3), 1, + STATE(1980), 1, + aux_sym_argument_list_repeat1, + [70920] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_COMMA, - ACTIONS(4839), 1, - anon_sym_RPAREN, - STATE(1919), 1, - aux_sym_generic_expression_repeat1, - [70944] = 4, + STATE(1912), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4907), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4841), 1, + ACTIONS(4909), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [70957] = 3, - ACTIONS(3595), 1, - sym_comment, - STATE(1821), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4843), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [70968] = 4, + [70944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4845), 1, + ACTIONS(3442), 1, anon_sym_COMMA, - ACTIONS(4848), 1, - anon_sym_RPAREN, - STATE(1956), 1, - aux_sym__old_style_parameter_list_repeat1, - [70981] = 4, + ACTIONS(3444), 1, + anon_sym_RBRACE, + STATE(1949), 1, + aux_sym_initializer_list_repeat1, + [70957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4850), 1, - anon_sym_RBRACK_RBRACK, - STATE(1967), 1, - aux_sym_attribute_declaration_repeat1, - [70994] = 2, + ACTIONS(4911), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [70970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [71003] = 4, + ACTIONS(3446), 1, + anon_sym_COMMA, + ACTIONS(3448), 1, + anon_sym_RPAREN, + STATE(2043), 1, + aux_sym_argument_list_repeat1, + [70983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4913), 1, anon_sym_SEMI, - STATE(1937), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71016] = 4, + [70996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4856), 1, + ACTIONS(4915), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71029] = 4, + [71009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4858), 1, + ACTIONS(4917), 1, anon_sym_SEMI, - STATE(1976), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71042] = 4, + [71022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, - anon_sym_RBRACE, - ACTIONS(4860), 1, + ACTIONS(4892), 1, + anon_sym_COLON, + ACTIONS(4919), 1, + anon_sym_RPAREN, + STATE(2424), 1, + sym_gnu_asm_goto_list, + [71035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_initializer_list_repeat1, - [71055] = 4, + ACTIONS(4921), 1, + anon_sym_SEMI, + STATE(2004), 1, + aux_sym_declaration_repeat1, + [71048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4863), 1, - anon_sym_RBRACK_RBRACK, - STATE(1957), 1, - aux_sym_attribute_declaration_repeat1, - [71068] = 4, + ACTIONS(4923), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4865), 1, + ACTIONS(4925), 1, anon_sym_SEMI, - STATE(1985), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71081] = 4, + [71074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4870), 1, - anon_sym_RPAREN, - STATE(1965), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [71094] = 4, + ACTIONS(4927), 1, + anon_sym_SEMI, + STATE(2005), 1, + aux_sym_declaration_repeat1, + [71087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4874), 1, - anon_sym_RPAREN, - STATE(1984), 1, - aux_sym_preproc_params_repeat1, - [71107] = 4, + ACTIONS(4929), 1, + anon_sym_SEMI, + STATE(2009), 1, + aux_sym_declaration_repeat1, + [71100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4879), 1, - anon_sym_RBRACK_RBRACK, - STATE(1967), 1, - aux_sym_attribute_declaration_repeat1, - [71120] = 4, + ACTIONS(4931), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(2755), 1, anon_sym_LBRACE, - ACTIONS(4881), 1, + ACTIONS(4933), 1, sym_identifier, - STATE(959), 1, + STATE(1004), 1, sym_field_declaration_list, - [71133] = 4, - ACTIONS(3595), 1, + [71126] = 4, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4710), 1, + ACTIONS(4850), 1, anon_sym_LPAREN2, - ACTIONS(4883), 1, + ACTIONS(4935), 1, aux_sym_preproc_include_token2, - STATE(2311), 1, + STATE(2371), 1, sym_preproc_argument_list, - [71146] = 4, + [71139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4888), 1, + ACTIONS(4937), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71159] = 3, + [71152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 1, - anon_sym_RPAREN, - ACTIONS(4890), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [71170] = 4, - ACTIONS(3595), 1, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71165] = 4, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4710), 1, + ACTIONS(4850), 1, anon_sym_LPAREN2, - ACTIONS(4894), 1, + ACTIONS(4941), 1, aux_sym_preproc_include_token2, - STATE(2311), 1, + STATE(2371), 1, sym_preproc_argument_list, - [71183] = 3, + [71178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_EQ, - ACTIONS(4148), 2, + ACTIONS(4342), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [71194] = 2, + ACTIONS(4943), 1, + anon_sym_SEMI, + STATE(2013), 1, + aux_sym_declaration_repeat1, + [71191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 3, + ACTIONS(4342), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [71203] = 2, + ACTIONS(4945), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 3, + ACTIONS(4342), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [71212] = 4, + ACTIONS(4947), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4902), 1, + ACTIONS(4949), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(2016), 1, aux_sym_declaration_repeat1, - [71225] = 4, + [71230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(3398), 1, - anon_sym_RPAREN, - STATE(1894), 1, - aux_sym_argument_list_repeat1, - [71238] = 4, + ACTIONS(4951), 1, + anon_sym_SEMI, + STATE(2020), 1, + aux_sym_declaration_repeat1, + [71243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4904), 1, - anon_sym_RPAREN, - STATE(1895), 1, - aux_sym_preproc_argument_list_repeat1, - [71251] = 4, + ACTIONS(4953), 1, + anon_sym_SEMI, + STATE(1931), 1, + aux_sym_declaration_repeat1, + [71256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_COMMA, - ACTIONS(4906), 1, - anon_sym_RPAREN, - STATE(1965), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [71264] = 4, + ACTIONS(4955), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [71265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - anon_sym_LBRACE, - ACTIONS(4908), 1, - sym_identifier, - STATE(1153), 1, - sym_enumerator_list, - [71277] = 4, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4957), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(3468), 1, + anon_sym_RBRACE, + ACTIONS(4959), 1, anon_sym_COMMA, - ACTIONS(4910), 1, - anon_sym_RBRACK_RBRACK, - STATE(1967), 1, - aux_sym_attribute_declaration_repeat1, - [71290] = 4, + STATE(2027), 1, + aux_sym_initializer_list_repeat1, + [71291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_COMMA, - ACTIONS(4912), 1, - anon_sym_RPAREN, - STATE(1919), 1, - aux_sym_generic_expression_repeat1, - [71303] = 4, + ACTIONS(3930), 1, + anon_sym___attribute__, + ACTIONS(4962), 1, + anon_sym_SEMI, + STATE(2320), 1, + sym_attribute_specifier, + [71304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_COLON, - ACTIONS(4914), 1, - anon_sym_RPAREN, - STATE(2241), 1, - sym_gnu_asm_goto_list, - [71316] = 4, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4964), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4966), 3, anon_sym_COMMA, - ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(1898), 1, - aux_sym_preproc_params_repeat1, - [71329] = 4, + anon_sym_COLON, + [71326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4918), 1, + ACTIONS(4968), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71342] = 4, + [71339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4920), 1, + ACTIONS(4970), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(2026), 1, aux_sym_declaration_repeat1, - [71355] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4688), 1, - anon_sym_COLON, - ACTIONS(4922), 1, - anon_sym_RPAREN, - STATE(2014), 1, - sym_gnu_asm_output_operand_list, - [71368] = 4, + [71352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, + ACTIONS(4822), 1, anon_sym_COLON, - ACTIONS(4924), 1, + ACTIONS(4972), 1, anon_sym_RPAREN, - STATE(1983), 1, - sym_gnu_asm_clobber_list, - [71381] = 4, + STATE(2049), 1, + sym_gnu_asm_input_operand_list, + [71365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, + ACTIONS(4765), 1, anon_sym_COLON, - ACTIONS(4926), 1, + ACTIONS(4974), 1, anon_sym_RPAREN, - STATE(2007), 1, - sym_gnu_asm_clobber_list, - [71394] = 4, + STATE(2051), 1, + sym_gnu_asm_output_operand_list, + [71378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_COLON, - ACTIONS(4928), 1, - anon_sym_RPAREN, - STATE(2246), 1, - sym_gnu_asm_goto_list, - [71407] = 4, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4710), 1, - anon_sym_LPAREN2, - ACTIONS(4930), 1, - aux_sym_preproc_include_token2, - STATE(2311), 1, - sym_preproc_argument_list, - [71420] = 4, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(4976), 1, + anon_sym_SEMI, + STATE(2052), 1, + aux_sym_declaration_repeat1, + [71391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 1, - anon_sym_RBRACE, - ACTIONS(4932), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_initializer_list_repeat1, - [71433] = 4, + ACTIONS(4978), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4934), 1, + ACTIONS(4980), 1, anon_sym_SEMI, - STATE(2012), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71446] = 3, - ACTIONS(3595), 1, - sym_comment, - STATE(1871), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4936), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [71457] = 4, + [71417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4938), 1, + ACTIONS(4982), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71470] = 4, + [71430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4940), 1, + ACTIONS(4984), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71483] = 4, + [71443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4942), 1, + ACTIONS(4986), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(2029), 1, aux_sym_declaration_repeat1, - [71496] = 4, + [71456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 1, - anon_sym_COLON, - ACTIONS(4944), 1, - anon_sym_RPAREN, - STATE(1988), 1, - sym_gnu_asm_input_operand_list, - [71509] = 4, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(4988), 1, + sym_identifier, + STATE(1435), 1, + sym_enumerator_list, + [71469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4946), 1, + ACTIONS(4990), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(2059), 1, aux_sym_declaration_repeat1, - [71522] = 4, + [71482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 1, - anon_sym_COLON, - ACTIONS(4948), 1, + ACTIONS(3446), 1, + anon_sym_COMMA, + ACTIONS(3450), 1, anon_sym_RPAREN, - STATE(1990), 1, - sym_gnu_asm_clobber_list, - [71535] = 4, + STATE(1935), 1, + aux_sym_argument_list_repeat1, + [71495] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, + sym_identifier, + STATE(1005), 1, + sym_field_declaration_list, + [71508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3643), 1, + anon_sym_COMMA, + ACTIONS(4994), 1, + anon_sym_RPAREN, + STATE(1938), 1, + aux_sym_preproc_argument_list_repeat1, + [71521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3400), 1, + ACTIONS(3458), 1, anon_sym_COMMA, - ACTIONS(3402), 1, + ACTIONS(3460), 1, anon_sym_RBRACE, - STATE(1992), 1, + STATE(2054), 1, aux_sym_initializer_list_repeat1, - [71548] = 4, + [71534] = 3, + ACTIONS(3695), 1, + sym_comment, + STATE(1875), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4996), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [71545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4950), 1, + ACTIONS(4998), 1, anon_sym_SEMI, - STATE(1954), 1, + STATE(2037), 1, aux_sym_declaration_repeat1, - [71561] = 4, + [71558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, - anon_sym_COMMA, - ACTIONS(4952), 1, + ACTIONS(4884), 1, + anon_sym_COLON, + ACTIONS(5000), 1, anon_sym_RPAREN, - STATE(1895), 1, - aux_sym_preproc_argument_list_repeat1, - [71574] = 4, + STATE(2055), 1, + sym_gnu_asm_clobber_list, + [71571] = 4, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4850), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + aux_sym_preproc_include_token2, + STATE(2371), 1, + sym_preproc_argument_list, + [71584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, - anon_sym_COMMA, - ACTIONS(3414), 1, + ACTIONS(4822), 1, + anon_sym_COLON, + ACTIONS(5004), 1, anon_sym_RPAREN, - STATE(1894), 1, - aux_sym_argument_list_repeat1, - [71587] = 4, + STATE(2067), 1, + sym_gnu_asm_input_operand_list, + [71597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4954), 1, + ACTIONS(5006), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71600] = 4, + [71610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(4956), 1, - anon_sym_SEMI, - STATE(1986), 1, - aux_sym_declaration_repeat1, - [71613] = 4, + ACTIONS(5008), 1, + anon_sym_RPAREN, + STATE(1935), 1, + aux_sym_argument_list_repeat1, + [71623] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_RBRACE, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(2027), 1, + aux_sym_initializer_list_repeat1, + [71636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4892), 1, anon_sym_COLON, - ACTIONS(4958), 1, + ACTIONS(5012), 1, anon_sym_RPAREN, - STATE(2366), 1, + STATE(2465), 1, sym_gnu_asm_goto_list, - [71626] = 4, + [71649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4960), 1, + ACTIONS(5014), 1, anon_sym_SEMI, - STATE(1995), 1, + STATE(2066), 1, aux_sym_declaration_repeat1, - [71639] = 4, + [71662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4962), 1, + ACTIONS(5016), 1, anon_sym_SEMI, - STATE(1997), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71652] = 4, + [71675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(5018), 3, anon_sym_COMMA, - ACTIONS(4964), 1, anon_sym_SEMI, - STATE(1970), 1, - aux_sym_declaration_repeat1, - [71665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4688), 1, - anon_sym_COLON, - ACTIONS(4966), 1, - anon_sym_RPAREN, - STATE(1998), 1, - sym_gnu_asm_output_operand_list, - [71678] = 4, + anon_sym___attribute__, + [71684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4968), 1, + ACTIONS(5020), 1, anon_sym_SEMI, - STATE(1970), 1, + STATE(1979), 1, aux_sym_declaration_repeat1, - [71691] = 2, + [71697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 3, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(5022), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [71700] = 4, + STATE(1944), 1, + aux_sym_generic_expression_repeat1, + [71710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(4892), 1, anon_sym_COLON, - ACTIONS(4970), 1, + ACTIONS(5024), 1, anon_sym_RPAREN, - STATE(2000), 1, - sym_gnu_asm_input_operand_list, - [71713] = 4, + STATE(2480), 1, + sym_gnu_asm_goto_list, + [71723] = 4, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4850), 1, + anon_sym_LPAREN2, + ACTIONS(5026), 1, + aux_sym_preproc_include_token2, + STATE(2371), 1, + sym_preproc_argument_list, + [71736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3930), 1, anon_sym___attribute__, - ACTIONS(4972), 1, + ACTIONS(5028), 1, anon_sym_SEMI, - STATE(2254), 1, + STATE(2397), 1, sym_attribute_specifier, - [71726] = 4, + [71749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, + ACTIONS(4342), 1, anon_sym_COMMA, - ACTIONS(4974), 1, - anon_sym_RPAREN, - STATE(1934), 1, - aux_sym_parameter_list_repeat1, - [71739] = 3, - ACTIONS(3595), 1, - sym_comment, - STATE(1857), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4976), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [71750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3880), 1, - anon_sym___attribute__, - ACTIONS(4978), 1, + ACTIONS(5030), 1, anon_sym_SEMI, - STATE(2350), 1, - sym_attribute_specifier, - [71763] = 2, + STATE(1925), 1, + aux_sym_declaration_repeat1, + [71762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 3, + ACTIONS(4342), 1, anon_sym_COMMA, + ACTIONS(5032), 1, anon_sym_SEMI, - anon_sym___attribute__, - [71772] = 3, - ACTIONS(3595), 1, - sym_comment, - STATE(1859), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4982), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [71783] = 2, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 3, + ACTIONS(4342), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [71792] = 2, + ACTIONS(5034), 1, + anon_sym_SEMI, + STATE(1979), 1, + aux_sym_declaration_repeat1, + [71788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4884), 1, anon_sym_COLON, - [71801] = 2, + ACTIONS(5036), 1, + anon_sym_RPAREN, + STATE(2061), 1, + sym_gnu_asm_clobber_list, + [71801] = 3, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5038), 1, + aux_sym_preproc_include_token2, + ACTIONS(5040), 1, + sym_preproc_arg, + [71811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [71809] = 2, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(493), 1, + sym_parenthesized_expression, + [71821] = 3, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5044), 1, + aux_sym_preproc_include_token2, + ACTIONS(5046), 1, + sym_preproc_arg, + [71831] = 3, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5048), 1, + aux_sym_preproc_include_token2, + ACTIONS(5050), 1, + sym_preproc_arg, + [71841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4434), 2, + ACTIONS(4484), 2, anon_sym_COMMA, anon_sym_SEMI, - [71817] = 3, + [71849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 1, - sym_identifier, - ACTIONS(4992), 1, + ACTIONS(3480), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [71827] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4994), 1, - aux_sym_preproc_include_token2, - ACTIONS(4996), 1, - sym_preproc_arg, - [71837] = 3, + [71857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, - STATE(92), 1, + STATE(124), 1, sym_compound_statement, - [71847] = 2, + [71867] = 3, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5052), 1, + aux_sym_preproc_include_token2, + ACTIONS(5054), 1, + sym_preproc_arg, + [71877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 2, + ACTIONS(4761), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [71855] = 3, - ACTIONS(3595), 1, + anon_sym_RPAREN, + [71885] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(4998), 1, + ACTIONS(5056), 1, aux_sym_preproc_include_token2, - ACTIONS(5000), 1, + ACTIONS(5058), 1, sym_preproc_arg, - [71865] = 3, + [71895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5060), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4770), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2078), 1, + STATE(2378), 1, sym_parenthesized_expression, - [71875] = 3, + [71921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(5064), 1, + sym_identifier, + STATE(1961), 1, + sym_attribute, + [71931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(286), 1, + STATE(1858), 1, sym_compound_statement, - [71885] = 3, + [71941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - anon_sym_COMMA, - ACTIONS(5006), 1, + ACTIONS(3998), 1, anon_sym_RBRACE, - [71895] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5008), 1, - aux_sym_preproc_include_token2, - ACTIONS(5010), 1, - sym_preproc_arg, - [71905] = 3, + ACTIONS(5066), 1, + anon_sym_COMMA, + [71951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - sym_identifier, - STATE(1963), 1, - sym_attribute, - [71915] = 3, - ACTIONS(3595), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(531), 1, + sym_parenthesized_expression, + [71961] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, - aux_sym_preproc_include_token2, - ACTIONS(5016), 1, - sym_preproc_arg, - [71925] = 3, + ACTIONS(4804), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [71969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2330), 1, - sym_argument_list, - [71935] = 3, + STATE(2176), 1, + sym_parenthesized_expression, + [71979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(455), 1, + STATE(2172), 1, sym_parenthesized_expression, - [71945] = 3, + [71989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1834), 1, + STATE(1860), 1, sym_compound_statement, - [71955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5018), 1, - anon_sym_LPAREN2, - STATE(457), 1, - sym_parenthesized_expression, - [71965] = 3, + [71999] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, - STATE(99), 1, + STATE(135), 1, sym_compound_statement, - [71975] = 3, + [72009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5064), 1, sym_identifier, - ACTIONS(5022), 1, - anon_sym_LPAREN2, - [71985] = 3, + STATE(2085), 1, + sym_attribute, + [72019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2119), 1, + STATE(2223), 1, sym_parenthesized_expression, - [71995] = 2, + [72029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 2, + ACTIONS(5068), 2, anon_sym_COMMA, - anon_sym_SEMI, - [72003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5018), 1, - anon_sym_LPAREN2, - STATE(415), 1, - sym_parenthesized_expression, - [72013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_LPAREN2, - STATE(2121), 1, - sym_parenthesized_expression, - [72023] = 3, + anon_sym_RBRACK_RBRACK, + [72037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2273), 1, + STATE(2166), 1, sym_parenthesized_expression, - [72033] = 3, + [72047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(324), 1, + STATE(1903), 1, sym_compound_statement, - [72043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_LPAREN2, - STATE(2090), 1, - sym_parenthesized_expression, - [72053] = 3, + [72057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(1818), 1, + STATE(414), 1, sym_compound_statement, - [72063] = 2, + [72067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 2, + ACTIONS(5066), 1, anon_sym_COMMA, - anon_sym_SEMI, - [72071] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5024), 1, - aux_sym_preproc_include_token2, - ACTIONS(5026), 1, - sym_preproc_arg, - [72081] = 3, + ACTIONS(5070), 1, + anon_sym_RBRACE, + [72077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2073), 1, + STATE(2124), 1, sym_parenthesized_expression, - [72091] = 3, + [72087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5072), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [72095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(414), 1, + STATE(503), 1, sym_parenthesized_expression, - [72101] = 3, + [72105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2040), 1, + STATE(2089), 1, sym_parenthesized_expression, - [72111] = 3, - ACTIONS(3595), 1, + [72115] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5028), 1, + ACTIONS(5074), 1, aux_sym_preproc_include_token2, - ACTIONS(5030), 1, + ACTIONS(5076), 1, + sym_preproc_arg, + [72125] = 3, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5078), 1, + aux_sym_preproc_include_token2, + ACTIONS(5080), 1, sym_preproc_arg, - [72121] = 3, + [72135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2402), 1, + STATE(2444), 1, sym_parenthesized_expression, - [72131] = 2, + [72145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [72139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(201), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(182), 1, + STATE(1855), 1, sym_compound_statement, - [72149] = 3, + [72155] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1843), 1, + STATE(375), 1, sym_compound_statement, - [72159] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5034), 1, - aux_sym_preproc_include_token2, - ACTIONS(5036), 1, - sym_preproc_arg, - [72169] = 3, + [72165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(2641), 1, anon_sym_LPAREN2, - STATE(428), 1, - sym_parenthesized_expression, - [72179] = 3, + STATE(2469), 1, + sym_argument_list, + [72175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(2058), 1, + STATE(488), 1, sym_parenthesized_expression, - [72189] = 3, + [72185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(429), 1, + STATE(2167), 1, sym_parenthesized_expression, - [72199] = 2, + [72195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72207] = 2, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(487), 1, + sym_parenthesized_expression, + [72205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2641), 1, + anon_sym_LPAREN2, + STATE(2398), 1, + sym_argument_list, [72215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(2107), 1, + STATE(480), 1, sym_parenthesized_expression, [72225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(2155), 1, + STATE(479), 1, sym_parenthesized_expression, - [72235] = 3, + [72235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1878), 1, - sym_compound_statement, - [72245] = 3, + ACTIONS(3574), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [72243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 1, + sym_identifier, + ACTIONS(5084), 1, + anon_sym_LPAREN2, + [72253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(286), 1, + STATE(283), 1, sym_compound_statement, - [72255] = 3, + [72263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(403), 1, + STATE(2123), 1, sym_parenthesized_expression, - [72265] = 3, + [72273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2122), 1, + STATE(2361), 1, sym_parenthesized_expression, - [72275] = 3, + [72283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(466), 1, + STATE(477), 1, sym_parenthesized_expression, - [72285] = 3, + [72293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(565), 1, - anon_sym_LBRACE, - STATE(337), 1, - sym_compound_statement, - [72295] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(476), 1, + sym_parenthesized_expression, + [72303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - sym_identifier, - STATE(1925), 1, - sym_attribute, - [72305] = 3, - ACTIONS(3595), 1, - sym_comment, ACTIONS(5042), 1, - aux_sym_preproc_include_token2, - ACTIONS(5044), 1, - sym_preproc_arg, - [72315] = 3, + anon_sym_LPAREN2, + STATE(454), 1, + sym_parenthesized_expression, + [72313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1923), 1, + sym_compound_statement, + [72323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2383), 1, + STATE(2115), 1, sym_parenthesized_expression, - [72325] = 3, + [72333] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(302), 1, + STATE(303), 1, sym_compound_statement, - [72335] = 3, + [72343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(643), 1, anon_sym_LBRACE, - STATE(302), 1, + STATE(294), 1, sym_compound_statement, - [72345] = 3, + [72353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, - sym_identifier, - ACTIONS(5048), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - [72355] = 3, + STATE(461), 1, + sym_parenthesized_expression, + [72363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2077), 1, + STATE(2146), 1, sym_parenthesized_expression, - [72365] = 3, + [72373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(2266), 1, + STATE(537), 1, sym_parenthesized_expression, - [72375] = 3, + [72383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_RBRACE, - ACTIONS(5004), 1, - anon_sym_COMMA, - [72385] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(460), 1, + sym_parenthesized_expression, + [72393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - STATE(2189), 1, - sym_argument_list, - [72395] = 2, + ACTIONS(5064), 1, + sym_identifier, + STATE(1996), 1, + sym_attribute, + [72403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 2, + ACTIONS(5086), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72403] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5050), 1, - aux_sym_preproc_include_token2, - ACTIONS(5052), 1, - sym_preproc_arg, - [72413] = 2, + [72411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [72421] = 2, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5090), 1, + anon_sym_LPAREN2, + [72421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [72429] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(450), 1, + sym_parenthesized_expression, + [72431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1817), 1, - sym_compound_statement, + ACTIONS(4468), 2, + anon_sym_COMMA, + anon_sym_SEMI, [72439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym_compound_statement, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(449), 1, + sym_parenthesized_expression, [72449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(281), 1, + STATE(431), 1, sym_compound_statement, [72459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - sym_identifier, - STATE(2028), 1, - sym_attribute, - [72469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [72477] = 3, - ACTIONS(3595), 1, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5056), 1, + ACTIONS(5092), 1, aux_sym_preproc_include_token2, - ACTIONS(5058), 1, + ACTIONS(5094), 1, sym_preproc_arg, - [72487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5060), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [72495] = 2, + [72469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72503] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(288), 1, + sym_compound_statement, + [72479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72511] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(492), 1, + sym_parenthesized_expression, + [72489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(462), 1, + STATE(439), 1, sym_parenthesized_expression, - [72521] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5065), 1, - aux_sym_preproc_include_token2, - ACTIONS(5067), 1, - sym_preproc_arg, - [72531] = 3, + [72499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(2047), 1, + STATE(2137), 1, sym_parenthesized_expression, - [72541] = 3, + [72509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(461), 1, + STATE(451), 1, sym_parenthesized_expression, - [72551] = 3, + [72519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5096), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1924), 1, - sym_attribute, - [72561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3486), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [72569] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5069), 1, - aux_sym_preproc_include_token2, - ACTIONS(5071), 1, - sym_preproc_arg, - [72579] = 3, - ACTIONS(3595), 1, + [72527] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(5098), 1, aux_sym_preproc_include_token2, - ACTIONS(5075), 1, + ACTIONS(5100), 1, sym_preproc_arg, - [72589] = 3, - ACTIONS(3595), 1, + [72537] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5077), 1, + ACTIONS(5102), 1, aux_sym_preproc_include_token2, - ACTIONS(5079), 1, + ACTIONS(5104), 1, sym_preproc_arg, - [72599] = 3, + [72547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5062), 1, anon_sym_LPAREN2, - STATE(439), 1, + STATE(2224), 1, sym_parenthesized_expression, - [72609] = 3, + [72557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - STATE(310), 1, + STATE(119), 1, sym_compound_statement, - [72619] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5081), 1, - aux_sym_preproc_include_token2, - ACTIONS(5083), 1, - sym_preproc_arg, - [72629] = 3, + [72567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5042), 1, anon_sym_LPAREN2, - STATE(500), 1, + STATE(491), 1, sym_parenthesized_expression, - [72639] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5085), 1, - aux_sym_preproc_include_token2, - ACTIONS(5087), 1, - sym_preproc_arg, - [72649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_compound_statement, - [72659] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5089), 1, - aux_sym_preproc_include_token2, - ACTIONS(5091), 1, - sym_preproc_arg, - [72669] = 3, - ACTIONS(3595), 1, + [72577] = 3, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5093), 1, + ACTIONS(5106), 1, aux_sym_preproc_include_token2, - ACTIONS(5095), 1, + ACTIONS(5108), 1, sym_preproc_arg, - [72679] = 3, + [72587] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(264), 1, + STATE(1887), 1, sym_compound_statement, - [72689] = 3, - ACTIONS(3595), 1, + [72597] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, - aux_sym_preproc_include_token2, - ACTIONS(5099), 1, - sym_preproc_arg, - [72699] = 2, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(436), 1, + sym_parenthesized_expression, + [72607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 2, + ACTIONS(4905), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72707] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5101), 1, - aux_sym_preproc_include_token2, - ACTIONS(5103), 1, - sym_preproc_arg, - [72717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(565), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_compound_statement, - [72727] = 3, + [72615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(565), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_compound_statement, - [72737] = 2, + ACTIONS(3550), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3500), 2, + ACTIONS(5110), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(178), 1, - sym_compound_statement, - [72755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(109), 1, - sym_compound_statement, - [72765] = 3, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5105), 1, - aux_sym_preproc_include_token2, - ACTIONS(5107), 1, - sym_preproc_arg, - [72775] = 2, + [72631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, - aux_sym_preproc_if_token2, - [72782] = 2, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(484), 1, + sym_parenthesized_expression, + [72641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(5113), 2, + anon_sym_COMMA, anon_sym_SEMI, - [72789] = 2, + [72649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, - anon_sym_SEMI, - [72796] = 2, + ACTIONS(5062), 1, + anon_sym_LPAREN2, + STATE(2135), 1, + sym_parenthesized_expression, + [72659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, - aux_sym_preproc_if_token2, - [72803] = 2, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(490), 1, + sym_parenthesized_expression, + [72669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5115), 1, + ACTIONS(5064), 1, sym_identifier, - [72810] = 2, - ACTIONS(3), 1, + STATE(1976), 1, + sym_attribute, + [72679] = 3, + ACTIONS(3695), 1, sym_comment, + ACTIONS(5115), 1, + aux_sym_preproc_include_token2, ACTIONS(5117), 1, - aux_sym_preproc_if_token2, - [72817] = 2, - ACTIONS(3), 1, + sym_preproc_arg, + [72689] = 3, + ACTIONS(3695), 1, sym_comment, ACTIONS(5119), 1, - aux_sym_preproc_if_token2, - [72824] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5121), 1, aux_sym_preproc_include_token2, - [72831] = 2, + ACTIONS(5121), 1, + sym_preproc_arg, + [72699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym_COLON, - [72838] = 2, - ACTIONS(3595), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(529), 1, + sym_parenthesized_expression, + [72709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_compound_statement, + [72719] = 3, + ACTIONS(3695), 1, sym_comment, ACTIONS(5123), 1, aux_sym_preproc_include_token2, - [72845] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(5125), 1, - aux_sym_preproc_if_token2, - [72852] = 2, + sym_preproc_arg, + [72729] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(5042), 1, + anon_sym_LPAREN2, + STATE(501), 1, + sym_parenthesized_expression, + [72739] = 3, + ACTIONS(3695), 1, + sym_comment, ACTIONS(5127), 1, - anon_sym_COLON, - [72859] = 2, + aux_sym_preproc_include_token2, + ACTIONS(5129), 1, + sym_preproc_arg, + [72749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, - anon_sym_LPAREN2, - [72866] = 2, - ACTIONS(3378), 1, - aux_sym_preproc_include_token2, - ACTIONS(3595), 1, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(288), 1, + sym_compound_statement, + [72759] = 3, + ACTIONS(3), 1, sym_comment, - [72873] = 2, - ACTIONS(3595), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(194), 1, + sym_compound_statement, + [72769] = 3, + ACTIONS(3695), 1, sym_comment, ACTIONS(5131), 1, aux_sym_preproc_include_token2, - [72880] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(5133), 1, - anon_sym_RPAREN, - [72887] = 2, - ACTIONS(3), 1, + sym_preproc_arg, + [72779] = 3, + ACTIONS(3695), 1, sym_comment, ACTIONS(5135), 1, - aux_sym_preproc_if_token2, - [72894] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5137), 1, aux_sym_preproc_include_token2, - [72901] = 2, + ACTIONS(5137), 1, + sym_preproc_arg, + [72789] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5139), 1, - anon_sym_RPAREN, - [72908] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(5141), 1, anon_sym_RPAREN, - [72915] = 2, - ACTIONS(3), 1, + [72799] = 3, + ACTIONS(3695), 1, sym_comment, ACTIONS(5143), 1, - anon_sym_RPAREN, - [72922] = 2, + aux_sym_preproc_include_token2, + ACTIONS(5145), 1, + sym_preproc_arg, + [72809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 1, - aux_sym_preproc_if_token2, - [72929] = 2, - ACTIONS(3595), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(220), 1, + sym_compound_statement, + [72819] = 3, + ACTIONS(3695), 1, sym_comment, ACTIONS(5147), 1, aux_sym_preproc_include_token2, - [72936] = 2, - ACTIONS(3595), 1, - sym_comment, ACTIONS(5149), 1, - aux_sym_preproc_include_token2, - [72943] = 2, - ACTIONS(3), 1, + sym_preproc_arg, + [72829] = 3, + ACTIONS(3695), 1, sym_comment, ACTIONS(5151), 1, - anon_sym_SEMI, - [72950] = 2, + aux_sym_preproc_include_token2, + ACTIONS(5153), 1, + sym_preproc_arg, + [72839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, - anon_sym_SEMI, - [72957] = 2, + ACTIONS(3468), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, - anon_sym_SEMI, - [72964] = 2, - ACTIONS(3595), 1, + ACTIONS(643), 1, + anon_sym_LBRACE, + STATE(361), 1, + sym_compound_statement, + [72857] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 1, - aux_sym_preproc_include_token2, - [72971] = 2, + ACTIONS(3536), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72865] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(643), 1, + anon_sym_LBRACE, + STATE(330), 1, + sym_compound_statement, + [72875] = 3, + ACTIONS(3695), 1, + sym_comment, ACTIONS(5155), 1, - anon_sym_SEMI, - [72978] = 2, + aux_sym_preproc_include_token2, + ACTIONS(5157), 1, + sym_preproc_arg, + [72885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 1, - anon_sym_RPAREN, - [72985] = 2, - ACTIONS(3595), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(414), 1, + sym_compound_statement, + [72895] = 2, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5159), 1, + ACTIONS(4848), 1, aux_sym_preproc_include_token2, - [72992] = 2, + [72902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, + ACTIONS(3562), 1, anon_sym_SEMI, - [72999] = 2, + [72909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, - anon_sym_RPAREN, - [73006] = 2, + ACTIONS(5159), 1, + aux_sym_preproc_if_token2, + [72916] = 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5161), 1, + aux_sym_preproc_include_token2, + [72923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 1, - anon_sym_RPAREN, - [73013] = 2, - ACTIONS(3595), 1, + ACTIONS(5163), 1, + anon_sym_SEMI, + [72930] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5165), 1, aux_sym_preproc_include_token2, - [73020] = 2, + [72937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5167), 1, - anon_sym_RPAREN, - [73027] = 2, + anon_sym_LPAREN2, + [72944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5169), 1, - anon_sym_STAR, - [73034] = 2, - ACTIONS(3595), 1, + anon_sym_RPAREN, + [72951] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5171), 1, - aux_sym_preproc_include_token2, - [73041] = 2, + aux_sym_preproc_if_token2, + [72958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5173), 1, - anon_sym_SEMI, - [73048] = 2, + anon_sym_RBRACK, + [72965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5175), 1, - anon_sym_SEMI, - [73055] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [72972] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5177), 1, - anon_sym_RPAREN, - [73062] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [72979] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5179), 1, - anon_sym_COLON, - [73069] = 2, + aux_sym_preproc_include_token2, + [72986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + anon_sym_SEMI, + [72993] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5181), 1, - sym_identifier, - [73076] = 2, + anon_sym_RPAREN, + [73000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5183), 1, - aux_sym_preproc_if_token2, - [73083] = 2, - ACTIONS(3595), 1, + anon_sym_SEMI, + [73007] = 2, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(4941), 1, aux_sym_preproc_include_token2, - [73090] = 2, - ACTIONS(3595), 1, + [73014] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5187), 1, + ACTIONS(5185), 1, + anon_sym_COLON, + [73021] = 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(4935), 1, aux_sym_preproc_include_token2, - [73097] = 2, + [73028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3572), 1, + anon_sym_RPAREN, + [73035] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(5187), 1, + anon_sym_RPAREN, + [73042] = 2, + ACTIONS(3695), 1, + sym_comment, ACTIONS(5189), 1, - aux_sym_preproc_if_token2, - [73104] = 2, - ACTIONS(3595), 1, + aux_sym_preproc_include_token2, + [73049] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5191), 1, aux_sym_preproc_include_token2, - [73111] = 2, - ACTIONS(3), 1, + [73056] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5193), 1, - sym_identifier, - [73118] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [73063] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5195), 1, - anon_sym_LPAREN2, - [73125] = 2, - ACTIONS(3595), 1, + aux_sym_preproc_include_token2, + [73070] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5197), 1, - aux_sym_preproc_include_token2, - [73132] = 2, - ACTIONS(3595), 1, + sym_identifier, + [73077] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5199), 1, - aux_sym_preproc_include_token2, - [73139] = 2, + anon_sym_RPAREN, + [73084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 1, + anon_sym_COLON, + [73091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5201), 1, - aux_sym_preproc_if_token2, - [73146] = 2, - ACTIONS(3595), 1, + anon_sym_SEMI, + [73098] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5203), 1, - aux_sym_preproc_include_token2, - [73153] = 2, + anon_sym_SEMI, + [73105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5205), 1, - sym_identifier, - [73160] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [73112] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5207), 1, - sym_identifier, - [73167] = 2, + aux_sym_preproc_include_token2, + [73119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5209), 1, - sym_identifier, - [73174] = 2, + anon_sym_RPAREN, + [73126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5211), 1, - sym_identifier, - [73181] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(5213), 1, - aux_sym_preproc_include_token2, - [73188] = 2, + anon_sym_COLON, + [73133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, - anon_sym_COLON, - [73195] = 2, + ACTIONS(5213), 1, + anon_sym_RPAREN, + [73140] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5215), 1, aux_sym_preproc_if_token2, - [73202] = 2, + [73147] = 2, + ACTIONS(2490), 1, + aux_sym_preproc_include_token2, + ACTIONS(3695), 1, + sym_comment, + [73154] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5217), 1, anon_sym_SEMI, - [73209] = 2, - ACTIONS(3), 1, + [73161] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5219), 1, - aux_sym_preproc_if_token2, - [73216] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [73168] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5221), 1, - aux_sym_preproc_if_token2, - [73223] = 2, + aux_sym_preproc_include_token2, + [73175] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3566), 1, + anon_sym_RPAREN, + [73182] = 2, + ACTIONS(3695), 1, + sym_comment, ACTIONS(5223), 1, - sym_identifier, - [73230] = 2, + aux_sym_preproc_include_token2, + [73189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5225), 1, - anon_sym_RPAREN, - [73237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3474), 1, anon_sym_SEMI, - [73244] = 2, + [73196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5227), 1, - aux_sym_preproc_if_token2, - [73251] = 2, - ACTIONS(2440), 1, - aux_sym_preproc_include_token2, - ACTIONS(3595), 1, - sym_comment, - [73258] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [73203] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5229), 1, - sym_identifier, - [73265] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4789), 1, aux_sym_preproc_include_token2, - [73272] = 2, - ACTIONS(3), 1, + [73210] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5231), 1, - anon_sym_RPAREN, - [73279] = 2, + aux_sym_preproc_include_token2, + [73217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5233), 1, - aux_sym_preproc_if_token2, - [73286] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [73224] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5235), 1, - aux_sym_preproc_if_token2, - [73293] = 2, + aux_sym_preproc_include_token2, + [73231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3564), 1, + anon_sym_SEMI, + [73238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5237), 1, - aux_sym_preproc_if_token2, - [73300] = 2, + sym_identifier, + [73245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5239), 1, - anon_sym_COLON, - [73307] = 2, + sym_identifier, + [73252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5241), 1, - anon_sym_RPAREN, - [73314] = 2, + aux_sym_preproc_if_token2, + [73259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5243), 1, aux_sym_preproc_if_token2, - [73321] = 2, - ACTIONS(3595), 1, + [73266] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5245), 1, - aux_sym_preproc_include_token2, - [73328] = 2, + anon_sym_SEMI, + [73273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5247), 1, - anon_sym_SEMI, - [73335] = 2, + aux_sym_preproc_if_token2, + [73280] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5249), 1, - anon_sym_RPAREN, - [73342] = 2, + anon_sym_LPAREN2, + [73287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5251), 1, - anon_sym_COLON, - [73349] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73294] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5253), 1, - anon_sym_RBRACK, - [73356] = 2, + aux_sym_preproc_include_token2, + [73301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5255), 1, - aux_sym_preproc_if_token2, - [73363] = 2, + sym_identifier, + [73308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_SEMI, - [73370] = 2, + ACTIONS(3538), 1, + anon_sym_RPAREN, + [73315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5257), 1, - sym_identifier, - [73377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, anon_sym_RPAREN, - [73384] = 2, + [73322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5259), 1, - sym_identifier, - [73391] = 2, + ACTIONS(3544), 1, + anon_sym_COLON, + [73329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - anon_sym_RPAREN, - [73398] = 2, + ACTIONS(5259), 1, + aux_sym_preproc_if_token2, + [73336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_RPAREN, - [73405] = 2, - ACTIONS(3595), 1, - sym_comment, ACTIONS(5261), 1, - aux_sym_preproc_include_token2, - [73412] = 2, + aux_sym_preproc_if_token2, + [73343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5263), 1, anon_sym_SEMI, - [73419] = 2, + [73350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5265), 1, - aux_sym_preproc_if_token2, - [73426] = 2, + anon_sym_RPAREN, + [73357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5267), 1, - anon_sym_while, - [73433] = 2, + anon_sym_SEMI, + [73364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5269), 1, - aux_sym_preproc_if_token2, - [73440] = 2, + anon_sym_RPAREN, + [73371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5271), 1, - sym_primitive_type, - [73447] = 2, + anon_sym_RPAREN, + [73378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 1, - anon_sym_RBRACE, - [73454] = 2, + ACTIONS(3540), 1, + anon_sym_RPAREN, + [73385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5275), 1, + ACTIONS(5273), 1, anon_sym_RPAREN, - [73461] = 2, + [73392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 1, - anon_sym_RPAREN, - [73468] = 2, + ACTIONS(5275), 1, + anon_sym_COLON, + [73399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5277), 1, - sym_identifier, - [73475] = 2, + aux_sym_preproc_if_token2, + [73406] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5279), 1, sym_identifier, - [73482] = 2, + [73413] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5281), 1, - aux_sym_preproc_if_token2, - [73489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_COMMA, - [73496] = 2, + sym_primitive_type, + [73420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5283), 1, - sym_identifier, - [73503] = 2, + anon_sym_SEMI, + [73427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5285), 1, - sym_identifier, - [73510] = 2, + anon_sym_LPAREN2, + [73434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 1, + anon_sym_SEMI, + [73441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3444), 1, + anon_sym_RBRACE, + [73448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5287), 1, sym_identifier, - [73517] = 2, + [73455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5289), 1, - sym_identifier, - [73524] = 2, + aux_sym_preproc_if_token2, + [73462] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5291), 1, - anon_sym_RPAREN, - [73531] = 2, + anon_sym_COLON, + [73469] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5293), 1, - anon_sym_RPAREN, - [73538] = 2, - ACTIONS(3), 1, + sym_identifier, + [73476] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5295), 1, - aux_sym_preproc_if_token2, - [73545] = 2, + aux_sym_preproc_include_token2, + [73483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5297), 1, aux_sym_preproc_if_token2, - [73552] = 2, - ACTIONS(3595), 1, + [73490] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5299), 1, - aux_sym_preproc_include_token2, - [73559] = 2, + anon_sym_RBRACK, + [73497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, - aux_sym_preproc_if_token2, - [73566] = 2, + ACTIONS(3548), 1, + anon_sym_SEMI, + [73504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, - aux_sym_preproc_if_token2, - [73573] = 2, + ACTIONS(3532), 1, + anon_sym_RPAREN, + [73511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON, - [73580] = 2, + ACTIONS(3530), 1, + anon_sym_RPAREN, + [73518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_RBRACE, - [73587] = 2, + ACTIONS(3526), 1, + anon_sym_RPAREN, + [73525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5301), 1, + anon_sym_if, + [73532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(3546), 1, anon_sym_RPAREN, - [73594] = 2, + [73539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5303), 1, + sym_identifier, + [73546] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5305), 1, - anon_sym_RPAREN, - [73601] = 2, + anon_sym_SEMI, + [73553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5307), 1, sym_identifier, - [73608] = 2, + [73560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5309), 1, - aux_sym_preproc_if_token2, - [73615] = 2, + anon_sym_LPAREN2, + [73567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5311), 1, aux_sym_preproc_if_token2, - [73622] = 2, + [73574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5313), 1, - anon_sym_SEMI, - [73629] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73581] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5315), 1, - anon_sym_RPAREN, - [73636] = 2, + aux_sym_preproc_include_token2, + [73588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5317), 1, - aux_sym_preproc_if_token2, - [73643] = 2, - ACTIONS(3), 1, + sym_identifier, + [73595] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5319), 1, - aux_sym_preproc_if_token2, - [73650] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4930), 1, aux_sym_preproc_include_token2, - [73657] = 2, + [73602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5321), 1, - anon_sym_SEMI, - [73664] = 2, + anon_sym_RPAREN, + [73609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5323), 1, - aux_sym_preproc_if_token2, - [73671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 1, anon_sym_RPAREN, - [73678] = 2, - ACTIONS(2436), 1, - aux_sym_preproc_include_token2, - ACTIONS(3595), 1, + [73616] = 2, + ACTIONS(3), 1, sym_comment, - [73685] = 2, + ACTIONS(5325), 1, + anon_sym_RPAREN, + [73623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5327), 1, - anon_sym_SEMI, - [73692] = 2, + aux_sym_preproc_if_token2, + [73630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5329), 1, + ACTIONS(3460), 1, anon_sym_RBRACE, - [73699] = 2, + [73637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5329), 1, + aux_sym_preproc_if_token2, + [73644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5331), 1, aux_sym_preproc_if_token2, - [73706] = 2, + [73651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3522), 1, + anon_sym_COLON, + [73658] = 2, + ACTIONS(3408), 1, + aux_sym_preproc_include_token2, + ACTIONS(3695), 1, + sym_comment, + [73665] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5333), 1, - anon_sym_SEMI, - [73713] = 2, + sym_identifier, + [73672] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5335), 1, aux_sym_preproc_if_token2, - [73720] = 2, + [73679] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5337), 1, - ts_builtin_sym_end, - [73727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3402), 1, - anon_sym_RBRACE, - [73734] = 2, + sym_identifier, + [73686] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5339), 1, - aux_sym_preproc_if_token2, - [73741] = 2, + anon_sym_SEMI, + [73693] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5341), 1, aux_sym_preproc_if_token2, - [73748] = 2, + [73700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, - anon_sym_COLON, - [73755] = 2, + ACTIONS(5343), 1, + anon_sym_if, + [73707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3478), 1, anon_sym_SEMI, - [73762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5343), 1, - anon_sym_RPAREN, - [73769] = 2, + [73714] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5345), 1, - anon_sym_SEMI, - [73776] = 2, + aux_sym_preproc_if_token2, + [73721] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4470), 1, + anon_sym_COMMA, + [73728] = 2, + ACTIONS(3695), 1, + sym_comment, ACTIONS(5347), 1, - sym_identifier, - [73783] = 2, + aux_sym_preproc_include_token2, + [73735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5349), 1, - sym_identifier, - [73790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3516), 1, - anon_sym_SEMI, - [73797] = 2, + anon_sym_STAR, + [73742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5351), 1, - anon_sym_SEMI, - [73804] = 2, + aux_sym_preproc_if_token2, + [73749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_RPAREN, - [73811] = 2, + ACTIONS(3568), 1, + anon_sym_SEMI, + [73756] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5353), 1, - anon_sym_RBRACE, - [73818] = 2, + anon_sym_SEMI, + [73763] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5355), 1, anon_sym_SEMI, - [73825] = 2, + [73770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5357), 1, - anon_sym_RPAREN, - [73832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3478), 1, - anon_sym_SEMI, - [73839] = 2, + aux_sym_preproc_if_token2, + [73777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5359), 1, - sym_identifier, - [73846] = 2, + aux_sym_preproc_if_token2, + [73784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5361), 1, - anon_sym_RPAREN, - [73853] = 2, + aux_sym_preproc_if_token2, + [73791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5363), 1, - anon_sym_LPAREN2, - [73860] = 2, - ACTIONS(3595), 1, + anon_sym_RPAREN, + [73798] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5365), 1, - aux_sym_preproc_include_token2, - [73867] = 2, + aux_sym_preproc_if_token2, + [73805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5367), 1, - anon_sym_COMMA, - [73874] = 2, + sym_identifier, + [73812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3560), 1, + anon_sym_RPAREN, + [73819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5369), 1, - aux_sym_preproc_if_token2, - [73881] = 2, + anon_sym_RBRACE, + [73826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5371), 1, - anon_sym_SEMI, - [73888] = 2, + anon_sym_COLON, + [73833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5373), 1, - anon_sym_LPAREN2, - [73895] = 2, + sym_identifier, + [73840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5375), 1, - anon_sym_LPAREN2, - [73902] = 2, + anon_sym_RBRACE, + [73847] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3520), 1, + anon_sym_COLON, + [73854] = 2, + ACTIONS(3695), 1, + sym_comment, ACTIONS(5377), 1, - aux_sym_preproc_if_token2, - [73909] = 2, + aux_sym_preproc_include_token2, + [73861] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5379), 1, - anon_sym_RPAREN, - [73916] = 2, + aux_sym_preproc_if_token2, + [73868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5381), 1, - anon_sym_RPAREN, - [73923] = 2, + anon_sym_SEMI, + [73875] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5383), 1, sym_identifier, - [73930] = 2, + [73882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5385), 1, - anon_sym_SEMI, - [73937] = 2, + sym_identifier, + [73889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, - anon_sym_RPAREN, - [73944] = 2, + ACTIONS(4265), 1, + anon_sym_COMMA, + [73896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, - anon_sym_COLON, - [73951] = 2, + ACTIONS(5387), 1, + aux_sym_preproc_if_token2, + [73903] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5389), 1, - sym_identifier, - [73958] = 2, + anon_sym_SEMI, + [73910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3552), 1, + anon_sym_SEMI, + [73917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5391), 1, aux_sym_preproc_if_token2, - [73965] = 2, + [73924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, - anon_sym_RBRACE, - [73972] = 2, - ACTIONS(3595), 1, - sym_comment, ACTIONS(5393), 1, - aux_sym_preproc_include_token2, - [73979] = 2, + sym_identifier, + [73931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5395), 1, - aux_sym_preproc_if_token2, - [73986] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4883), 1, - aux_sym_preproc_include_token2, - [73993] = 2, + anon_sym_RBRACE, + [73938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5397), 1, sym_identifier, - [74000] = 2, + [73945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5399), 1, - sym_identifier, - [74007] = 2, + ts_builtin_sym_end, + [73952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_SEMI, + [73959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5401), 1, anon_sym_RPAREN, - [74014] = 2, + [73966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5403), 1, anon_sym_RPAREN, - [74021] = 2, - ACTIONS(3595), 1, + [73973] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5405), 1, - aux_sym_preproc_include_token2, - [74028] = 2, + anon_sym_RPAREN, + [73980] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5407), 1, - anon_sym_RPAREN, - [74035] = 2, + aux_sym_preproc_if_token2, + [73987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5409), 1, anon_sym_SEMI, - [74042] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4894), 1, - aux_sym_preproc_include_token2, - [74049] = 2, + [73994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5411), 1, - sym_identifier, - [74056] = 2, + anon_sym_SEMI, + [74001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5413), 1, - sym_primitive_type, - [74063] = 2, + anon_sym_RPAREN, + [74008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5415), 1, - anon_sym_SEMI, - [74070] = 2, + anon_sym_COLON, + [74015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5417), 1, anon_sym_RPAREN, - [74077] = 2, + [74022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5419), 1, - anon_sym_RBRACE, - [74084] = 2, - ACTIONS(3386), 1, - aux_sym_preproc_include_token2, - ACTIONS(3595), 1, + sym_identifier, + [74029] = 2, + ACTIONS(3695), 1, sym_comment, - [74091] = 2, + ACTIONS(5421), 1, + aux_sym_preproc_include_token2, + [74036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5421), 1, + ACTIONS(5423), 1, anon_sym_SEMI, - [74098] = 2, + [74043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5423), 1, - anon_sym_LPAREN2, - [74105] = 2, + ACTIONS(3524), 1, + anon_sym_SEMI, + [74050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5425), 1, anon_sym_RPAREN, - [74112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 1, - anon_sym_SEMI, - [74119] = 2, + [74057] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5427), 1, aux_sym_preproc_if_token2, - [74126] = 2, + [74064] = 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5002), 1, + aux_sym_preproc_include_token2, + [74071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5429), 1, - sym_identifier, - [74133] = 2, + aux_sym_preproc_if_token2, + [74078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5431), 1, - anon_sym_SEMI, - [74140] = 2, + anon_sym_if, + [74085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5433), 1, - anon_sym_RPAREN, - [74147] = 2, + anon_sym_while, + [74092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_RBRACE, + [74099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5435), 1, anon_sym_SEMI, - [74154] = 2, - ACTIONS(3595), 1, + [74106] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5437), 1, - aux_sym_preproc_include_token2, - [74161] = 2, + aux_sym_preproc_if_token2, + [74113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5439), 1, sym_identifier, - [74168] = 2, + [74120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5441), 1, sym_identifier, - [74175] = 2, - ACTIONS(3374), 1, - aux_sym_preproc_include_token2, - ACTIONS(3595), 1, - sym_comment, - [74182] = 2, + [74127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5443), 1, sym_identifier, - [74189] = 2, + [74134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 1, + anon_sym_SEMI, + [74141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5445), 1, - sym_identifier, - [74196] = 2, + anon_sym_SEMI, + [74148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5447), 1, - sym_identifier, - [74203] = 2, + anon_sym_SEMI, + [74155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5449), 1, - sym_identifier, - [74210] = 2, + anon_sym_SEMI, + [74162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5451), 1, - anon_sym_COLON, - [74217] = 2, + anon_sym_SEMI, + [74169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5453), 1, - anon_sym_STAR, - [74224] = 2, + sym_identifier, + [74176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5455), 1, - aux_sym_preproc_if_token2, - [74231] = 2, + anon_sym_SEMI, + [74183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5457), 1, anon_sym_COLON, - [74238] = 2, + [74190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5459), 1, - sym_identifier, - [74245] = 2, + anon_sym_RBRACE, + [74197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 1, - anon_sym_COMMA, - [74252] = 2, + ACTIONS(5461), 1, + sym_identifier, + [74204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, - anon_sym_LPAREN2, - [74259] = 2, + ACTIONS(3482), 1, + anon_sym_SEMI, + [74211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5463), 1, - anon_sym_SEMI, - [74266] = 2, + anon_sym_RBRACE, + [74218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3524), 1, + ACTIONS(3484), 1, anon_sym_SEMI, - [74273] = 2, - ACTIONS(3), 1, + [74225] = 2, + ACTIONS(3404), 1, + aux_sym_preproc_include_token2, + ACTIONS(3695), 1, sym_comment, - ACTIONS(5465), 1, - aux_sym_preproc_if_token2, - [74280] = 2, + [74232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 1, - anon_sym_SEMI, - [74287] = 2, - ACTIONS(3), 1, + ACTIONS(5465), 1, + sym_identifier, + [74239] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5467), 1, - sym_identifier, - [74294] = 2, + aux_sym_preproc_include_token2, + [74246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5469), 1, - aux_sym_preproc_if_token2, - [74301] = 2, + sym_identifier, + [74253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5471), 1, - anon_sym_SEMI, - [74308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3522), 1, - anon_sym_SEMI, - [74315] = 2, + aux_sym_preproc_if_token2, + [74260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5473), 1, - anon_sym_SEMI, - [74322] = 2, + anon_sym_RPAREN, + [74267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5475), 1, aux_sym_preproc_if_token2, - [74329] = 2, + [74274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5477), 1, - anon_sym_RPAREN, - [74336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3526), 1, - anon_sym_RPAREN, - [74343] = 2, + anon_sym_SEMI, + [74281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5479), 1, - sym_identifier, - [74350] = 2, + anon_sym_RBRACE, + [74288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5481), 1, - anon_sym_RBRACE, - [74357] = 2, + sym_identifier, + [74295] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5483), 1, - anon_sym_SEMI, - [74364] = 2, + aux_sym_preproc_if_token2, + [74302] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5485), 1, aux_sym_preproc_if_token2, - [74371] = 2, + [74309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5487), 1, - sym_identifier, - [74378] = 2, + aux_sym_preproc_if_token2, + [74316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5489), 1, sym_identifier, - [74385] = 2, + [74323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5491), 1, - sym_identifier, - [74392] = 2, - ACTIONS(3595), 1, + aux_sym_preproc_if_token2, + [74330] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5493), 1, - aux_sym_preproc_include_token2, - [74399] = 2, + sym_identifier, + [74337] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5495), 1, - aux_sym_preproc_if_token2, - [74406] = 2, - ACTIONS(3595), 1, - sym_comment, - ACTIONS(4708), 1, - aux_sym_preproc_include_token2, - [74413] = 2, + sym_identifier, + [74344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5497), 1, - anon_sym_COLON, - [74420] = 2, + anon_sym_STAR, + [74351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5499), 1, - aux_sym_preproc_if_token2, - [74427] = 2, + anon_sym_SEMI, + [74358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5501), 1, - anon_sym_LPAREN2, - [74434] = 2, + aux_sym_preproc_if_token2, + [74365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5503), 1, aux_sym_preproc_if_token2, - [74441] = 2, + [74372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5505), 1, - aux_sym_preproc_if_token2, - [74448] = 2, + sym_identifier, + [74379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5507), 1, - anon_sym_LPAREN2, - [74455] = 2, + anon_sym_RPAREN, + [74386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5509), 1, - anon_sym_SEMI, - [74462] = 2, + anon_sym_STAR, + [74393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5511), 1, - anon_sym_SEMI, - [74469] = 2, + aux_sym_preproc_if_token2, + [74400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5513), 1, - anon_sym_RPAREN, - [74476] = 2, + aux_sym_preproc_if_token2, + [74407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5515), 1, - anon_sym_RPAREN, - [74483] = 2, + anon_sym_SEMI, + [74414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5517), 1, - sym_identifier, - [74490] = 2, + anon_sym_RPAREN, + [74421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5519), 1, - anon_sym_RBRACK, - [74497] = 2, + sym_identifier, + [74428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5521), 1, - sym_identifier, - [74504] = 2, + aux_sym_preproc_if_token2, + [74435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5523), 1, - anon_sym_while, - [74511] = 2, + aux_sym_preproc_if_token2, + [74442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5525), 1, - anon_sym_COLON, - [74518] = 2, + anon_sym_LPAREN2, + [74449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5527), 1, - anon_sym_LPAREN2, - [74525] = 2, - ACTIONS(3595), 1, + aux_sym_preproc_if_token2, + [74456] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5529), 1, - aux_sym_preproc_include_token2, - [74532] = 2, + aux_sym_preproc_if_token2, + [74463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5531), 1, aux_sym_preproc_if_token2, - [74539] = 2, + [74470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5533), 1, - sym_identifier, - [74546] = 2, + anon_sym_RPAREN, + [74477] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5535), 1, - aux_sym_preproc_if_token2, - [74553] = 2, + sym_identifier, + [74484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5537), 1, - anon_sym_COMMA, - [74560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3458), 1, - anon_sym_SEMI, - [74567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3514), 1, - anon_sym_COLON, - [74574] = 2, + aux_sym_preproc_if_token2, + [74491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5539), 1, - anon_sym_COLON, - [74581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3460), 1, - anon_sym_SEMI, - [74588] = 2, + aux_sym_preproc_if_token2, + [74498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5541), 1, - anon_sym_SEMI, - [74595] = 2, + aux_sym_preproc_if_token2, + [74505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5543), 1, - anon_sym_LPAREN2, - [74602] = 2, + sym_identifier, + [74512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5545), 1, - anon_sym_STAR, - [74609] = 2, + sym_identifier, + [74519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5547), 1, - anon_sym_LPAREN2, - [74616] = 2, + sym_identifier, + [74526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5549), 1, - anon_sym_while, - [74623] = 2, + sym_identifier, + [74533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5551), 1, anon_sym_LPAREN2, - [74630] = 2, + [74540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5553), 1, - anon_sym_SEMI, - [74637] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [74547] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5555), 1, - anon_sym_RPAREN, - [74644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3490), 1, - anon_sym_COLON, - [74651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - anon_sym_RBRACE, - [74658] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [74554] = 2, + ACTIONS(3695), 1, sym_comment, ACTIONS(5557), 1, - aux_sym_preproc_if_token2, - [74665] = 2, + aux_sym_preproc_include_token2, + [74561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5559), 1, - anon_sym_RPAREN, - [74672] = 2, + anon_sym_LPAREN2, + [74568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5561), 1, - anon_sym_while, - [74679] = 2, + sym_primitive_type, + [74575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5563), 1, - aux_sym_preproc_if_token2, - [74686] = 2, - ACTIONS(3382), 1, - aux_sym_preproc_include_token2, - ACTIONS(3595), 1, - sym_comment, - [74693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3530), 1, - anon_sym_COLON, - [74700] = 2, + sym_identifier, + [74582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_COMMA, - [74707] = 2, + ACTIONS(5565), 1, + anon_sym_LPAREN2, + [74589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - aux_sym_preproc_if_token2, - [74714] = 2, + ACTIONS(3570), 1, + anon_sym_COLON, + [74596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5567), 1, - aux_sym_preproc_if_token2, - [74721] = 2, + anon_sym_RPAREN, + [74603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5569), 1, - anon_sym_SEMI, - [74728] = 2, + aux_sym_preproc_if_token2, + [74610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5571), 1, - anon_sym_while, - [74735] = 2, - ACTIONS(3595), 1, + anon_sym_RPAREN, + [74617] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5573), 1, - aux_sym_preproc_include_token2, - [74742] = 2, + aux_sym_preproc_if_token2, + [74624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5575), 1, aux_sym_preproc_if_token2, - [74749] = 2, + [74631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3558), 1, + anon_sym_COLON, + [74638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5577), 1, - aux_sym_preproc_if_token2, - [74756] = 2, + anon_sym_while, + [74645] = 2, + ACTIONS(2486), 1, + aux_sym_preproc_include_token2, + ACTIONS(3695), 1, + sym_comment, + [74652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5579), 1, - anon_sym_RBRACE, - [74763] = 2, + anon_sym_LPAREN2, + [74659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5581), 1, - anon_sym_LPAREN2, - [74770] = 2, + aux_sym_preproc_if_token2, + [74666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5583), 1, - anon_sym_STAR, - [74777] = 2, + anon_sym_RPAREN, + [74673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_SEMI, + [74680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5585), 1, anon_sym_RPAREN, - [74784] = 2, + [74687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5587), 1, - aux_sym_preproc_if_token2, - [74791] = 2, + anon_sym_COMMA, + [74694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5589), 1, - anon_sym_SEMI, - [74798] = 2, + anon_sym_COLON, + [74701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, + anon_sym_COLON, + [74708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5591), 1, - anon_sym_LPAREN2, - [74805] = 2, + anon_sym_RPAREN, + [74715] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5593), 1, - aux_sym_preproc_if_token2, - [74812] = 2, + anon_sym_COLON, + [74722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5595), 1, - sym_identifier, - [74819] = 2, + anon_sym_if, + [74729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5597), 1, - anon_sym_LPAREN2, - [74826] = 2, + anon_sym_COMMA, + [74736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5599), 1, - anon_sym_RPAREN, - [74833] = 2, + anon_sym_SEMI, + [74743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5601), 1, - aux_sym_preproc_if_token2, - [74840] = 2, + anon_sym_LPAREN2, + [74750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5603), 1, + sym_identifier, + [74757] = 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5026), 1, + aux_sym_preproc_include_token2, + [74764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5605), 1, + anon_sym_while, + [74771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + aux_sym_preproc_if_token2, + [74778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5609), 1, + aux_sym_preproc_if_token2, + [74785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5611), 1, + anon_sym_RPAREN, + [74792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5613), 1, + anon_sym_if, + [74799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 1, + aux_sym_preproc_if_token2, + [74806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5617), 1, + anon_sym_RPAREN, + [74813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5619), 1, + sym_identifier, + [74820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5621), 1, + anon_sym_SEMI, + [74827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5623), 1, + anon_sym_while, + [74834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5625), 1, + anon_sym_RPAREN, + [74841] = 2, + ACTIONS(3416), 1, + aux_sym_preproc_include_token2, + ACTIONS(3695), 1, + sym_comment, + [74848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_RPAREN, + [74855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 1, + anon_sym_if, + [74862] = 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5631), 1, + aux_sym_preproc_include_token2, + [74869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 1, + anon_sym_COMMA, + [74876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5633), 1, anon_sym_LPAREN2, - [74847] = 2, + [74883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(5635), 1, anon_sym_RPAREN, - [74854] = 2, + [74890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 1, + ACTIONS(5637), 1, + anon_sym_while, + [74897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 1, + anon_sym_SEMI, + [74904] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 1, sym_identifier, - [74861] = 2, + [74911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 1, + ACTIONS(5643), 1, + anon_sym_STAR, + [74918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + aux_sym_preproc_if_token2, + [74925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5647), 1, + anon_sym_LPAREN2, + [74932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5649), 1, + aux_sym_preproc_if_token2, + [74939] = 2, + ACTIONS(3420), 1, + aux_sym_preproc_include_token2, + ACTIONS(3695), 1, + sym_comment, + [74946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + anon_sym_COLON, + [74953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5651), 1, + sym_identifier, + [74960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5653), 1, + anon_sym_LPAREN2, + [74967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3998), 1, + anon_sym_RBRACE, + [74974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + sym_identifier, + [74981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5657), 1, + anon_sym_LPAREN2, + [74988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 1, + anon_sym_RPAREN, + [74995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + sym_identifier, + [75002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5663), 1, + anon_sym_LPAREN2, + [75009] = 2, + ACTIONS(3695), 1, + sym_comment, + ACTIONS(5665), 1, + aux_sym_preproc_include_token2, + [75016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5667), 1, + anon_sym_LPAREN2, + [75023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5669), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(613)] = 0, - [SMALL_STATE(614)] = 115, - [SMALL_STATE(615)] = 230, - [SMALL_STATE(616)] = 342, - [SMALL_STATE(617)] = 452, - [SMALL_STATE(618)] = 561, - [SMALL_STATE(619)] = 670, - [SMALL_STATE(620)] = 779, - [SMALL_STATE(621)] = 888, - [SMALL_STATE(622)] = 997, - [SMALL_STATE(623)] = 1104, - [SMALL_STATE(624)] = 1213, - [SMALL_STATE(625)] = 1322, - [SMALL_STATE(626)] = 1431, - [SMALL_STATE(627)] = 1540, - [SMALL_STATE(628)] = 1647, - [SMALL_STATE(629)] = 1756, - [SMALL_STATE(630)] = 1863, - [SMALL_STATE(631)] = 1972, - [SMALL_STATE(632)] = 2081, - [SMALL_STATE(633)] = 2190, - [SMALL_STATE(634)] = 2299, - [SMALL_STATE(635)] = 2408, - [SMALL_STATE(636)] = 2517, - [SMALL_STATE(637)] = 2626, - [SMALL_STATE(638)] = 2735, - [SMALL_STATE(639)] = 2844, - [SMALL_STATE(640)] = 2953, - [SMALL_STATE(641)] = 3062, - [SMALL_STATE(642)] = 3171, - [SMALL_STATE(643)] = 3280, - [SMALL_STATE(644)] = 3389, - [SMALL_STATE(645)] = 3496, - [SMALL_STATE(646)] = 3605, - [SMALL_STATE(647)] = 3714, - [SMALL_STATE(648)] = 3823, - [SMALL_STATE(649)] = 3932, - [SMALL_STATE(650)] = 4041, - [SMALL_STATE(651)] = 4149, - [SMALL_STATE(652)] = 4253, - [SMALL_STATE(653)] = 4357, - [SMALL_STATE(654)] = 4461, - [SMALL_STATE(655)] = 4565, - [SMALL_STATE(656)] = 4671, - [SMALL_STATE(657)] = 4775, - [SMALL_STATE(658)] = 4879, - [SMALL_STATE(659)] = 4987, - [SMALL_STATE(660)] = 5091, - [SMALL_STATE(661)] = 5199, - [SMALL_STATE(662)] = 5305, - [SMALL_STATE(663)] = 5409, - [SMALL_STATE(664)] = 5513, - [SMALL_STATE(665)] = 5617, - [SMALL_STATE(666)] = 5725, - [SMALL_STATE(667)] = 5831, - [SMALL_STATE(668)] = 5939, - [SMALL_STATE(669)] = 6047, - [SMALL_STATE(670)] = 6150, - [SMALL_STATE(671)] = 6253, - [SMALL_STATE(672)] = 6356, - [SMALL_STATE(673)] = 6459, - [SMALL_STATE(674)] = 6562, - [SMALL_STATE(675)] = 6663, - [SMALL_STATE(676)] = 6766, - [SMALL_STATE(677)] = 6869, - [SMALL_STATE(678)] = 6972, - [SMALL_STATE(679)] = 7073, - [SMALL_STATE(680)] = 7176, - [SMALL_STATE(681)] = 7279, - [SMALL_STATE(682)] = 7380, - [SMALL_STATE(683)] = 7483, - [SMALL_STATE(684)] = 7584, - [SMALL_STATE(685)] = 7687, - [SMALL_STATE(686)] = 7790, - [SMALL_STATE(687)] = 7893, - [SMALL_STATE(688)] = 7994, - [SMALL_STATE(689)] = 8097, - [SMALL_STATE(690)] = 8200, - [SMALL_STATE(691)] = 8301, - [SMALL_STATE(692)] = 8404, - [SMALL_STATE(693)] = 8505, - [SMALL_STATE(694)] = 8608, - [SMALL_STATE(695)] = 8711, - [SMALL_STATE(696)] = 8814, - [SMALL_STATE(697)] = 8917, - [SMALL_STATE(698)] = 9020, - [SMALL_STATE(699)] = 9123, - [SMALL_STATE(700)] = 9226, - [SMALL_STATE(701)] = 9327, - [SMALL_STATE(702)] = 9430, - [SMALL_STATE(703)] = 9531, - [SMALL_STATE(704)] = 9632, - [SMALL_STATE(705)] = 9733, - [SMALL_STATE(706)] = 9834, - [SMALL_STATE(707)] = 9935, - [SMALL_STATE(708)] = 10036, - [SMALL_STATE(709)] = 10137, - [SMALL_STATE(710)] = 10240, - [SMALL_STATE(711)] = 10341, - [SMALL_STATE(712)] = 10444, - [SMALL_STATE(713)] = 10545, - [SMALL_STATE(714)] = 10646, - [SMALL_STATE(715)] = 10747, - [SMALL_STATE(716)] = 10850, - [SMALL_STATE(717)] = 10951, - [SMALL_STATE(718)] = 11052, - [SMALL_STATE(719)] = 11155, - [SMALL_STATE(720)] = 11258, - [SMALL_STATE(721)] = 11361, - [SMALL_STATE(722)] = 11464, - [SMALL_STATE(723)] = 11567, - [SMALL_STATE(724)] = 11670, - [SMALL_STATE(725)] = 11771, - [SMALL_STATE(726)] = 11874, - [SMALL_STATE(727)] = 11977, - [SMALL_STATE(728)] = 12080, - [SMALL_STATE(729)] = 12183, - [SMALL_STATE(730)] = 12284, - [SMALL_STATE(731)] = 12387, - [SMALL_STATE(732)] = 12490, - [SMALL_STATE(733)] = 12593, - [SMALL_STATE(734)] = 12696, - [SMALL_STATE(735)] = 12799, - [SMALL_STATE(736)] = 12902, - [SMALL_STATE(737)] = 13005, - [SMALL_STATE(738)] = 13108, - [SMALL_STATE(739)] = 13211, - [SMALL_STATE(740)] = 13314, - [SMALL_STATE(741)] = 13417, - [SMALL_STATE(742)] = 13520, - [SMALL_STATE(743)] = 13623, - [SMALL_STATE(744)] = 13726, - [SMALL_STATE(745)] = 13829, - [SMALL_STATE(746)] = 13932, - [SMALL_STATE(747)] = 14035, - [SMALL_STATE(748)] = 14138, - [SMALL_STATE(749)] = 14241, - [SMALL_STATE(750)] = 14344, - [SMALL_STATE(751)] = 14447, - [SMALL_STATE(752)] = 14550, - [SMALL_STATE(753)] = 14653, - [SMALL_STATE(754)] = 14756, - [SMALL_STATE(755)] = 14857, - [SMALL_STATE(756)] = 14960, - [SMALL_STATE(757)] = 15061, - [SMALL_STATE(758)] = 15162, - [SMALL_STATE(759)] = 15263, - [SMALL_STATE(760)] = 15366, - [SMALL_STATE(761)] = 15467, - [SMALL_STATE(762)] = 15570, - [SMALL_STATE(763)] = 15671, - [SMALL_STATE(764)] = 15774, - [SMALL_STATE(765)] = 15875, - [SMALL_STATE(766)] = 15976, - [SMALL_STATE(767)] = 16079, - [SMALL_STATE(768)] = 16180, - [SMALL_STATE(769)] = 16281, - [SMALL_STATE(770)] = 16382, - [SMALL_STATE(771)] = 16483, - [SMALL_STATE(772)] = 16584, - [SMALL_STATE(773)] = 16685, - [SMALL_STATE(774)] = 16786, - [SMALL_STATE(775)] = 16889, - [SMALL_STATE(776)] = 16992, - [SMALL_STATE(777)] = 17093, - [SMALL_STATE(778)] = 17194, - [SMALL_STATE(779)] = 17295, - [SMALL_STATE(780)] = 17396, - [SMALL_STATE(781)] = 17497, - [SMALL_STATE(782)] = 17598, - [SMALL_STATE(783)] = 17701, - [SMALL_STATE(784)] = 17802, - [SMALL_STATE(785)] = 17903, - [SMALL_STATE(786)] = 18004, - [SMALL_STATE(787)] = 18107, - [SMALL_STATE(788)] = 18210, - [SMALL_STATE(789)] = 18313, - [SMALL_STATE(790)] = 18416, - [SMALL_STATE(791)] = 18519, - [SMALL_STATE(792)] = 18622, - [SMALL_STATE(793)] = 18725, - [SMALL_STATE(794)] = 18826, - [SMALL_STATE(795)] = 18929, - [SMALL_STATE(796)] = 19030, - [SMALL_STATE(797)] = 19131, - [SMALL_STATE(798)] = 19232, - [SMALL_STATE(799)] = 19333, - [SMALL_STATE(800)] = 19434, - [SMALL_STATE(801)] = 19535, - [SMALL_STATE(802)] = 19636, - [SMALL_STATE(803)] = 19737, - [SMALL_STATE(804)] = 19840, - [SMALL_STATE(805)] = 19941, - [SMALL_STATE(806)] = 20044, - [SMALL_STATE(807)] = 20145, - [SMALL_STATE(808)] = 20248, - [SMALL_STATE(809)] = 20349, - [SMALL_STATE(810)] = 20452, - [SMALL_STATE(811)] = 20553, - [SMALL_STATE(812)] = 20656, - [SMALL_STATE(813)] = 20757, - [SMALL_STATE(814)] = 20860, - [SMALL_STATE(815)] = 20963, - [SMALL_STATE(816)] = 21064, - [SMALL_STATE(817)] = 21167, - [SMALL_STATE(818)] = 21270, - [SMALL_STATE(819)] = 21371, - [SMALL_STATE(820)] = 21474, - [SMALL_STATE(821)] = 21575, - [SMALL_STATE(822)] = 21663, - [SMALL_STATE(823)] = 21764, - [SMALL_STATE(824)] = 21865, - [SMALL_STATE(825)] = 21936, - [SMALL_STATE(826)] = 22007, - [SMALL_STATE(827)] = 22108, - [SMALL_STATE(828)] = 22179, - [SMALL_STATE(829)] = 22280, - [SMALL_STATE(830)] = 22381, - [SMALL_STATE(831)] = 22449, - [SMALL_STATE(832)] = 22512, - [SMALL_STATE(833)] = 22575, - [SMALL_STATE(834)] = 22637, - [SMALL_STATE(835)] = 22699, - [SMALL_STATE(836)] = 22761, - [SMALL_STATE(837)] = 22823, - [SMALL_STATE(838)] = 22885, - [SMALL_STATE(839)] = 22947, - [SMALL_STATE(840)] = 23009, - [SMALL_STATE(841)] = 23071, - [SMALL_STATE(842)] = 23133, - [SMALL_STATE(843)] = 23195, - [SMALL_STATE(844)] = 23254, - [SMALL_STATE(845)] = 23325, - [SMALL_STATE(846)] = 23390, - [SMALL_STATE(847)] = 23449, - [SMALL_STATE(848)] = 23508, - [SMALL_STATE(849)] = 23567, - [SMALL_STATE(850)] = 23659, - [SMALL_STATE(851)] = 23717, - [SMALL_STATE(852)] = 23809, - [SMALL_STATE(853)] = 23901, - [SMALL_STATE(854)] = 23993, - [SMALL_STATE(855)] = 24085, - [SMALL_STATE(856)] = 24177, - [SMALL_STATE(857)] = 24235, - [SMALL_STATE(858)] = 24293, - [SMALL_STATE(859)] = 24351, - [SMALL_STATE(860)] = 24409, - [SMALL_STATE(861)] = 24501, - [SMALL_STATE(862)] = 24559, - [SMALL_STATE(863)] = 24653, - [SMALL_STATE(864)] = 24745, - [SMALL_STATE(865)] = 24803, - [SMALL_STATE(866)] = 24861, - [SMALL_STATE(867)] = 24919, - [SMALL_STATE(868)] = 25011, - [SMALL_STATE(869)] = 25103, - [SMALL_STATE(870)] = 25161, - [SMALL_STATE(871)] = 25219, - [SMALL_STATE(872)] = 25311, - [SMALL_STATE(873)] = 25369, - [SMALL_STATE(874)] = 25461, - [SMALL_STATE(875)] = 25553, - [SMALL_STATE(876)] = 25645, - [SMALL_STATE(877)] = 25737, - [SMALL_STATE(878)] = 25829, - [SMALL_STATE(879)] = 25921, - [SMALL_STATE(880)] = 26013, - [SMALL_STATE(881)] = 26105, - [SMALL_STATE(882)] = 26197, - [SMALL_STATE(883)] = 26255, - [SMALL_STATE(884)] = 26313, - [SMALL_STATE(885)] = 26371, - [SMALL_STATE(886)] = 26463, - [SMALL_STATE(887)] = 26521, - [SMALL_STATE(888)] = 26588, - [SMALL_STATE(889)] = 26677, - [SMALL_STATE(890)] = 26744, - [SMALL_STATE(891)] = 26805, - [SMALL_STATE(892)] = 26872, - [SMALL_STATE(893)] = 26929, - [SMALL_STATE(894)] = 26986, - [SMALL_STATE(895)] = 27077, - [SMALL_STATE(896)] = 27134, - [SMALL_STATE(897)] = 27199, - [SMALL_STATE(898)] = 27256, - [SMALL_STATE(899)] = 27345, - [SMALL_STATE(900)] = 27412, - [SMALL_STATE(901)] = 27477, - [SMALL_STATE(902)] = 27534, - [SMALL_STATE(903)] = 27601, - [SMALL_STATE(904)] = 27663, - [SMALL_STATE(905)] = 27725, - [SMALL_STATE(906)] = 27787, - [SMALL_STATE(907)] = 27851, - [SMALL_STATE(908)] = 27914, - [SMALL_STATE(909)] = 27973, - [SMALL_STATE(910)] = 28032, - [SMALL_STATE(911)] = 28091, - [SMALL_STATE(912)] = 28173, - [SMALL_STATE(913)] = 28255, - [SMALL_STATE(914)] = 28337, - [SMALL_STATE(915)] = 28419, - [SMALL_STATE(916)] = 28501, - [SMALL_STATE(917)] = 28555, - [SMALL_STATE(918)] = 28637, - [SMALL_STATE(919)] = 28691, - [SMALL_STATE(920)] = 28773, - [SMALL_STATE(921)] = 28855, - [SMALL_STATE(922)] = 28937, - [SMALL_STATE(923)] = 29019, - [SMALL_STATE(924)] = 29082, - [SMALL_STATE(925)] = 29143, - [SMALL_STATE(926)] = 29206, - [SMALL_STATE(927)] = 29259, - [SMALL_STATE(928)] = 29322, - [SMALL_STATE(929)] = 29385, - [SMALL_STATE(930)] = 29446, - [SMALL_STATE(931)] = 29507, - [SMALL_STATE(932)] = 29568, - [SMALL_STATE(933)] = 29647, - [SMALL_STATE(934)] = 29708, - [SMALL_STATE(935)] = 29771, - [SMALL_STATE(936)] = 29834, - [SMALL_STATE(937)] = 29887, - [SMALL_STATE(938)] = 29940, - [SMALL_STATE(939)] = 30003, - [SMALL_STATE(940)] = 30055, - [SMALL_STATE(941)] = 30141, - [SMALL_STATE(942)] = 30193, - [SMALL_STATE(943)] = 30279, - [SMALL_STATE(944)] = 30365, - [SMALL_STATE(945)] = 30429, - [SMALL_STATE(946)] = 30511, - [SMALL_STATE(947)] = 30591, - [SMALL_STATE(948)] = 30669, - [SMALL_STATE(949)] = 30745, - [SMALL_STATE(950)] = 30805, - [SMALL_STATE(951)] = 30857, - [SMALL_STATE(952)] = 30931, - [SMALL_STATE(953)] = 31003, - [SMALL_STATE(954)] = 31071, - [SMALL_STATE(955)] = 31137, - [SMALL_STATE(956)] = 31200, - [SMALL_STATE(957)] = 31255, - [SMALL_STATE(958)] = 31340, - [SMALL_STATE(959)] = 31391, - [SMALL_STATE(960)] = 31446, - [SMALL_STATE(961)] = 31509, - [SMALL_STATE(962)] = 31572, - [SMALL_STATE(963)] = 31627, - [SMALL_STATE(964)] = 31712, - [SMALL_STATE(965)] = 31763, - [SMALL_STATE(966)] = 31818, - [SMALL_STATE(967)] = 31873, - [SMALL_STATE(968)] = 31928, - [SMALL_STATE(969)] = 31983, - [SMALL_STATE(970)] = 32038, - [SMALL_STATE(971)] = 32089, - [SMALL_STATE(972)] = 32154, - [SMALL_STATE(973)] = 32221, - [SMALL_STATE(974)] = 32292, - [SMALL_STATE(975)] = 32347, - [SMALL_STATE(976)] = 32420, - [SMALL_STATE(977)] = 32495, - [SMALL_STATE(978)] = 32572, - [SMALL_STATE(979)] = 32651, - [SMALL_STATE(980)] = 32732, - [SMALL_STATE(981)] = 32795, - [SMALL_STATE(982)] = 32846, - [SMALL_STATE(983)] = 32931, - [SMALL_STATE(984)] = 32986, - [SMALL_STATE(985)] = 33041, - [SMALL_STATE(986)] = 33096, - [SMALL_STATE(987)] = 33159, - [SMALL_STATE(988)] = 33243, - [SMALL_STATE(989)] = 33305, - [SMALL_STATE(990)] = 33361, - [SMALL_STATE(991)] = 33439, - [SMALL_STATE(992)] = 33489, - [SMALL_STATE(993)] = 33539, - [SMALL_STATE(994)] = 33611, - [SMALL_STATE(995)] = 33681, - [SMALL_STATE(996)] = 33747, - [SMALL_STATE(997)] = 33807, - [SMALL_STATE(998)] = 33871, - [SMALL_STATE(999)] = 33921, - [SMALL_STATE(1000)] = 34001, - [SMALL_STATE(1001)] = 34055, - [SMALL_STATE(1002)] = 34115, - [SMALL_STATE(1003)] = 34175, - [SMALL_STATE(1004)] = 34229, - [SMALL_STATE(1005)] = 34313, - [SMALL_STATE(1006)] = 34389, - [SMALL_STATE(1007)] = 34447, - [SMALL_STATE(1008)] = 34497, - [SMALL_STATE(1009)] = 34547, - [SMALL_STATE(1010)] = 34597, - [SMALL_STATE(1011)] = 34647, - [SMALL_STATE(1012)] = 34697, - [SMALL_STATE(1013)] = 34747, - [SMALL_STATE(1014)] = 34797, - [SMALL_STATE(1015)] = 34851, - [SMALL_STATE(1016)] = 34901, - [SMALL_STATE(1017)] = 34951, - [SMALL_STATE(1018)] = 35005, - [SMALL_STATE(1019)] = 35065, - [SMALL_STATE(1020)] = 35115, - [SMALL_STATE(1021)] = 35165, - [SMALL_STATE(1022)] = 35225, - [SMALL_STATE(1023)] = 35279, - [SMALL_STATE(1024)] = 35329, - [SMALL_STATE(1025)] = 35379, - [SMALL_STATE(1026)] = 35433, - [SMALL_STATE(1027)] = 35483, - [SMALL_STATE(1028)] = 35537, - [SMALL_STATE(1029)] = 35587, - [SMALL_STATE(1030)] = 35637, - [SMALL_STATE(1031)] = 35687, - [SMALL_STATE(1032)] = 35737, - [SMALL_STATE(1033)] = 35821, - [SMALL_STATE(1034)] = 35895, - [SMALL_STATE(1035)] = 35945, - [SMALL_STATE(1036)] = 35995, - [SMALL_STATE(1037)] = 36051, - [SMALL_STATE(1038)] = 36101, - [SMALL_STATE(1039)] = 36155, - [SMALL_STATE(1040)] = 36213, - [SMALL_STATE(1041)] = 36263, - [SMALL_STATE(1042)] = 36313, - [SMALL_STATE(1043)] = 36363, - [SMALL_STATE(1044)] = 36412, - [SMALL_STATE(1045)] = 36461, - [SMALL_STATE(1046)] = 36510, - [SMALL_STATE(1047)] = 36559, - [SMALL_STATE(1048)] = 36608, - [SMALL_STATE(1049)] = 36657, - [SMALL_STATE(1050)] = 36706, - [SMALL_STATE(1051)] = 36755, - [SMALL_STATE(1052)] = 36804, - [SMALL_STATE(1053)] = 36853, - [SMALL_STATE(1054)] = 36902, - [SMALL_STATE(1055)] = 36951, - [SMALL_STATE(1056)] = 37000, - [SMALL_STATE(1057)] = 37049, - [SMALL_STATE(1058)] = 37098, - [SMALL_STATE(1059)] = 37147, - [SMALL_STATE(1060)] = 37196, - [SMALL_STATE(1061)] = 37245, - [SMALL_STATE(1062)] = 37294, - [SMALL_STATE(1063)] = 37343, - [SMALL_STATE(1064)] = 37392, - [SMALL_STATE(1065)] = 37441, - [SMALL_STATE(1066)] = 37490, - [SMALL_STATE(1067)] = 37539, - [SMALL_STATE(1068)] = 37588, - [SMALL_STATE(1069)] = 37637, - [SMALL_STATE(1070)] = 37686, - [SMALL_STATE(1071)] = 37735, - [SMALL_STATE(1072)] = 37784, - [SMALL_STATE(1073)] = 37833, - [SMALL_STATE(1074)] = 37882, - [SMALL_STATE(1075)] = 37931, - [SMALL_STATE(1076)] = 37980, - [SMALL_STATE(1077)] = 38029, - [SMALL_STATE(1078)] = 38078, - [SMALL_STATE(1079)] = 38127, - [SMALL_STATE(1080)] = 38176, - [SMALL_STATE(1081)] = 38225, - [SMALL_STATE(1082)] = 38274, - [SMALL_STATE(1083)] = 38323, - [SMALL_STATE(1084)] = 38372, - [SMALL_STATE(1085)] = 38421, - [SMALL_STATE(1086)] = 38470, - [SMALL_STATE(1087)] = 38519, - [SMALL_STATE(1088)] = 38568, - [SMALL_STATE(1089)] = 38621, - [SMALL_STATE(1090)] = 38683, - [SMALL_STATE(1091)] = 38741, - [SMALL_STATE(1092)] = 38803, - [SMALL_STATE(1093)] = 38865, - [SMALL_STATE(1094)] = 38927, - [SMALL_STATE(1095)] = 38989, - [SMALL_STATE(1096)] = 39036, - [SMALL_STATE(1097)] = 39095, - [SMALL_STATE(1098)] = 39142, - [SMALL_STATE(1099)] = 39207, - [SMALL_STATE(1100)] = 39270, - [SMALL_STATE(1101)] = 39329, - [SMALL_STATE(1102)] = 39412, - [SMALL_STATE(1103)] = 39495, - [SMALL_STATE(1104)] = 39542, - [SMALL_STATE(1105)] = 39595, - [SMALL_STATE(1106)] = 39642, - [SMALL_STATE(1107)] = 39689, - [SMALL_STATE(1108)] = 39736, - [SMALL_STATE(1109)] = 39783, - [SMALL_STATE(1110)] = 39830, - [SMALL_STATE(1111)] = 39877, - [SMALL_STATE(1112)] = 39924, - [SMALL_STATE(1113)] = 39977, - [SMALL_STATE(1114)] = 40032, - [SMALL_STATE(1115)] = 40079, - [SMALL_STATE(1116)] = 40126, - [SMALL_STATE(1117)] = 40173, - [SMALL_STATE(1118)] = 40242, - [SMALL_STATE(1119)] = 40289, - [SMALL_STATE(1120)] = 40368, - [SMALL_STATE(1121)] = 40439, - [SMALL_STATE(1122)] = 40518, - [SMALL_STATE(1123)] = 40597, - [SMALL_STATE(1124)] = 40644, - [SMALL_STATE(1125)] = 40691, - [SMALL_STATE(1126)] = 40738, - [SMALL_STATE(1127)] = 40785, - [SMALL_STATE(1128)] = 40844, - [SMALL_STATE(1129)] = 40927, - [SMALL_STATE(1130)] = 40986, - [SMALL_STATE(1131)] = 41045, - [SMALL_STATE(1132)] = 41106, - [SMALL_STATE(1133)] = 41163, - [SMALL_STATE(1134)] = 41236, - [SMALL_STATE(1135)] = 41311, - [SMALL_STATE(1136)] = 41388, - [SMALL_STATE(1137)] = 41434, - [SMALL_STATE(1138)] = 41480, - [SMALL_STATE(1139)] = 41530, - [SMALL_STATE(1140)] = 41575, - [SMALL_STATE(1141)] = 41620, - [SMALL_STATE(1142)] = 41665, - [SMALL_STATE(1143)] = 41710, - [SMALL_STATE(1144)] = 41755, - [SMALL_STATE(1145)] = 41800, - [SMALL_STATE(1146)] = 41845, - [SMALL_STATE(1147)] = 41890, - [SMALL_STATE(1148)] = 41935, - [SMALL_STATE(1149)] = 41980, - [SMALL_STATE(1150)] = 42025, - [SMALL_STATE(1151)] = 42070, - [SMALL_STATE(1152)] = 42115, - [SMALL_STATE(1153)] = 42164, - [SMALL_STATE(1154)] = 42213, - [SMALL_STATE(1155)] = 42258, - [SMALL_STATE(1156)] = 42303, - [SMALL_STATE(1157)] = 42348, - [SMALL_STATE(1158)] = 42397, - [SMALL_STATE(1159)] = 42442, - [SMALL_STATE(1160)] = 42487, - [SMALL_STATE(1161)] = 42532, - [SMALL_STATE(1162)] = 42577, - [SMALL_STATE(1163)] = 42622, - [SMALL_STATE(1164)] = 42671, - [SMALL_STATE(1165)] = 42716, - [SMALL_STATE(1166)] = 42765, - [SMALL_STATE(1167)] = 42814, - [SMALL_STATE(1168)] = 42859, - [SMALL_STATE(1169)] = 42904, - [SMALL_STATE(1170)] = 42953, - [SMALL_STATE(1171)] = 42998, - [SMALL_STATE(1172)] = 43047, - [SMALL_STATE(1173)] = 43092, - [SMALL_STATE(1174)] = 43137, - [SMALL_STATE(1175)] = 43182, - [SMALL_STATE(1176)] = 43227, - [SMALL_STATE(1177)] = 43272, - [SMALL_STATE(1178)] = 43317, - [SMALL_STATE(1179)] = 43362, - [SMALL_STATE(1180)] = 43407, - [SMALL_STATE(1181)] = 43452, - [SMALL_STATE(1182)] = 43497, - [SMALL_STATE(1183)] = 43542, - [SMALL_STATE(1184)] = 43586, - [SMALL_STATE(1185)] = 43630, - [SMALL_STATE(1186)] = 43674, - [SMALL_STATE(1187)] = 43718, - [SMALL_STATE(1188)] = 43762, - [SMALL_STATE(1189)] = 43806, - [SMALL_STATE(1190)] = 43850, - [SMALL_STATE(1191)] = 43894, - [SMALL_STATE(1192)] = 43938, - [SMALL_STATE(1193)] = 43982, - [SMALL_STATE(1194)] = 44051, - [SMALL_STATE(1195)] = 44120, - [SMALL_STATE(1196)] = 44189, - [SMALL_STATE(1197)] = 44258, - [SMALL_STATE(1198)] = 44313, - [SMALL_STATE(1199)] = 44356, - [SMALL_STATE(1200)] = 44406, - [SMALL_STATE(1201)] = 44458, - [SMALL_STATE(1202)] = 44535, - [SMALL_STATE(1203)] = 44590, - [SMALL_STATE(1204)] = 44663, - [SMALL_STATE(1205)] = 44734, - [SMALL_STATE(1206)] = 44803, - [SMALL_STATE(1207)] = 44870, - [SMALL_STATE(1208)] = 44929, - [SMALL_STATE(1209)] = 45006, - [SMALL_STATE(1210)] = 45083, - [SMALL_STATE(1211)] = 45160, - [SMALL_STATE(1212)] = 45223, - [SMALL_STATE(1213)] = 45288, - [SMALL_STATE(1214)] = 45345, - [SMALL_STATE(1215)] = 45409, - [SMALL_STATE(1216)] = 45463, - [SMALL_STATE(1217)] = 45503, - [SMALL_STATE(1218)] = 45559, - [SMALL_STATE(1219)] = 45627, - [SMALL_STATE(1220)] = 45667, - [SMALL_STATE(1221)] = 45725, - [SMALL_STATE(1222)] = 45767, - [SMALL_STATE(1223)] = 45841, - [SMALL_STATE(1224)] = 45911, - [SMALL_STATE(1225)] = 45985, - [SMALL_STATE(1226)] = 46047, - [SMALL_STATE(1227)] = 46087, - [SMALL_STATE(1228)] = 46127, - [SMALL_STATE(1229)] = 46167, - [SMALL_STATE(1230)] = 46235, - [SMALL_STATE(1231)] = 46277, - [SMALL_STATE(1232)] = 46317, - [SMALL_STATE(1233)] = 46357, - [SMALL_STATE(1234)] = 46397, - [SMALL_STATE(1235)] = 46439, - [SMALL_STATE(1236)] = 46479, - [SMALL_STATE(1237)] = 46519, - [SMALL_STATE(1238)] = 46559, - [SMALL_STATE(1239)] = 46625, - [SMALL_STATE(1240)] = 46665, - [SMALL_STATE(1241)] = 46707, - [SMALL_STATE(1242)] = 46749, - [SMALL_STATE(1243)] = 46823, - [SMALL_STATE(1244)] = 46863, - [SMALL_STATE(1245)] = 46930, - [SMALL_STATE(1246)] = 46993, - [SMALL_STATE(1247)] = 47058, - [SMALL_STATE(1248)] = 47131, - [SMALL_STATE(1249)] = 47196, - [SMALL_STATE(1250)] = 47269, - [SMALL_STATE(1251)] = 47332, - [SMALL_STATE(1252)] = 47393, - [SMALL_STATE(1253)] = 47448, - [SMALL_STATE(1254)] = 47505, - [SMALL_STATE(1255)] = 47570, - [SMALL_STATE(1256)] = 47633, - [SMALL_STATE(1257)] = 47700, - [SMALL_STATE(1258)] = 47773, - [SMALL_STATE(1259)] = 47846, - [SMALL_STATE(1260)] = 47899, - [SMALL_STATE(1261)] = 47968, - [SMALL_STATE(1262)] = 48028, - [SMALL_STATE(1263)] = 48088, - [SMALL_STATE(1264)] = 48134, - [SMALL_STATE(1265)] = 48172, - [SMALL_STATE(1266)] = 48232, - [SMALL_STATE(1267)] = 48292, - [SMALL_STATE(1268)] = 48330, - [SMALL_STATE(1269)] = 48390, - [SMALL_STATE(1270)] = 48450, - [SMALL_STATE(1271)] = 48510, - [SMALL_STATE(1272)] = 48548, - [SMALL_STATE(1273)] = 48608, - [SMALL_STATE(1274)] = 48646, - [SMALL_STATE(1275)] = 48720, - [SMALL_STATE(1276)] = 48795, - [SMALL_STATE(1277)] = 48870, - [SMALL_STATE(1278)] = 48945, - [SMALL_STATE(1279)] = 49020, - [SMALL_STATE(1280)] = 49095, - [SMALL_STATE(1281)] = 49170, - [SMALL_STATE(1282)] = 49241, - [SMALL_STATE(1283)] = 49316, - [SMALL_STATE(1284)] = 49391, - [SMALL_STATE(1285)] = 49447, - [SMALL_STATE(1286)] = 49519, - [SMALL_STATE(1287)] = 49591, - [SMALL_STATE(1288)] = 49647, - [SMALL_STATE(1289)] = 49719, - [SMALL_STATE(1290)] = 49791, - [SMALL_STATE(1291)] = 49863, - [SMALL_STATE(1292)] = 49935, - [SMALL_STATE(1293)] = 49989, - [SMALL_STATE(1294)] = 50061, - [SMALL_STATE(1295)] = 50133, - [SMALL_STATE(1296)] = 50189, - [SMALL_STATE(1297)] = 50261, - [SMALL_STATE(1298)] = 50317, - [SMALL_STATE(1299)] = 50373, - [SMALL_STATE(1300)] = 50445, - [SMALL_STATE(1301)] = 50517, - [SMALL_STATE(1302)] = 50587, - [SMALL_STATE(1303)] = 50659, - [SMALL_STATE(1304)] = 50731, - [SMALL_STATE(1305)] = 50803, - [SMALL_STATE(1306)] = 50875, - [SMALL_STATE(1307)] = 50931, - [SMALL_STATE(1308)] = 51003, - [SMALL_STATE(1309)] = 51063, - [SMALL_STATE(1310)] = 51119, - [SMALL_STATE(1311)] = 51189, - [SMALL_STATE(1312)] = 51261, - [SMALL_STATE(1313)] = 51333, - [SMALL_STATE(1314)] = 51405, - [SMALL_STATE(1315)] = 51467, - [SMALL_STATE(1316)] = 51537, - [SMALL_STATE(1317)] = 51607, - [SMALL_STATE(1318)] = 51663, - [SMALL_STATE(1319)] = 51733, - [SMALL_STATE(1320)] = 51797, - [SMALL_STATE(1321)] = 51869, - [SMALL_STATE(1322)] = 51935, - [SMALL_STATE(1323)] = 52001, - [SMALL_STATE(1324)] = 52069, - [SMALL_STATE(1325)] = 52139, - [SMALL_STATE(1326)] = 52195, - [SMALL_STATE(1327)] = 52251, - [SMALL_STATE(1328)] = 52323, - [SMALL_STATE(1329)] = 52393, - [SMALL_STATE(1330)] = 52449, - [SMALL_STATE(1331)] = 52501, - [SMALL_STATE(1332)] = 52573, - [SMALL_STATE(1333)] = 52645, - [SMALL_STATE(1334)] = 52701, - [SMALL_STATE(1335)] = 52757, - [SMALL_STATE(1336)] = 52831, - [SMALL_STATE(1337)] = 52887, - [SMALL_STATE(1338)] = 52959, - [SMALL_STATE(1339)] = 53031, - [SMALL_STATE(1340)] = 53087, - [SMALL_STATE(1341)] = 53143, - [SMALL_STATE(1342)] = 53215, - [SMALL_STATE(1343)] = 53287, - [SMALL_STATE(1344)] = 53343, - [SMALL_STATE(1345)] = 53399, - [SMALL_STATE(1346)] = 53471, - [SMALL_STATE(1347)] = 53527, - [SMALL_STATE(1348)] = 53599, - [SMALL_STATE(1349)] = 53671, - [SMALL_STATE(1350)] = 53743, - [SMALL_STATE(1351)] = 53815, - [SMALL_STATE(1352)] = 53885, - [SMALL_STATE(1353)] = 53957, - [SMALL_STATE(1354)] = 54029, - [SMALL_STATE(1355)] = 54098, - [SMALL_STATE(1356)] = 54151, - [SMALL_STATE(1357)] = 54220, - [SMALL_STATE(1358)] = 54289, - [SMALL_STATE(1359)] = 54358, - [SMALL_STATE(1360)] = 54427, - [SMALL_STATE(1361)] = 54496, - [SMALL_STATE(1362)] = 54565, - [SMALL_STATE(1363)] = 54618, - [SMALL_STATE(1364)] = 54687, - [SMALL_STATE(1365)] = 54722, - [SMALL_STATE(1366)] = 54791, - [SMALL_STATE(1367)] = 54860, - [SMALL_STATE(1368)] = 54929, - [SMALL_STATE(1369)] = 54964, - [SMALL_STATE(1370)] = 55017, - [SMALL_STATE(1371)] = 55086, - [SMALL_STATE(1372)] = 55155, - [SMALL_STATE(1373)] = 55224, - [SMALL_STATE(1374)] = 55277, - [SMALL_STATE(1375)] = 55346, - [SMALL_STATE(1376)] = 55399, - [SMALL_STATE(1377)] = 55468, - [SMALL_STATE(1378)] = 55537, - [SMALL_STATE(1379)] = 55606, - [SMALL_STATE(1380)] = 55675, - [SMALL_STATE(1381)] = 55744, - [SMALL_STATE(1382)] = 55813, - [SMALL_STATE(1383)] = 55882, - [SMALL_STATE(1384)] = 55921, - [SMALL_STATE(1385)] = 55990, - [SMALL_STATE(1386)] = 56043, - [SMALL_STATE(1387)] = 56085, - [SMALL_STATE(1388)] = 56151, - [SMALL_STATE(1389)] = 56187, - [SMALL_STATE(1390)] = 56231, - [SMALL_STATE(1391)] = 56267, - [SMALL_STATE(1392)] = 56303, - [SMALL_STATE(1393)] = 56339, - [SMALL_STATE(1394)] = 56388, - [SMALL_STATE(1395)] = 56435, - [SMALL_STATE(1396)] = 56482, - [SMALL_STATE(1397)] = 56529, - [SMALL_STATE(1398)] = 56576, - [SMALL_STATE(1399)] = 56623, - [SMALL_STATE(1400)] = 56670, - [SMALL_STATE(1401)] = 56714, - [SMALL_STATE(1402)] = 56768, - [SMALL_STATE(1403)] = 56802, - [SMALL_STATE(1404)] = 56840, - [SMALL_STATE(1405)] = 56884, - [SMALL_STATE(1406)] = 56938, - [SMALL_STATE(1407)] = 56982, - [SMALL_STATE(1408)] = 57026, - [SMALL_STATE(1409)] = 57062, - [SMALL_STATE(1410)] = 57116, - [SMALL_STATE(1411)] = 57170, - [SMALL_STATE(1412)] = 57214, - [SMALL_STATE(1413)] = 57268, - [SMALL_STATE(1414)] = 57312, - [SMALL_STATE(1415)] = 57345, - [SMALL_STATE(1416)] = 57400, - [SMALL_STATE(1417)] = 57451, - [SMALL_STATE(1418)] = 57502, - [SMALL_STATE(1419)] = 57545, - [SMALL_STATE(1420)] = 57588, - [SMALL_STATE(1421)] = 57639, - [SMALL_STATE(1422)] = 57690, - [SMALL_STATE(1423)] = 57741, - [SMALL_STATE(1424)] = 57792, - [SMALL_STATE(1425)] = 57847, - [SMALL_STATE(1426)] = 57898, - [SMALL_STATE(1427)] = 57949, - [SMALL_STATE(1428)] = 58004, - [SMALL_STATE(1429)] = 58055, - [SMALL_STATE(1430)] = 58106, - [SMALL_STATE(1431)] = 58157, - [SMALL_STATE(1432)] = 58208, - [SMALL_STATE(1433)] = 58259, - [SMALL_STATE(1434)] = 58302, - [SMALL_STATE(1435)] = 58342, - [SMALL_STATE(1436)] = 58386, - [SMALL_STATE(1437)] = 58426, - [SMALL_STATE(1438)] = 58466, - [SMALL_STATE(1439)] = 58506, - [SMALL_STATE(1440)] = 58546, - [SMALL_STATE(1441)] = 58586, - [SMALL_STATE(1442)] = 58626, - [SMALL_STATE(1443)] = 58666, - [SMALL_STATE(1444)] = 58714, - [SMALL_STATE(1445)] = 58754, - [SMALL_STATE(1446)] = 58786, - [SMALL_STATE(1447)] = 58826, - [SMALL_STATE(1448)] = 58866, - [SMALL_STATE(1449)] = 58906, - [SMALL_STATE(1450)] = 58946, - [SMALL_STATE(1451)] = 58974, - [SMALL_STATE(1452)] = 59014, - [SMALL_STATE(1453)] = 59054, - [SMALL_STATE(1454)] = 59086, - [SMALL_STATE(1455)] = 59126, - [SMALL_STATE(1456)] = 59166, - [SMALL_STATE(1457)] = 59206, - [SMALL_STATE(1458)] = 59238, - [SMALL_STATE(1459)] = 59278, - [SMALL_STATE(1460)] = 59318, - [SMALL_STATE(1461)] = 59352, - [SMALL_STATE(1462)] = 59388, - [SMALL_STATE(1463)] = 59416, - [SMALL_STATE(1464)] = 59456, - [SMALL_STATE(1465)] = 59498, - [SMALL_STATE(1466)] = 59538, - [SMALL_STATE(1467)] = 59584, - [SMALL_STATE(1468)] = 59630, - [SMALL_STATE(1469)] = 59678, - [SMALL_STATE(1470)] = 59706, - [SMALL_STATE(1471)] = 59738, - [SMALL_STATE(1472)] = 59766, - [SMALL_STATE(1473)] = 59798, - [SMALL_STATE(1474)] = 59848, - [SMALL_STATE(1475)] = 59876, - [SMALL_STATE(1476)] = 59904, - [SMALL_STATE(1477)] = 59944, - [SMALL_STATE(1478)] = 59984, - [SMALL_STATE(1479)] = 60024, - [SMALL_STATE(1480)] = 60064, - [SMALL_STATE(1481)] = 60104, - [SMALL_STATE(1482)] = 60144, - [SMALL_STATE(1483)] = 60184, - [SMALL_STATE(1484)] = 60224, - [SMALL_STATE(1485)] = 60264, - [SMALL_STATE(1486)] = 60304, - [SMALL_STATE(1487)] = 60344, - [SMALL_STATE(1488)] = 60384, - [SMALL_STATE(1489)] = 60424, - [SMALL_STATE(1490)] = 60464, - [SMALL_STATE(1491)] = 60504, - [SMALL_STATE(1492)] = 60544, - [SMALL_STATE(1493)] = 60584, - [SMALL_STATE(1494)] = 60624, - [SMALL_STATE(1495)] = 60664, - [SMALL_STATE(1496)] = 60704, - [SMALL_STATE(1497)] = 60749, - [SMALL_STATE(1498)] = 60792, - [SMALL_STATE(1499)] = 60823, - [SMALL_STATE(1500)] = 60868, - [SMALL_STATE(1501)] = 60913, - [SMALL_STATE(1502)] = 60958, - [SMALL_STATE(1503)] = 60985, - [SMALL_STATE(1504)] = 61030, - [SMALL_STATE(1505)] = 61061, - [SMALL_STATE(1506)] = 61096, - [SMALL_STATE(1507)] = 61141, - [SMALL_STATE(1508)] = 61172, - [SMALL_STATE(1509)] = 61203, - [SMALL_STATE(1510)] = 61230, - [SMALL_STATE(1511)] = 61257, - [SMALL_STATE(1512)] = 61284, - [SMALL_STATE(1513)] = 61327, - [SMALL_STATE(1514)] = 61372, - [SMALL_STATE(1515)] = 61403, - [SMALL_STATE(1516)] = 61434, - [SMALL_STATE(1517)] = 61461, - [SMALL_STATE(1518)] = 61494, - [SMALL_STATE(1519)] = 61525, - [SMALL_STATE(1520)] = 61570, - [SMALL_STATE(1521)] = 61615, - [SMALL_STATE(1522)] = 61660, - [SMALL_STATE(1523)] = 61709, - [SMALL_STATE(1524)] = 61752, - [SMALL_STATE(1525)] = 61779, - [SMALL_STATE(1526)] = 61808, - [SMALL_STATE(1527)] = 61835, - [SMALL_STATE(1528)] = 61880, - [SMALL_STATE(1529)] = 61923, - [SMALL_STATE(1530)] = 61964, - [SMALL_STATE(1531)] = 62003, - [SMALL_STATE(1532)] = 62030, - [SMALL_STATE(1533)] = 62067, - [SMALL_STATE(1534)] = 62112, - [SMALL_STATE(1535)] = 62157, - [SMALL_STATE(1536)] = 62192, - [SMALL_STATE(1537)] = 62225, - [SMALL_STATE(1538)] = 62256, - [SMALL_STATE(1539)] = 62301, - [SMALL_STATE(1540)] = 62346, - [SMALL_STATE(1541)] = 62377, - [SMALL_STATE(1542)] = 62420, - [SMALL_STATE(1543)] = 62465, - [SMALL_STATE(1544)] = 62508, - [SMALL_STATE(1545)] = 62553, - [SMALL_STATE(1546)] = 62602, - [SMALL_STATE(1547)] = 62629, - [SMALL_STATE(1548)] = 62656, - [SMALL_STATE(1549)] = 62696, - [SMALL_STATE(1550)] = 62736, - [SMALL_STATE(1551)] = 62776, - [SMALL_STATE(1552)] = 62816, - [SMALL_STATE(1553)] = 62860, - [SMALL_STATE(1554)] = 62900, - [SMALL_STATE(1555)] = 62940, - [SMALL_STATE(1556)] = 62980, - [SMALL_STATE(1557)] = 63015, - [SMALL_STATE(1558)] = 63056, - [SMALL_STATE(1559)] = 63097, - [SMALL_STATE(1560)] = 63138, - [SMALL_STATE(1561)] = 63179, - [SMALL_STATE(1562)] = 63220, - [SMALL_STATE(1563)] = 63261, - [SMALL_STATE(1564)] = 63302, - [SMALL_STATE(1565)] = 63343, - [SMALL_STATE(1566)] = 63384, - [SMALL_STATE(1567)] = 63425, - [SMALL_STATE(1568)] = 63465, - [SMALL_STATE(1569)] = 63503, - [SMALL_STATE(1570)] = 63537, - [SMALL_STATE(1571)] = 63575, - [SMALL_STATE(1572)] = 63604, - [SMALL_STATE(1573)] = 63645, - [SMALL_STATE(1574)] = 63674, - [SMALL_STATE(1575)] = 63715, - [SMALL_STATE(1576)] = 63744, - [SMALL_STATE(1577)] = 63785, - [SMALL_STATE(1578)] = 63826, - [SMALL_STATE(1579)] = 63855, - [SMALL_STATE(1580)] = 63894, - [SMALL_STATE(1581)] = 63931, - [SMALL_STATE(1582)] = 63957, - [SMALL_STATE(1583)] = 63994, - [SMALL_STATE(1584)] = 64031, - [SMALL_STATE(1585)] = 64068, - [SMALL_STATE(1586)] = 64105, - [SMALL_STATE(1587)] = 64134, - [SMALL_STATE(1588)] = 64155, - [SMALL_STATE(1589)] = 64184, - [SMALL_STATE(1590)] = 64205, - [SMALL_STATE(1591)] = 64238, - [SMALL_STATE(1592)] = 64275, - [SMALL_STATE(1593)] = 64312, - [SMALL_STATE(1594)] = 64333, - [SMALL_STATE(1595)] = 64358, - [SMALL_STATE(1596)] = 64387, - [SMALL_STATE(1597)] = 64424, - [SMALL_STATE(1598)] = 64461, - [SMALL_STATE(1599)] = 64498, - [SMALL_STATE(1600)] = 64535, - [SMALL_STATE(1601)] = 64564, - [SMALL_STATE(1602)] = 64601, - [SMALL_STATE(1603)] = 64634, - [SMALL_STATE(1604)] = 64671, - [SMALL_STATE(1605)] = 64708, - [SMALL_STATE(1606)] = 64744, - [SMALL_STATE(1607)] = 64768, - [SMALL_STATE(1608)] = 64797, - [SMALL_STATE(1609)] = 64824, - [SMALL_STATE(1610)] = 64853, - [SMALL_STATE(1611)] = 64880, - [SMALL_STATE(1612)] = 64911, - [SMALL_STATE(1613)] = 64940, - [SMALL_STATE(1614)] = 64973, - [SMALL_STATE(1615)] = 65002, - [SMALL_STATE(1616)] = 65029, - [SMALL_STATE(1617)] = 65058, - [SMALL_STATE(1618)] = 65091, - [SMALL_STATE(1619)] = 65120, - [SMALL_STATE(1620)] = 65153, - [SMALL_STATE(1621)] = 65182, - [SMALL_STATE(1622)] = 65211, - [SMALL_STATE(1623)] = 65242, - [SMALL_STATE(1624)] = 65267, - [SMALL_STATE(1625)] = 65296, - [SMALL_STATE(1626)] = 65327, - [SMALL_STATE(1627)] = 65354, - [SMALL_STATE(1628)] = 65383, - [SMALL_STATE(1629)] = 65408, - [SMALL_STATE(1630)] = 65432, - [SMALL_STATE(1631)] = 65450, - [SMALL_STATE(1632)] = 65480, - [SMALL_STATE(1633)] = 65512, - [SMALL_STATE(1634)] = 65538, - [SMALL_STATE(1635)] = 65570, - [SMALL_STATE(1636)] = 65588, - [SMALL_STATE(1637)] = 65612, - [SMALL_STATE(1638)] = 65630, - [SMALL_STATE(1639)] = 65648, - [SMALL_STATE(1640)] = 65680, - [SMALL_STATE(1641)] = 65712, - [SMALL_STATE(1642)] = 65738, - [SMALL_STATE(1643)] = 65760, - [SMALL_STATE(1644)] = 65786, - [SMALL_STATE(1645)] = 65804, - [SMALL_STATE(1646)] = 65822, - [SMALL_STATE(1647)] = 65854, - [SMALL_STATE(1648)] = 65872, - [SMALL_STATE(1649)] = 65898, - [SMALL_STATE(1650)] = 65919, - [SMALL_STATE(1651)] = 65948, - [SMALL_STATE(1652)] = 65967, - [SMALL_STATE(1653)] = 65996, - [SMALL_STATE(1654)] = 66017, - [SMALL_STATE(1655)] = 66046, - [SMALL_STATE(1656)] = 66071, - [SMALL_STATE(1657)] = 66096, - [SMALL_STATE(1658)] = 66117, - [SMALL_STATE(1659)] = 66146, - [SMALL_STATE(1660)] = 66167, - [SMALL_STATE(1661)] = 66188, - [SMALL_STATE(1662)] = 66217, - [SMALL_STATE(1663)] = 66238, - [SMALL_STATE(1664)] = 66267, - [SMALL_STATE(1665)] = 66296, - [SMALL_STATE(1666)] = 66317, - [SMALL_STATE(1667)] = 66346, - [SMALL_STATE(1668)] = 66375, - [SMALL_STATE(1669)] = 66396, - [SMALL_STATE(1670)] = 66425, - [SMALL_STATE(1671)] = 66446, - [SMALL_STATE(1672)] = 66467, - [SMALL_STATE(1673)] = 66488, - [SMALL_STATE(1674)] = 66514, - [SMALL_STATE(1675)] = 66530, - [SMALL_STATE(1676)] = 66546, - [SMALL_STATE(1677)] = 66568, - [SMALL_STATE(1678)] = 66586, - [SMALL_STATE(1679)] = 66612, - [SMALL_STATE(1680)] = 66632, - [SMALL_STATE(1681)] = 66658, - [SMALL_STATE(1682)] = 66674, - [SMALL_STATE(1683)] = 66700, - [SMALL_STATE(1684)] = 66726, - [SMALL_STATE(1685)] = 66742, - [SMALL_STATE(1686)] = 66768, - [SMALL_STATE(1687)] = 66784, - [SMALL_STATE(1688)] = 66810, - [SMALL_STATE(1689)] = 66834, - [SMALL_STATE(1690)] = 66860, - [SMALL_STATE(1691)] = 66886, - [SMALL_STATE(1692)] = 66912, - [SMALL_STATE(1693)] = 66932, - [SMALL_STATE(1694)] = 66958, - [SMALL_STATE(1695)] = 66984, - [SMALL_STATE(1696)] = 67010, - [SMALL_STATE(1697)] = 67034, - [SMALL_STATE(1698)] = 67060, - [SMALL_STATE(1699)] = 67086, - [SMALL_STATE(1700)] = 67112, - [SMALL_STATE(1701)] = 67136, - [SMALL_STATE(1702)] = 67162, - [SMALL_STATE(1703)] = 67178, - [SMALL_STATE(1704)] = 67204, - [SMALL_STATE(1705)] = 67230, - [SMALL_STATE(1706)] = 67246, - [SMALL_STATE(1707)] = 67262, - [SMALL_STATE(1708)] = 67286, - [SMALL_STATE(1709)] = 67310, - [SMALL_STATE(1710)] = 67336, - [SMALL_STATE(1711)] = 67352, - [SMALL_STATE(1712)] = 67378, - [SMALL_STATE(1713)] = 67398, - [SMALL_STATE(1714)] = 67422, - [SMALL_STATE(1715)] = 67445, - [SMALL_STATE(1716)] = 67462, - [SMALL_STATE(1717)] = 67485, - [SMALL_STATE(1718)] = 67500, - [SMALL_STATE(1719)] = 67523, - [SMALL_STATE(1720)] = 67538, - [SMALL_STATE(1721)] = 67553, - [SMALL_STATE(1722)] = 67568, - [SMALL_STATE(1723)] = 67587, - [SMALL_STATE(1724)] = 67610, - [SMALL_STATE(1725)] = 67633, - [SMALL_STATE(1726)] = 67658, - [SMALL_STATE(1727)] = 67675, - [SMALL_STATE(1728)] = 67690, - [SMALL_STATE(1729)] = 67705, - [SMALL_STATE(1730)] = 67728, - [SMALL_STATE(1731)] = 67751, - [SMALL_STATE(1732)] = 67766, - [SMALL_STATE(1733)] = 67781, - [SMALL_STATE(1734)] = 67796, - [SMALL_STATE(1735)] = 67815, - [SMALL_STATE(1736)] = 67832, - [SMALL_STATE(1737)] = 67847, - [SMALL_STATE(1738)] = 67864, - [SMALL_STATE(1739)] = 67882, - [SMALL_STATE(1740)] = 67896, - [SMALL_STATE(1741)] = 67916, - [SMALL_STATE(1742)] = 67934, - [SMALL_STATE(1743)] = 67948, - [SMALL_STATE(1744)] = 67966, - [SMALL_STATE(1745)] = 67984, - [SMALL_STATE(1746)] = 68004, - [SMALL_STATE(1747)] = 68020, - [SMALL_STATE(1748)] = 68040, - [SMALL_STATE(1749)] = 68056, - [SMALL_STATE(1750)] = 68072, - [SMALL_STATE(1751)] = 68090, - [SMALL_STATE(1752)] = 68108, - [SMALL_STATE(1753)] = 68128, - [SMALL_STATE(1754)] = 68148, - [SMALL_STATE(1755)] = 68168, - [SMALL_STATE(1756)] = 68186, - [SMALL_STATE(1757)] = 68206, - [SMALL_STATE(1758)] = 68226, - [SMALL_STATE(1759)] = 68240, - [SMALL_STATE(1760)] = 68256, - [SMALL_STATE(1761)] = 68276, - [SMALL_STATE(1762)] = 68290, - [SMALL_STATE(1763)] = 68304, - [SMALL_STATE(1764)] = 68324, - [SMALL_STATE(1765)] = 68338, - [SMALL_STATE(1766)] = 68352, - [SMALL_STATE(1767)] = 68366, - [SMALL_STATE(1768)] = 68386, - [SMALL_STATE(1769)] = 68400, - [SMALL_STATE(1770)] = 68420, - [SMALL_STATE(1771)] = 68434, - [SMALL_STATE(1772)] = 68452, - [SMALL_STATE(1773)] = 68472, - [SMALL_STATE(1774)] = 68492, - [SMALL_STATE(1775)] = 68508, - [SMALL_STATE(1776)] = 68524, - [SMALL_STATE(1777)] = 68538, - [SMALL_STATE(1778)] = 68552, - [SMALL_STATE(1779)] = 68566, - [SMALL_STATE(1780)] = 68580, - [SMALL_STATE(1781)] = 68594, - [SMALL_STATE(1782)] = 68608, - [SMALL_STATE(1783)] = 68628, - [SMALL_STATE(1784)] = 68639, - [SMALL_STATE(1785)] = 68656, - [SMALL_STATE(1786)] = 68667, - [SMALL_STATE(1787)] = 68678, - [SMALL_STATE(1788)] = 68693, - [SMALL_STATE(1789)] = 68704, - [SMALL_STATE(1790)] = 68715, - [SMALL_STATE(1791)] = 68734, - [SMALL_STATE(1792)] = 68745, - [SMALL_STATE(1793)] = 68756, - [SMALL_STATE(1794)] = 68775, - [SMALL_STATE(1795)] = 68786, - [SMALL_STATE(1796)] = 68805, - [SMALL_STATE(1797)] = 68816, - [SMALL_STATE(1798)] = 68827, - [SMALL_STATE(1799)] = 68838, - [SMALL_STATE(1800)] = 68849, - [SMALL_STATE(1801)] = 68866, - [SMALL_STATE(1802)] = 68877, - [SMALL_STATE(1803)] = 68890, - [SMALL_STATE(1804)] = 68905, - [SMALL_STATE(1805)] = 68921, - [SMALL_STATE(1806)] = 68935, - [SMALL_STATE(1807)] = 68949, - [SMALL_STATE(1808)] = 68965, - [SMALL_STATE(1809)] = 68981, - [SMALL_STATE(1810)] = 68997, - [SMALL_STATE(1811)] = 69011, - [SMALL_STATE(1812)] = 69025, - [SMALL_STATE(1813)] = 69039, - [SMALL_STATE(1814)] = 69053, - [SMALL_STATE(1815)] = 69067, - [SMALL_STATE(1816)] = 69081, - [SMALL_STATE(1817)] = 69095, - [SMALL_STATE(1818)] = 69109, - [SMALL_STATE(1819)] = 69123, - [SMALL_STATE(1820)] = 69139, - [SMALL_STATE(1821)] = 69153, - [SMALL_STATE(1822)] = 69167, - [SMALL_STATE(1823)] = 69183, - [SMALL_STATE(1824)] = 69197, - [SMALL_STATE(1825)] = 69211, - [SMALL_STATE(1826)] = 69225, - [SMALL_STATE(1827)] = 69241, - [SMALL_STATE(1828)] = 69255, - [SMALL_STATE(1829)] = 69271, - [SMALL_STATE(1830)] = 69281, - [SMALL_STATE(1831)] = 69295, - [SMALL_STATE(1832)] = 69309, - [SMALL_STATE(1833)] = 69325, - [SMALL_STATE(1834)] = 69335, - [SMALL_STATE(1835)] = 69349, - [SMALL_STATE(1836)] = 69365, - [SMALL_STATE(1837)] = 69379, - [SMALL_STATE(1838)] = 69393, - [SMALL_STATE(1839)] = 69407, - [SMALL_STATE(1840)] = 69421, - [SMALL_STATE(1841)] = 69437, - [SMALL_STATE(1842)] = 69451, - [SMALL_STATE(1843)] = 69465, - [SMALL_STATE(1844)] = 69479, - [SMALL_STATE(1845)] = 69489, - [SMALL_STATE(1846)] = 69503, - [SMALL_STATE(1847)] = 69519, - [SMALL_STATE(1848)] = 69535, - [SMALL_STATE(1849)] = 69549, - [SMALL_STATE(1850)] = 69563, - [SMALL_STATE(1851)] = 69579, - [SMALL_STATE(1852)] = 69593, - [SMALL_STATE(1853)] = 69609, - [SMALL_STATE(1854)] = 69623, - [SMALL_STATE(1855)] = 69637, - [SMALL_STATE(1856)] = 69651, - [SMALL_STATE(1857)] = 69665, - [SMALL_STATE(1858)] = 69679, - [SMALL_STATE(1859)] = 69693, - [SMALL_STATE(1860)] = 69707, - [SMALL_STATE(1861)] = 69723, - [SMALL_STATE(1862)] = 69739, - [SMALL_STATE(1863)] = 69755, - [SMALL_STATE(1864)] = 69769, - [SMALL_STATE(1865)] = 69783, - [SMALL_STATE(1866)] = 69797, - [SMALL_STATE(1867)] = 69813, - [SMALL_STATE(1868)] = 69827, - [SMALL_STATE(1869)] = 69841, - [SMALL_STATE(1870)] = 69857, - [SMALL_STATE(1871)] = 69871, - [SMALL_STATE(1872)] = 69885, - [SMALL_STATE(1873)] = 69901, - [SMALL_STATE(1874)] = 69917, - [SMALL_STATE(1875)] = 69931, - [SMALL_STATE(1876)] = 69945, - [SMALL_STATE(1877)] = 69959, - [SMALL_STATE(1878)] = 69975, - [SMALL_STATE(1879)] = 69989, - [SMALL_STATE(1880)] = 70002, - [SMALL_STATE(1881)] = 70015, - [SMALL_STATE(1882)] = 70028, - [SMALL_STATE(1883)] = 70041, - [SMALL_STATE(1884)] = 70054, - [SMALL_STATE(1885)] = 70067, - [SMALL_STATE(1886)] = 70080, - [SMALL_STATE(1887)] = 70093, - [SMALL_STATE(1888)] = 70106, - [SMALL_STATE(1889)] = 70119, - [SMALL_STATE(1890)] = 70132, - [SMALL_STATE(1891)] = 70145, - [SMALL_STATE(1892)] = 70158, - [SMALL_STATE(1893)] = 70171, - [SMALL_STATE(1894)] = 70184, - [SMALL_STATE(1895)] = 70197, - [SMALL_STATE(1896)] = 70210, - [SMALL_STATE(1897)] = 70223, - [SMALL_STATE(1898)] = 70236, - [SMALL_STATE(1899)] = 70249, - [SMALL_STATE(1900)] = 70262, - [SMALL_STATE(1901)] = 70275, - [SMALL_STATE(1902)] = 70288, - [SMALL_STATE(1903)] = 70301, - [SMALL_STATE(1904)] = 70314, - [SMALL_STATE(1905)] = 70327, - [SMALL_STATE(1906)] = 70336, - [SMALL_STATE(1907)] = 70349, - [SMALL_STATE(1908)] = 70362, - [SMALL_STATE(1909)] = 70375, - [SMALL_STATE(1910)] = 70388, - [SMALL_STATE(1911)] = 70401, - [SMALL_STATE(1912)] = 70414, - [SMALL_STATE(1913)] = 70427, - [SMALL_STATE(1914)] = 70440, - [SMALL_STATE(1915)] = 70453, - [SMALL_STATE(1916)] = 70466, - [SMALL_STATE(1917)] = 70479, - [SMALL_STATE(1918)] = 70492, - [SMALL_STATE(1919)] = 70505, - [SMALL_STATE(1920)] = 70518, - [SMALL_STATE(1921)] = 70531, - [SMALL_STATE(1922)] = 70544, - [SMALL_STATE(1923)] = 70557, - [SMALL_STATE(1924)] = 70570, - [SMALL_STATE(1925)] = 70583, - [SMALL_STATE(1926)] = 70596, - [SMALL_STATE(1927)] = 70609, - [SMALL_STATE(1928)] = 70622, - [SMALL_STATE(1929)] = 70635, - [SMALL_STATE(1930)] = 70648, - [SMALL_STATE(1931)] = 70661, - [SMALL_STATE(1932)] = 70674, - [SMALL_STATE(1933)] = 70687, - [SMALL_STATE(1934)] = 70696, - [SMALL_STATE(1935)] = 70709, - [SMALL_STATE(1936)] = 70722, - [SMALL_STATE(1937)] = 70731, - [SMALL_STATE(1938)] = 70744, - [SMALL_STATE(1939)] = 70757, - [SMALL_STATE(1940)] = 70770, - [SMALL_STATE(1941)] = 70783, - [SMALL_STATE(1942)] = 70796, - [SMALL_STATE(1943)] = 70809, - [SMALL_STATE(1944)] = 70822, - [SMALL_STATE(1945)] = 70835, - [SMALL_STATE(1946)] = 70848, - [SMALL_STATE(1947)] = 70861, - [SMALL_STATE(1948)] = 70874, - [SMALL_STATE(1949)] = 70887, - [SMALL_STATE(1950)] = 70900, - [SMALL_STATE(1951)] = 70913, - [SMALL_STATE(1952)] = 70922, - [SMALL_STATE(1953)] = 70931, - [SMALL_STATE(1954)] = 70944, - [SMALL_STATE(1955)] = 70957, - [SMALL_STATE(1956)] = 70968, - [SMALL_STATE(1957)] = 70981, - [SMALL_STATE(1958)] = 70994, - [SMALL_STATE(1959)] = 71003, - [SMALL_STATE(1960)] = 71016, - [SMALL_STATE(1961)] = 71029, - [SMALL_STATE(1962)] = 71042, - [SMALL_STATE(1963)] = 71055, - [SMALL_STATE(1964)] = 71068, - [SMALL_STATE(1965)] = 71081, - [SMALL_STATE(1966)] = 71094, - [SMALL_STATE(1967)] = 71107, - [SMALL_STATE(1968)] = 71120, - [SMALL_STATE(1969)] = 71133, - [SMALL_STATE(1970)] = 71146, - [SMALL_STATE(1971)] = 71159, - [SMALL_STATE(1972)] = 71170, - [SMALL_STATE(1973)] = 71183, - [SMALL_STATE(1974)] = 71194, - [SMALL_STATE(1975)] = 71203, - [SMALL_STATE(1976)] = 71212, - [SMALL_STATE(1977)] = 71225, - [SMALL_STATE(1978)] = 71238, - [SMALL_STATE(1979)] = 71251, - [SMALL_STATE(1980)] = 71264, - [SMALL_STATE(1981)] = 71277, - [SMALL_STATE(1982)] = 71290, - [SMALL_STATE(1983)] = 71303, - [SMALL_STATE(1984)] = 71316, - [SMALL_STATE(1985)] = 71329, - [SMALL_STATE(1986)] = 71342, - [SMALL_STATE(1987)] = 71355, - [SMALL_STATE(1988)] = 71368, - [SMALL_STATE(1989)] = 71381, - [SMALL_STATE(1990)] = 71394, - [SMALL_STATE(1991)] = 71407, - [SMALL_STATE(1992)] = 71420, - [SMALL_STATE(1993)] = 71433, - [SMALL_STATE(1994)] = 71446, - [SMALL_STATE(1995)] = 71457, - [SMALL_STATE(1996)] = 71470, - [SMALL_STATE(1997)] = 71483, - [SMALL_STATE(1998)] = 71496, - [SMALL_STATE(1999)] = 71509, - [SMALL_STATE(2000)] = 71522, - [SMALL_STATE(2001)] = 71535, - [SMALL_STATE(2002)] = 71548, - [SMALL_STATE(2003)] = 71561, - [SMALL_STATE(2004)] = 71574, - [SMALL_STATE(2005)] = 71587, - [SMALL_STATE(2006)] = 71600, - [SMALL_STATE(2007)] = 71613, - [SMALL_STATE(2008)] = 71626, - [SMALL_STATE(2009)] = 71639, - [SMALL_STATE(2010)] = 71652, - [SMALL_STATE(2011)] = 71665, - [SMALL_STATE(2012)] = 71678, - [SMALL_STATE(2013)] = 71691, - [SMALL_STATE(2014)] = 71700, - [SMALL_STATE(2015)] = 71713, - [SMALL_STATE(2016)] = 71726, - [SMALL_STATE(2017)] = 71739, - [SMALL_STATE(2018)] = 71750, - [SMALL_STATE(2019)] = 71763, - [SMALL_STATE(2020)] = 71772, - [SMALL_STATE(2021)] = 71783, - [SMALL_STATE(2022)] = 71792, - [SMALL_STATE(2023)] = 71801, - [SMALL_STATE(2024)] = 71809, - [SMALL_STATE(2025)] = 71817, - [SMALL_STATE(2026)] = 71827, - [SMALL_STATE(2027)] = 71837, - [SMALL_STATE(2028)] = 71847, - [SMALL_STATE(2029)] = 71855, - [SMALL_STATE(2030)] = 71865, - [SMALL_STATE(2031)] = 71875, - [SMALL_STATE(2032)] = 71885, - [SMALL_STATE(2033)] = 71895, - [SMALL_STATE(2034)] = 71905, - [SMALL_STATE(2035)] = 71915, - [SMALL_STATE(2036)] = 71925, - [SMALL_STATE(2037)] = 71935, - [SMALL_STATE(2038)] = 71945, - [SMALL_STATE(2039)] = 71955, - [SMALL_STATE(2040)] = 71965, - [SMALL_STATE(2041)] = 71975, - [SMALL_STATE(2042)] = 71985, - [SMALL_STATE(2043)] = 71995, - [SMALL_STATE(2044)] = 72003, - [SMALL_STATE(2045)] = 72013, - [SMALL_STATE(2046)] = 72023, - [SMALL_STATE(2047)] = 72033, - [SMALL_STATE(2048)] = 72043, - [SMALL_STATE(2049)] = 72053, - [SMALL_STATE(2050)] = 72063, - [SMALL_STATE(2051)] = 72071, - [SMALL_STATE(2052)] = 72081, - [SMALL_STATE(2053)] = 72091, - [SMALL_STATE(2054)] = 72101, - [SMALL_STATE(2055)] = 72111, - [SMALL_STATE(2056)] = 72121, - [SMALL_STATE(2057)] = 72131, - [SMALL_STATE(2058)] = 72139, - [SMALL_STATE(2059)] = 72149, - [SMALL_STATE(2060)] = 72159, - [SMALL_STATE(2061)] = 72169, - [SMALL_STATE(2062)] = 72179, - [SMALL_STATE(2063)] = 72189, - [SMALL_STATE(2064)] = 72199, - [SMALL_STATE(2065)] = 72207, - [SMALL_STATE(2066)] = 72215, - [SMALL_STATE(2067)] = 72225, - [SMALL_STATE(2068)] = 72235, - [SMALL_STATE(2069)] = 72245, - [SMALL_STATE(2070)] = 72255, - [SMALL_STATE(2071)] = 72265, - [SMALL_STATE(2072)] = 72275, - [SMALL_STATE(2073)] = 72285, - [SMALL_STATE(2074)] = 72295, - [SMALL_STATE(2075)] = 72305, - [SMALL_STATE(2076)] = 72315, - [SMALL_STATE(2077)] = 72325, - [SMALL_STATE(2078)] = 72335, - [SMALL_STATE(2079)] = 72345, - [SMALL_STATE(2080)] = 72355, - [SMALL_STATE(2081)] = 72365, - [SMALL_STATE(2082)] = 72375, - [SMALL_STATE(2083)] = 72385, - [SMALL_STATE(2084)] = 72395, - [SMALL_STATE(2085)] = 72403, - [SMALL_STATE(2086)] = 72413, - [SMALL_STATE(2087)] = 72421, - [SMALL_STATE(2088)] = 72429, - [SMALL_STATE(2089)] = 72439, - [SMALL_STATE(2090)] = 72449, - [SMALL_STATE(2091)] = 72459, - [SMALL_STATE(2092)] = 72469, - [SMALL_STATE(2093)] = 72477, - [SMALL_STATE(2094)] = 72487, - [SMALL_STATE(2095)] = 72495, - [SMALL_STATE(2096)] = 72503, - [SMALL_STATE(2097)] = 72511, - [SMALL_STATE(2098)] = 72521, - [SMALL_STATE(2099)] = 72531, - [SMALL_STATE(2100)] = 72541, - [SMALL_STATE(2101)] = 72551, - [SMALL_STATE(2102)] = 72561, - [SMALL_STATE(2103)] = 72569, - [SMALL_STATE(2104)] = 72579, - [SMALL_STATE(2105)] = 72589, - [SMALL_STATE(2106)] = 72599, - [SMALL_STATE(2107)] = 72609, - [SMALL_STATE(2108)] = 72619, - [SMALL_STATE(2109)] = 72629, - [SMALL_STATE(2110)] = 72639, - [SMALL_STATE(2111)] = 72649, - [SMALL_STATE(2112)] = 72659, - [SMALL_STATE(2113)] = 72669, - [SMALL_STATE(2114)] = 72679, - [SMALL_STATE(2115)] = 72689, - [SMALL_STATE(2116)] = 72699, - [SMALL_STATE(2117)] = 72707, - [SMALL_STATE(2118)] = 72717, - [SMALL_STATE(2119)] = 72727, - [SMALL_STATE(2120)] = 72737, - [SMALL_STATE(2121)] = 72745, - [SMALL_STATE(2122)] = 72755, - [SMALL_STATE(2123)] = 72765, - [SMALL_STATE(2124)] = 72775, - [SMALL_STATE(2125)] = 72782, - [SMALL_STATE(2126)] = 72789, - [SMALL_STATE(2127)] = 72796, - [SMALL_STATE(2128)] = 72803, - [SMALL_STATE(2129)] = 72810, - [SMALL_STATE(2130)] = 72817, - [SMALL_STATE(2131)] = 72824, - [SMALL_STATE(2132)] = 72831, - [SMALL_STATE(2133)] = 72838, - [SMALL_STATE(2134)] = 72845, - [SMALL_STATE(2135)] = 72852, - [SMALL_STATE(2136)] = 72859, - [SMALL_STATE(2137)] = 72866, - [SMALL_STATE(2138)] = 72873, - [SMALL_STATE(2139)] = 72880, - [SMALL_STATE(2140)] = 72887, - [SMALL_STATE(2141)] = 72894, - [SMALL_STATE(2142)] = 72901, - [SMALL_STATE(2143)] = 72908, - [SMALL_STATE(2144)] = 72915, - [SMALL_STATE(2145)] = 72922, - [SMALL_STATE(2146)] = 72929, - [SMALL_STATE(2147)] = 72936, - [SMALL_STATE(2148)] = 72943, - [SMALL_STATE(2149)] = 72950, - [SMALL_STATE(2150)] = 72957, - [SMALL_STATE(2151)] = 72964, - [SMALL_STATE(2152)] = 72971, - [SMALL_STATE(2153)] = 72978, - [SMALL_STATE(2154)] = 72985, - [SMALL_STATE(2155)] = 72992, - [SMALL_STATE(2156)] = 72999, - [SMALL_STATE(2157)] = 73006, - [SMALL_STATE(2158)] = 73013, - [SMALL_STATE(2159)] = 73020, - [SMALL_STATE(2160)] = 73027, - [SMALL_STATE(2161)] = 73034, - [SMALL_STATE(2162)] = 73041, - [SMALL_STATE(2163)] = 73048, - [SMALL_STATE(2164)] = 73055, - [SMALL_STATE(2165)] = 73062, - [SMALL_STATE(2166)] = 73069, - [SMALL_STATE(2167)] = 73076, - [SMALL_STATE(2168)] = 73083, - [SMALL_STATE(2169)] = 73090, - [SMALL_STATE(2170)] = 73097, - [SMALL_STATE(2171)] = 73104, - [SMALL_STATE(2172)] = 73111, - [SMALL_STATE(2173)] = 73118, - [SMALL_STATE(2174)] = 73125, - [SMALL_STATE(2175)] = 73132, - [SMALL_STATE(2176)] = 73139, - [SMALL_STATE(2177)] = 73146, - [SMALL_STATE(2178)] = 73153, - [SMALL_STATE(2179)] = 73160, - [SMALL_STATE(2180)] = 73167, - [SMALL_STATE(2181)] = 73174, - [SMALL_STATE(2182)] = 73181, - [SMALL_STATE(2183)] = 73188, - [SMALL_STATE(2184)] = 73195, - [SMALL_STATE(2185)] = 73202, - [SMALL_STATE(2186)] = 73209, - [SMALL_STATE(2187)] = 73216, - [SMALL_STATE(2188)] = 73223, - [SMALL_STATE(2189)] = 73230, - [SMALL_STATE(2190)] = 73237, - [SMALL_STATE(2191)] = 73244, - [SMALL_STATE(2192)] = 73251, - [SMALL_STATE(2193)] = 73258, - [SMALL_STATE(2194)] = 73265, - [SMALL_STATE(2195)] = 73272, - [SMALL_STATE(2196)] = 73279, - [SMALL_STATE(2197)] = 73286, - [SMALL_STATE(2198)] = 73293, - [SMALL_STATE(2199)] = 73300, - [SMALL_STATE(2200)] = 73307, - [SMALL_STATE(2201)] = 73314, - [SMALL_STATE(2202)] = 73321, - [SMALL_STATE(2203)] = 73328, - [SMALL_STATE(2204)] = 73335, - [SMALL_STATE(2205)] = 73342, - [SMALL_STATE(2206)] = 73349, - [SMALL_STATE(2207)] = 73356, - [SMALL_STATE(2208)] = 73363, - [SMALL_STATE(2209)] = 73370, - [SMALL_STATE(2210)] = 73377, - [SMALL_STATE(2211)] = 73384, - [SMALL_STATE(2212)] = 73391, - [SMALL_STATE(2213)] = 73398, - [SMALL_STATE(2214)] = 73405, - [SMALL_STATE(2215)] = 73412, - [SMALL_STATE(2216)] = 73419, - [SMALL_STATE(2217)] = 73426, - [SMALL_STATE(2218)] = 73433, - [SMALL_STATE(2219)] = 73440, - [SMALL_STATE(2220)] = 73447, - [SMALL_STATE(2221)] = 73454, - [SMALL_STATE(2222)] = 73461, - [SMALL_STATE(2223)] = 73468, - [SMALL_STATE(2224)] = 73475, - [SMALL_STATE(2225)] = 73482, - [SMALL_STATE(2226)] = 73489, - [SMALL_STATE(2227)] = 73496, - [SMALL_STATE(2228)] = 73503, - [SMALL_STATE(2229)] = 73510, - [SMALL_STATE(2230)] = 73517, - [SMALL_STATE(2231)] = 73524, - [SMALL_STATE(2232)] = 73531, - [SMALL_STATE(2233)] = 73538, - [SMALL_STATE(2234)] = 73545, - [SMALL_STATE(2235)] = 73552, - [SMALL_STATE(2236)] = 73559, - [SMALL_STATE(2237)] = 73566, - [SMALL_STATE(2238)] = 73573, - [SMALL_STATE(2239)] = 73580, - [SMALL_STATE(2240)] = 73587, - [SMALL_STATE(2241)] = 73594, - [SMALL_STATE(2242)] = 73601, - [SMALL_STATE(2243)] = 73608, - [SMALL_STATE(2244)] = 73615, - [SMALL_STATE(2245)] = 73622, - [SMALL_STATE(2246)] = 73629, - [SMALL_STATE(2247)] = 73636, - [SMALL_STATE(2248)] = 73643, - [SMALL_STATE(2249)] = 73650, - [SMALL_STATE(2250)] = 73657, - [SMALL_STATE(2251)] = 73664, - [SMALL_STATE(2252)] = 73671, - [SMALL_STATE(2253)] = 73678, - [SMALL_STATE(2254)] = 73685, - [SMALL_STATE(2255)] = 73692, - [SMALL_STATE(2256)] = 73699, - [SMALL_STATE(2257)] = 73706, - [SMALL_STATE(2258)] = 73713, - [SMALL_STATE(2259)] = 73720, - [SMALL_STATE(2260)] = 73727, - [SMALL_STATE(2261)] = 73734, - [SMALL_STATE(2262)] = 73741, - [SMALL_STATE(2263)] = 73748, - [SMALL_STATE(2264)] = 73755, - [SMALL_STATE(2265)] = 73762, - [SMALL_STATE(2266)] = 73769, - [SMALL_STATE(2267)] = 73776, - [SMALL_STATE(2268)] = 73783, - [SMALL_STATE(2269)] = 73790, - [SMALL_STATE(2270)] = 73797, - [SMALL_STATE(2271)] = 73804, - [SMALL_STATE(2272)] = 73811, - [SMALL_STATE(2273)] = 73818, - [SMALL_STATE(2274)] = 73825, - [SMALL_STATE(2275)] = 73832, - [SMALL_STATE(2276)] = 73839, - [SMALL_STATE(2277)] = 73846, - [SMALL_STATE(2278)] = 73853, - [SMALL_STATE(2279)] = 73860, - [SMALL_STATE(2280)] = 73867, - [SMALL_STATE(2281)] = 73874, - [SMALL_STATE(2282)] = 73881, - [SMALL_STATE(2283)] = 73888, - [SMALL_STATE(2284)] = 73895, - [SMALL_STATE(2285)] = 73902, - [SMALL_STATE(2286)] = 73909, - [SMALL_STATE(2287)] = 73916, - [SMALL_STATE(2288)] = 73923, - [SMALL_STATE(2289)] = 73930, - [SMALL_STATE(2290)] = 73937, - [SMALL_STATE(2291)] = 73944, - [SMALL_STATE(2292)] = 73951, - [SMALL_STATE(2293)] = 73958, - [SMALL_STATE(2294)] = 73965, - [SMALL_STATE(2295)] = 73972, - [SMALL_STATE(2296)] = 73979, - [SMALL_STATE(2297)] = 73986, - [SMALL_STATE(2298)] = 73993, - [SMALL_STATE(2299)] = 74000, - [SMALL_STATE(2300)] = 74007, - [SMALL_STATE(2301)] = 74014, - [SMALL_STATE(2302)] = 74021, - [SMALL_STATE(2303)] = 74028, - [SMALL_STATE(2304)] = 74035, - [SMALL_STATE(2305)] = 74042, - [SMALL_STATE(2306)] = 74049, - [SMALL_STATE(2307)] = 74056, - [SMALL_STATE(2308)] = 74063, - [SMALL_STATE(2309)] = 74070, - [SMALL_STATE(2310)] = 74077, - [SMALL_STATE(2311)] = 74084, - [SMALL_STATE(2312)] = 74091, - [SMALL_STATE(2313)] = 74098, - [SMALL_STATE(2314)] = 74105, - [SMALL_STATE(2315)] = 74112, - [SMALL_STATE(2316)] = 74119, - [SMALL_STATE(2317)] = 74126, - [SMALL_STATE(2318)] = 74133, - [SMALL_STATE(2319)] = 74140, - [SMALL_STATE(2320)] = 74147, - [SMALL_STATE(2321)] = 74154, - [SMALL_STATE(2322)] = 74161, - [SMALL_STATE(2323)] = 74168, - [SMALL_STATE(2324)] = 74175, - [SMALL_STATE(2325)] = 74182, - [SMALL_STATE(2326)] = 74189, - [SMALL_STATE(2327)] = 74196, - [SMALL_STATE(2328)] = 74203, - [SMALL_STATE(2329)] = 74210, - [SMALL_STATE(2330)] = 74217, - [SMALL_STATE(2331)] = 74224, - [SMALL_STATE(2332)] = 74231, - [SMALL_STATE(2333)] = 74238, - [SMALL_STATE(2334)] = 74245, - [SMALL_STATE(2335)] = 74252, - [SMALL_STATE(2336)] = 74259, - [SMALL_STATE(2337)] = 74266, - [SMALL_STATE(2338)] = 74273, - [SMALL_STATE(2339)] = 74280, - [SMALL_STATE(2340)] = 74287, - [SMALL_STATE(2341)] = 74294, - [SMALL_STATE(2342)] = 74301, - [SMALL_STATE(2343)] = 74308, - [SMALL_STATE(2344)] = 74315, - [SMALL_STATE(2345)] = 74322, - [SMALL_STATE(2346)] = 74329, - [SMALL_STATE(2347)] = 74336, - [SMALL_STATE(2348)] = 74343, - [SMALL_STATE(2349)] = 74350, - [SMALL_STATE(2350)] = 74357, - [SMALL_STATE(2351)] = 74364, - [SMALL_STATE(2352)] = 74371, - [SMALL_STATE(2353)] = 74378, - [SMALL_STATE(2354)] = 74385, - [SMALL_STATE(2355)] = 74392, - [SMALL_STATE(2356)] = 74399, - [SMALL_STATE(2357)] = 74406, - [SMALL_STATE(2358)] = 74413, - [SMALL_STATE(2359)] = 74420, - [SMALL_STATE(2360)] = 74427, - [SMALL_STATE(2361)] = 74434, - [SMALL_STATE(2362)] = 74441, - [SMALL_STATE(2363)] = 74448, - [SMALL_STATE(2364)] = 74455, - [SMALL_STATE(2365)] = 74462, - [SMALL_STATE(2366)] = 74469, - [SMALL_STATE(2367)] = 74476, - [SMALL_STATE(2368)] = 74483, - [SMALL_STATE(2369)] = 74490, - [SMALL_STATE(2370)] = 74497, - [SMALL_STATE(2371)] = 74504, - [SMALL_STATE(2372)] = 74511, - [SMALL_STATE(2373)] = 74518, - [SMALL_STATE(2374)] = 74525, - [SMALL_STATE(2375)] = 74532, - [SMALL_STATE(2376)] = 74539, - [SMALL_STATE(2377)] = 74546, - [SMALL_STATE(2378)] = 74553, - [SMALL_STATE(2379)] = 74560, - [SMALL_STATE(2380)] = 74567, - [SMALL_STATE(2381)] = 74574, - [SMALL_STATE(2382)] = 74581, - [SMALL_STATE(2383)] = 74588, - [SMALL_STATE(2384)] = 74595, - [SMALL_STATE(2385)] = 74602, - [SMALL_STATE(2386)] = 74609, - [SMALL_STATE(2387)] = 74616, - [SMALL_STATE(2388)] = 74623, - [SMALL_STATE(2389)] = 74630, - [SMALL_STATE(2390)] = 74637, - [SMALL_STATE(2391)] = 74644, - [SMALL_STATE(2392)] = 74651, - [SMALL_STATE(2393)] = 74658, - [SMALL_STATE(2394)] = 74665, - [SMALL_STATE(2395)] = 74672, - [SMALL_STATE(2396)] = 74679, - [SMALL_STATE(2397)] = 74686, - [SMALL_STATE(2398)] = 74693, - [SMALL_STATE(2399)] = 74700, - [SMALL_STATE(2400)] = 74707, - [SMALL_STATE(2401)] = 74714, - [SMALL_STATE(2402)] = 74721, - [SMALL_STATE(2403)] = 74728, - [SMALL_STATE(2404)] = 74735, - [SMALL_STATE(2405)] = 74742, - [SMALL_STATE(2406)] = 74749, - [SMALL_STATE(2407)] = 74756, - [SMALL_STATE(2408)] = 74763, - [SMALL_STATE(2409)] = 74770, - [SMALL_STATE(2410)] = 74777, - [SMALL_STATE(2411)] = 74784, - [SMALL_STATE(2412)] = 74791, - [SMALL_STATE(2413)] = 74798, - [SMALL_STATE(2414)] = 74805, - [SMALL_STATE(2415)] = 74812, - [SMALL_STATE(2416)] = 74819, - [SMALL_STATE(2417)] = 74826, - [SMALL_STATE(2418)] = 74833, - [SMALL_STATE(2419)] = 74840, - [SMALL_STATE(2420)] = 74847, - [SMALL_STATE(2421)] = 74854, - [SMALL_STATE(2422)] = 74861, + [SMALL_STATE(658)] = 0, + [SMALL_STATE(659)] = 115, + [SMALL_STATE(660)] = 230, + [SMALL_STATE(661)] = 342, + [SMALL_STATE(662)] = 452, + [SMALL_STATE(663)] = 561, + [SMALL_STATE(664)] = 670, + [SMALL_STATE(665)] = 779, + [SMALL_STATE(666)] = 888, + [SMALL_STATE(667)] = 997, + [SMALL_STATE(668)] = 1106, + [SMALL_STATE(669)] = 1213, + [SMALL_STATE(670)] = 1322, + [SMALL_STATE(671)] = 1431, + [SMALL_STATE(672)] = 1540, + [SMALL_STATE(673)] = 1649, + [SMALL_STATE(674)] = 1758, + [SMALL_STATE(675)] = 1867, + [SMALL_STATE(676)] = 1974, + [SMALL_STATE(677)] = 2083, + [SMALL_STATE(678)] = 2192, + [SMALL_STATE(679)] = 2301, + [SMALL_STATE(680)] = 2410, + [SMALL_STATE(681)] = 2519, + [SMALL_STATE(682)] = 2628, + [SMALL_STATE(683)] = 2735, + [SMALL_STATE(684)] = 2844, + [SMALL_STATE(685)] = 2953, + [SMALL_STATE(686)] = 3062, + [SMALL_STATE(687)] = 3171, + [SMALL_STATE(688)] = 3280, + [SMALL_STATE(689)] = 3389, + [SMALL_STATE(690)] = 3498, + [SMALL_STATE(691)] = 3607, + [SMALL_STATE(692)] = 3714, + [SMALL_STATE(693)] = 3823, + [SMALL_STATE(694)] = 3932, + [SMALL_STATE(695)] = 4041, + [SMALL_STATE(696)] = 4145, + [SMALL_STATE(697)] = 4249, + [SMALL_STATE(698)] = 4355, + [SMALL_STATE(699)] = 4463, + [SMALL_STATE(700)] = 4569, + [SMALL_STATE(701)] = 4673, + [SMALL_STATE(702)] = 4781, + [SMALL_STATE(703)] = 4885, + [SMALL_STATE(704)] = 4989, + [SMALL_STATE(705)] = 5093, + [SMALL_STATE(706)] = 5197, + [SMALL_STATE(707)] = 5301, + [SMALL_STATE(708)] = 5409, + [SMALL_STATE(709)] = 5517, + [SMALL_STATE(710)] = 5625, + [SMALL_STATE(711)] = 5729, + [SMALL_STATE(712)] = 5835, + [SMALL_STATE(713)] = 5939, + [SMALL_STATE(714)] = 6047, + [SMALL_STATE(715)] = 6150, + [SMALL_STATE(716)] = 6251, + [SMALL_STATE(717)] = 6354, + [SMALL_STATE(718)] = 6457, + [SMALL_STATE(719)] = 6558, + [SMALL_STATE(720)] = 6659, + [SMALL_STATE(721)] = 6760, + [SMALL_STATE(722)] = 6861, + [SMALL_STATE(723)] = 6964, + [SMALL_STATE(724)] = 7065, + [SMALL_STATE(725)] = 7166, + [SMALL_STATE(726)] = 7267, + [SMALL_STATE(727)] = 7368, + [SMALL_STATE(728)] = 7469, + [SMALL_STATE(729)] = 7572, + [SMALL_STATE(730)] = 7673, + [SMALL_STATE(731)] = 7774, + [SMALL_STATE(732)] = 7877, + [SMALL_STATE(733)] = 7980, + [SMALL_STATE(734)] = 8083, + [SMALL_STATE(735)] = 8184, + [SMALL_STATE(736)] = 8287, + [SMALL_STATE(737)] = 8388, + [SMALL_STATE(738)] = 8491, + [SMALL_STATE(739)] = 8592, + [SMALL_STATE(740)] = 8695, + [SMALL_STATE(741)] = 8798, + [SMALL_STATE(742)] = 8901, + [SMALL_STATE(743)] = 9002, + [SMALL_STATE(744)] = 9105, + [SMALL_STATE(745)] = 9208, + [SMALL_STATE(746)] = 9311, + [SMALL_STATE(747)] = 9412, + [SMALL_STATE(748)] = 9515, + [SMALL_STATE(749)] = 9618, + [SMALL_STATE(750)] = 9721, + [SMALL_STATE(751)] = 9824, + [SMALL_STATE(752)] = 9927, + [SMALL_STATE(753)] = 10028, + [SMALL_STATE(754)] = 10129, + [SMALL_STATE(755)] = 10230, + [SMALL_STATE(756)] = 10331, + [SMALL_STATE(757)] = 10432, + [SMALL_STATE(758)] = 10533, + [SMALL_STATE(759)] = 10634, + [SMALL_STATE(760)] = 10735, + [SMALL_STATE(761)] = 10838, + [SMALL_STATE(762)] = 10941, + [SMALL_STATE(763)] = 11044, + [SMALL_STATE(764)] = 11145, + [SMALL_STATE(765)] = 11246, + [SMALL_STATE(766)] = 11347, + [SMALL_STATE(767)] = 11450, + [SMALL_STATE(768)] = 11553, + [SMALL_STATE(769)] = 11656, + [SMALL_STATE(770)] = 11759, + [SMALL_STATE(771)] = 11860, + [SMALL_STATE(772)] = 11961, + [SMALL_STATE(773)] = 12062, + [SMALL_STATE(774)] = 12165, + [SMALL_STATE(775)] = 12266, + [SMALL_STATE(776)] = 12367, + [SMALL_STATE(777)] = 12468, + [SMALL_STATE(778)] = 12569, + [SMALL_STATE(779)] = 12670, + [SMALL_STATE(780)] = 12773, + [SMALL_STATE(781)] = 12876, + [SMALL_STATE(782)] = 12979, + [SMALL_STATE(783)] = 13080, + [SMALL_STATE(784)] = 13183, + [SMALL_STATE(785)] = 13286, + [SMALL_STATE(786)] = 13389, + [SMALL_STATE(787)] = 13492, + [SMALL_STATE(788)] = 13593, + [SMALL_STATE(789)] = 13694, + [SMALL_STATE(790)] = 13795, + [SMALL_STATE(791)] = 13896, + [SMALL_STATE(792)] = 13997, + [SMALL_STATE(793)] = 14098, + [SMALL_STATE(794)] = 14199, + [SMALL_STATE(795)] = 14300, + [SMALL_STATE(796)] = 14401, + [SMALL_STATE(797)] = 14504, + [SMALL_STATE(798)] = 14605, + [SMALL_STATE(799)] = 14706, + [SMALL_STATE(800)] = 14807, + [SMALL_STATE(801)] = 14908, + [SMALL_STATE(802)] = 15009, + [SMALL_STATE(803)] = 15110, + [SMALL_STATE(804)] = 15211, + [SMALL_STATE(805)] = 15314, + [SMALL_STATE(806)] = 15415, + [SMALL_STATE(807)] = 15516, + [SMALL_STATE(808)] = 15617, + [SMALL_STATE(809)] = 15720, + [SMALL_STATE(810)] = 15823, + [SMALL_STATE(811)] = 15926, + [SMALL_STATE(812)] = 16029, + [SMALL_STATE(813)] = 16132, + [SMALL_STATE(814)] = 16235, + [SMALL_STATE(815)] = 16338, + [SMALL_STATE(816)] = 16441, + [SMALL_STATE(817)] = 16544, + [SMALL_STATE(818)] = 16647, + [SMALL_STATE(819)] = 16750, + [SMALL_STATE(820)] = 16853, + [SMALL_STATE(821)] = 16956, + [SMALL_STATE(822)] = 17059, + [SMALL_STATE(823)] = 17162, + [SMALL_STATE(824)] = 17265, + [SMALL_STATE(825)] = 17368, + [SMALL_STATE(826)] = 17471, + [SMALL_STATE(827)] = 17574, + [SMALL_STATE(828)] = 17677, + [SMALL_STATE(829)] = 17780, + [SMALL_STATE(830)] = 17883, + [SMALL_STATE(831)] = 17986, + [SMALL_STATE(832)] = 18089, + [SMALL_STATE(833)] = 18192, + [SMALL_STATE(834)] = 18295, + [SMALL_STATE(835)] = 18398, + [SMALL_STATE(836)] = 18501, + [SMALL_STATE(837)] = 18604, + [SMALL_STATE(838)] = 18707, + [SMALL_STATE(839)] = 18810, + [SMALL_STATE(840)] = 18913, + [SMALL_STATE(841)] = 19016, + [SMALL_STATE(842)] = 19119, + [SMALL_STATE(843)] = 19222, + [SMALL_STATE(844)] = 19325, + [SMALL_STATE(845)] = 19428, + [SMALL_STATE(846)] = 19531, + [SMALL_STATE(847)] = 19634, + [SMALL_STATE(848)] = 19737, + [SMALL_STATE(849)] = 19840, + [SMALL_STATE(850)] = 19943, + [SMALL_STATE(851)] = 20046, + [SMALL_STATE(852)] = 20149, + [SMALL_STATE(853)] = 20252, + [SMALL_STATE(854)] = 20353, + [SMALL_STATE(855)] = 20456, + [SMALL_STATE(856)] = 20557, + [SMALL_STATE(857)] = 20660, + [SMALL_STATE(858)] = 20761, + [SMALL_STATE(859)] = 20864, + [SMALL_STATE(860)] = 20965, + [SMALL_STATE(861)] = 21066, + [SMALL_STATE(862)] = 21167, + [SMALL_STATE(863)] = 21268, + [SMALL_STATE(864)] = 21369, + [SMALL_STATE(865)] = 21472, + [SMALL_STATE(866)] = 21575, + [SMALL_STATE(867)] = 21663, + [SMALL_STATE(868)] = 21734, + [SMALL_STATE(869)] = 21835, + [SMALL_STATE(870)] = 21906, + [SMALL_STATE(871)] = 22007, + [SMALL_STATE(872)] = 22078, + [SMALL_STATE(873)] = 22179, + [SMALL_STATE(874)] = 22280, + [SMALL_STATE(875)] = 22381, + [SMALL_STATE(876)] = 22449, + [SMALL_STATE(877)] = 22512, + [SMALL_STATE(878)] = 22575, + [SMALL_STATE(879)] = 22637, + [SMALL_STATE(880)] = 22699, + [SMALL_STATE(881)] = 22761, + [SMALL_STATE(882)] = 22823, + [SMALL_STATE(883)] = 22885, + [SMALL_STATE(884)] = 22947, + [SMALL_STATE(885)] = 23009, + [SMALL_STATE(886)] = 23071, + [SMALL_STATE(887)] = 23133, + [SMALL_STATE(888)] = 23195, + [SMALL_STATE(889)] = 23266, + [SMALL_STATE(890)] = 23325, + [SMALL_STATE(891)] = 23384, + [SMALL_STATE(892)] = 23443, + [SMALL_STATE(893)] = 23502, + [SMALL_STATE(894)] = 23567, + [SMALL_STATE(895)] = 23625, + [SMALL_STATE(896)] = 23683, + [SMALL_STATE(897)] = 23741, + [SMALL_STATE(898)] = 23833, + [SMALL_STATE(899)] = 23925, + [SMALL_STATE(900)] = 24017, + [SMALL_STATE(901)] = 24109, + [SMALL_STATE(902)] = 24201, + [SMALL_STATE(903)] = 24259, + [SMALL_STATE(904)] = 24351, + [SMALL_STATE(905)] = 24443, + [SMALL_STATE(906)] = 24535, + [SMALL_STATE(907)] = 24627, + [SMALL_STATE(908)] = 24719, + [SMALL_STATE(909)] = 24811, + [SMALL_STATE(910)] = 24869, + [SMALL_STATE(911)] = 24961, + [SMALL_STATE(912)] = 25053, + [SMALL_STATE(913)] = 25111, + [SMALL_STATE(914)] = 25203, + [SMALL_STATE(915)] = 25261, + [SMALL_STATE(916)] = 25353, + [SMALL_STATE(917)] = 25411, + [SMALL_STATE(918)] = 25503, + [SMALL_STATE(919)] = 25597, + [SMALL_STATE(920)] = 25689, + [SMALL_STATE(921)] = 25747, + [SMALL_STATE(922)] = 25805, + [SMALL_STATE(923)] = 25897, + [SMALL_STATE(924)] = 25955, + [SMALL_STATE(925)] = 26013, + [SMALL_STATE(926)] = 26071, + [SMALL_STATE(927)] = 26129, + [SMALL_STATE(928)] = 26221, + [SMALL_STATE(929)] = 26279, + [SMALL_STATE(930)] = 26371, + [SMALL_STATE(931)] = 26429, + [SMALL_STATE(932)] = 26521, + [SMALL_STATE(933)] = 26578, + [SMALL_STATE(934)] = 26635, + [SMALL_STATE(935)] = 26702, + [SMALL_STATE(936)] = 26793, + [SMALL_STATE(937)] = 26882, + [SMALL_STATE(938)] = 26939, + [SMALL_STATE(939)] = 27006, + [SMALL_STATE(940)] = 27073, + [SMALL_STATE(941)] = 27140, + [SMALL_STATE(942)] = 27229, + [SMALL_STATE(943)] = 27290, + [SMALL_STATE(944)] = 27355, + [SMALL_STATE(945)] = 27420, + [SMALL_STATE(946)] = 27477, + [SMALL_STATE(947)] = 27544, + [SMALL_STATE(948)] = 27601, + [SMALL_STATE(949)] = 27663, + [SMALL_STATE(950)] = 27727, + [SMALL_STATE(951)] = 27789, + [SMALL_STATE(952)] = 27851, + [SMALL_STATE(953)] = 27910, + [SMALL_STATE(954)] = 27969, + [SMALL_STATE(955)] = 28028, + [SMALL_STATE(956)] = 28091, + [SMALL_STATE(957)] = 28145, + [SMALL_STATE(958)] = 28227, + [SMALL_STATE(959)] = 28281, + [SMALL_STATE(960)] = 28363, + [SMALL_STATE(961)] = 28445, + [SMALL_STATE(962)] = 28527, + [SMALL_STATE(963)] = 28609, + [SMALL_STATE(964)] = 28691, + [SMALL_STATE(965)] = 28773, + [SMALL_STATE(966)] = 28855, + [SMALL_STATE(967)] = 28937, + [SMALL_STATE(968)] = 29019, + [SMALL_STATE(969)] = 29072, + [SMALL_STATE(970)] = 29135, + [SMALL_STATE(971)] = 29188, + [SMALL_STATE(972)] = 29251, + [SMALL_STATE(973)] = 29312, + [SMALL_STATE(974)] = 29373, + [SMALL_STATE(975)] = 29452, + [SMALL_STATE(976)] = 29513, + [SMALL_STATE(977)] = 29576, + [SMALL_STATE(978)] = 29639, + [SMALL_STATE(979)] = 29702, + [SMALL_STATE(980)] = 29765, + [SMALL_STATE(981)] = 29818, + [SMALL_STATE(982)] = 29879, + [SMALL_STATE(983)] = 29940, + [SMALL_STATE(984)] = 30003, + [SMALL_STATE(985)] = 30075, + [SMALL_STATE(986)] = 30161, + [SMALL_STATE(987)] = 30243, + [SMALL_STATE(988)] = 30323, + [SMALL_STATE(989)] = 30401, + [SMALL_STATE(990)] = 30453, + [SMALL_STATE(991)] = 30505, + [SMALL_STATE(992)] = 30581, + [SMALL_STATE(993)] = 30633, + [SMALL_STATE(994)] = 30707, + [SMALL_STATE(995)] = 30775, + [SMALL_STATE(996)] = 30841, + [SMALL_STATE(997)] = 30927, + [SMALL_STATE(998)] = 30987, + [SMALL_STATE(999)] = 31051, + [SMALL_STATE(1000)] = 31137, + [SMALL_STATE(1001)] = 31200, + [SMALL_STATE(1002)] = 31255, + [SMALL_STATE(1003)] = 31310, + [SMALL_STATE(1004)] = 31361, + [SMALL_STATE(1005)] = 31416, + [SMALL_STATE(1006)] = 31471, + [SMALL_STATE(1007)] = 31526, + [SMALL_STATE(1008)] = 31589, + [SMALL_STATE(1009)] = 31644, + [SMALL_STATE(1010)] = 31729, + [SMALL_STATE(1011)] = 31780, + [SMALL_STATE(1012)] = 31835, + [SMALL_STATE(1013)] = 31898, + [SMALL_STATE(1014)] = 31971, + [SMALL_STATE(1015)] = 32042, + [SMALL_STATE(1016)] = 32097, + [SMALL_STATE(1017)] = 32148, + [SMALL_STATE(1018)] = 32215, + [SMALL_STATE(1019)] = 32280, + [SMALL_STATE(1020)] = 32343, + [SMALL_STATE(1021)] = 32398, + [SMALL_STATE(1022)] = 32449, + [SMALL_STATE(1023)] = 32512, + [SMALL_STATE(1024)] = 32597, + [SMALL_STATE(1025)] = 32678, + [SMALL_STATE(1026)] = 32763, + [SMALL_STATE(1027)] = 32842, + [SMALL_STATE(1028)] = 32897, + [SMALL_STATE(1029)] = 32974, + [SMALL_STATE(1030)] = 33029, + [SMALL_STATE(1031)] = 33084, + [SMALL_STATE(1032)] = 33159, + [SMALL_STATE(1033)] = 33209, + [SMALL_STATE(1034)] = 33259, + [SMALL_STATE(1035)] = 33309, + [SMALL_STATE(1036)] = 33359, + [SMALL_STATE(1037)] = 33413, + [SMALL_STATE(1038)] = 33463, + [SMALL_STATE(1039)] = 33517, + [SMALL_STATE(1040)] = 33601, + [SMALL_STATE(1041)] = 33651, + [SMALL_STATE(1042)] = 33715, + [SMALL_STATE(1043)] = 33775, + [SMALL_STATE(1044)] = 33835, + [SMALL_STATE(1045)] = 33885, + [SMALL_STATE(1046)] = 33951, + [SMALL_STATE(1047)] = 34021, + [SMALL_STATE(1048)] = 34093, + [SMALL_STATE(1049)] = 34167, + [SMALL_STATE(1050)] = 34243, + [SMALL_STATE(1051)] = 34293, + [SMALL_STATE(1052)] = 34343, + [SMALL_STATE(1053)] = 34393, + [SMALL_STATE(1054)] = 34443, + [SMALL_STATE(1055)] = 34493, + [SMALL_STATE(1056)] = 34571, + [SMALL_STATE(1057)] = 34621, + [SMALL_STATE(1058)] = 34701, + [SMALL_STATE(1059)] = 34751, + [SMALL_STATE(1060)] = 34809, + [SMALL_STATE(1061)] = 34871, + [SMALL_STATE(1062)] = 34921, + [SMALL_STATE(1063)] = 34971, + [SMALL_STATE(1064)] = 35021, + [SMALL_STATE(1065)] = 35071, + [SMALL_STATE(1066)] = 35121, + [SMALL_STATE(1067)] = 35171, + [SMALL_STATE(1068)] = 35221, + [SMALL_STATE(1069)] = 35275, + [SMALL_STATE(1070)] = 35325, + [SMALL_STATE(1071)] = 35381, + [SMALL_STATE(1072)] = 35441, + [SMALL_STATE(1073)] = 35499, + [SMALL_STATE(1074)] = 35583, + [SMALL_STATE(1075)] = 35633, + [SMALL_STATE(1076)] = 35683, + [SMALL_STATE(1077)] = 35743, + [SMALL_STATE(1078)] = 35827, + [SMALL_STATE(1079)] = 35877, + [SMALL_STATE(1080)] = 35931, + [SMALL_STATE(1081)] = 35985, + [SMALL_STATE(1082)] = 36045, + [SMALL_STATE(1083)] = 36095, + [SMALL_STATE(1084)] = 36145, + [SMALL_STATE(1085)] = 36201, + [SMALL_STATE(1086)] = 36255, + [SMALL_STATE(1087)] = 36309, + [SMALL_STATE(1088)] = 36363, + [SMALL_STATE(1089)] = 36412, + [SMALL_STATE(1090)] = 36461, + [SMALL_STATE(1091)] = 36510, + [SMALL_STATE(1092)] = 36559, + [SMALL_STATE(1093)] = 36608, + [SMALL_STATE(1094)] = 36657, + [SMALL_STATE(1095)] = 36706, + [SMALL_STATE(1096)] = 36755, + [SMALL_STATE(1097)] = 36804, + [SMALL_STATE(1098)] = 36853, + [SMALL_STATE(1099)] = 36902, + [SMALL_STATE(1100)] = 36951, + [SMALL_STATE(1101)] = 37000, + [SMALL_STATE(1102)] = 37049, + [SMALL_STATE(1103)] = 37098, + [SMALL_STATE(1104)] = 37147, + [SMALL_STATE(1105)] = 37196, + [SMALL_STATE(1106)] = 37245, + [SMALL_STATE(1107)] = 37294, + [SMALL_STATE(1108)] = 37343, + [SMALL_STATE(1109)] = 37392, + [SMALL_STATE(1110)] = 37441, + [SMALL_STATE(1111)] = 37490, + [SMALL_STATE(1112)] = 37539, + [SMALL_STATE(1113)] = 37588, + [SMALL_STATE(1114)] = 37637, + [SMALL_STATE(1115)] = 37686, + [SMALL_STATE(1116)] = 37735, + [SMALL_STATE(1117)] = 37788, + [SMALL_STATE(1118)] = 37837, + [SMALL_STATE(1119)] = 37886, + [SMALL_STATE(1120)] = 37935, + [SMALL_STATE(1121)] = 37984, + [SMALL_STATE(1122)] = 38033, + [SMALL_STATE(1123)] = 38082, + [SMALL_STATE(1124)] = 38131, + [SMALL_STATE(1125)] = 38180, + [SMALL_STATE(1126)] = 38229, + [SMALL_STATE(1127)] = 38278, + [SMALL_STATE(1128)] = 38327, + [SMALL_STATE(1129)] = 38376, + [SMALL_STATE(1130)] = 38425, + [SMALL_STATE(1131)] = 38474, + [SMALL_STATE(1132)] = 38523, + [SMALL_STATE(1133)] = 38572, + [SMALL_STATE(1134)] = 38621, + [SMALL_STATE(1135)] = 38683, + [SMALL_STATE(1136)] = 38741, + [SMALL_STATE(1137)] = 38803, + [SMALL_STATE(1138)] = 38865, + [SMALL_STATE(1139)] = 38927, + [SMALL_STATE(1140)] = 38989, + [SMALL_STATE(1141)] = 39052, + [SMALL_STATE(1142)] = 39111, + [SMALL_STATE(1143)] = 39190, + [SMALL_STATE(1144)] = 39267, + [SMALL_STATE(1145)] = 39314, + [SMALL_STATE(1146)] = 39361, + [SMALL_STATE(1147)] = 39414, + [SMALL_STATE(1148)] = 39461, + [SMALL_STATE(1149)] = 39508, + [SMALL_STATE(1150)] = 39555, + [SMALL_STATE(1151)] = 39602, + [SMALL_STATE(1152)] = 39677, + [SMALL_STATE(1153)] = 39724, + [SMALL_STATE(1154)] = 39797, + [SMALL_STATE(1155)] = 39852, + [SMALL_STATE(1156)] = 39923, + [SMALL_STATE(1157)] = 39992, + [SMALL_STATE(1158)] = 40057, + [SMALL_STATE(1159)] = 40140, + [SMALL_STATE(1160)] = 40187, + [SMALL_STATE(1161)] = 40234, + [SMALL_STATE(1162)] = 40281, + [SMALL_STATE(1163)] = 40342, + [SMALL_STATE(1164)] = 40389, + [SMALL_STATE(1165)] = 40468, + [SMALL_STATE(1166)] = 40521, + [SMALL_STATE(1167)] = 40580, + [SMALL_STATE(1168)] = 40663, + [SMALL_STATE(1169)] = 40710, + [SMALL_STATE(1170)] = 40767, + [SMALL_STATE(1171)] = 40826, + [SMALL_STATE(1172)] = 40905, + [SMALL_STATE(1173)] = 40964, + [SMALL_STATE(1174)] = 41023, + [SMALL_STATE(1175)] = 41070, + [SMALL_STATE(1176)] = 41117, + [SMALL_STATE(1177)] = 41164, + [SMALL_STATE(1178)] = 41211, + [SMALL_STATE(1179)] = 41258, + [SMALL_STATE(1180)] = 41341, + [SMALL_STATE(1181)] = 41388, + [SMALL_STATE(1182)] = 41434, + [SMALL_STATE(1183)] = 41480, + [SMALL_STATE(1184)] = 41530, + [SMALL_STATE(1185)] = 41575, + [SMALL_STATE(1186)] = 41620, + [SMALL_STATE(1187)] = 41665, + [SMALL_STATE(1188)] = 41710, + [SMALL_STATE(1189)] = 41755, + [SMALL_STATE(1190)] = 41800, + [SMALL_STATE(1191)] = 41845, + [SMALL_STATE(1192)] = 41890, + [SMALL_STATE(1193)] = 41939, + [SMALL_STATE(1194)] = 41984, + [SMALL_STATE(1195)] = 42029, + [SMALL_STATE(1196)] = 42074, + [SMALL_STATE(1197)] = 42119, + [SMALL_STATE(1198)] = 42164, + [SMALL_STATE(1199)] = 42209, + [SMALL_STATE(1200)] = 42254, + [SMALL_STATE(1201)] = 42299, + [SMALL_STATE(1202)] = 42344, + [SMALL_STATE(1203)] = 42389, + [SMALL_STATE(1204)] = 42438, + [SMALL_STATE(1205)] = 42487, + [SMALL_STATE(1206)] = 42532, + [SMALL_STATE(1207)] = 42577, + [SMALL_STATE(1208)] = 42622, + [SMALL_STATE(1209)] = 42671, + [SMALL_STATE(1210)] = 42716, + [SMALL_STATE(1211)] = 42761, + [SMALL_STATE(1212)] = 42806, + [SMALL_STATE(1213)] = 42855, + [SMALL_STATE(1214)] = 42904, + [SMALL_STATE(1215)] = 42949, + [SMALL_STATE(1216)] = 42994, + [SMALL_STATE(1217)] = 43039, + [SMALL_STATE(1218)] = 43084, + [SMALL_STATE(1219)] = 43129, + [SMALL_STATE(1220)] = 43174, + [SMALL_STATE(1221)] = 43219, + [SMALL_STATE(1222)] = 43264, + [SMALL_STATE(1223)] = 43309, + [SMALL_STATE(1224)] = 43358, + [SMALL_STATE(1225)] = 43403, + [SMALL_STATE(1226)] = 43448, + [SMALL_STATE(1227)] = 43493, + [SMALL_STATE(1228)] = 43542, + [SMALL_STATE(1229)] = 43586, + [SMALL_STATE(1230)] = 43630, + [SMALL_STATE(1231)] = 43674, + [SMALL_STATE(1232)] = 43718, + [SMALL_STATE(1233)] = 43762, + [SMALL_STATE(1234)] = 43806, + [SMALL_STATE(1235)] = 43850, + [SMALL_STATE(1236)] = 43894, + [SMALL_STATE(1237)] = 43938, + [SMALL_STATE(1238)] = 43982, + [SMALL_STATE(1239)] = 44051, + [SMALL_STATE(1240)] = 44094, + [SMALL_STATE(1241)] = 44163, + [SMALL_STATE(1242)] = 44232, + [SMALL_STATE(1243)] = 44287, + [SMALL_STATE(1244)] = 44356, + [SMALL_STATE(1245)] = 44406, + [SMALL_STATE(1246)] = 44458, + [SMALL_STATE(1247)] = 44535, + [SMALL_STATE(1248)] = 44590, + [SMALL_STATE(1249)] = 44667, + [SMALL_STATE(1250)] = 44740, + [SMALL_STATE(1251)] = 44811, + [SMALL_STATE(1252)] = 44880, + [SMALL_STATE(1253)] = 44947, + [SMALL_STATE(1254)] = 45012, + [SMALL_STATE(1255)] = 45075, + [SMALL_STATE(1256)] = 45152, + [SMALL_STATE(1257)] = 45211, + [SMALL_STATE(1258)] = 45268, + [SMALL_STATE(1259)] = 45345, + [SMALL_STATE(1260)] = 45415, + [SMALL_STATE(1261)] = 45471, + [SMALL_STATE(1262)] = 45511, + [SMALL_STATE(1263)] = 45551, + [SMALL_STATE(1264)] = 45591, + [SMALL_STATE(1265)] = 45665, + [SMALL_STATE(1266)] = 45723, + [SMALL_STATE(1267)] = 45785, + [SMALL_STATE(1268)] = 45859, + [SMALL_STATE(1269)] = 45925, + [SMALL_STATE(1270)] = 45965, + [SMALL_STATE(1271)] = 46029, + [SMALL_STATE(1272)] = 46083, + [SMALL_STATE(1273)] = 46125, + [SMALL_STATE(1274)] = 46165, + [SMALL_STATE(1275)] = 46207, + [SMALL_STATE(1276)] = 46275, + [SMALL_STATE(1277)] = 46317, + [SMALL_STATE(1278)] = 46391, + [SMALL_STATE(1279)] = 46459, + [SMALL_STATE(1280)] = 46499, + [SMALL_STATE(1281)] = 46541, + [SMALL_STATE(1282)] = 46581, + [SMALL_STATE(1283)] = 46621, + [SMALL_STATE(1284)] = 46661, + [SMALL_STATE(1285)] = 46701, + [SMALL_STATE(1286)] = 46741, + [SMALL_STATE(1287)] = 46781, + [SMALL_STATE(1288)] = 46823, + [SMALL_STATE(1289)] = 46863, + [SMALL_STATE(1290)] = 46924, + [SMALL_STATE(1291)] = 46989, + [SMALL_STATE(1292)] = 47062, + [SMALL_STATE(1293)] = 47135, + [SMALL_STATE(1294)] = 47208, + [SMALL_STATE(1295)] = 47271, + [SMALL_STATE(1296)] = 47344, + [SMALL_STATE(1297)] = 47409, + [SMALL_STATE(1298)] = 47474, + [SMALL_STATE(1299)] = 47537, + [SMALL_STATE(1300)] = 47594, + [SMALL_STATE(1301)] = 47657, + [SMALL_STATE(1302)] = 47712, + [SMALL_STATE(1303)] = 47765, + [SMALL_STATE(1304)] = 47834, + [SMALL_STATE(1305)] = 47901, + [SMALL_STATE(1306)] = 47968, + [SMALL_STATE(1307)] = 48006, + [SMALL_STATE(1308)] = 48044, + [SMALL_STATE(1309)] = 48104, + [SMALL_STATE(1310)] = 48142, + [SMALL_STATE(1311)] = 48202, + [SMALL_STATE(1312)] = 48240, + [SMALL_STATE(1313)] = 48300, + [SMALL_STATE(1314)] = 48360, + [SMALL_STATE(1315)] = 48420, + [SMALL_STATE(1316)] = 48466, + [SMALL_STATE(1317)] = 48540, + [SMALL_STATE(1318)] = 48600, + [SMALL_STATE(1319)] = 48660, + [SMALL_STATE(1320)] = 48720, + [SMALL_STATE(1321)] = 48795, + [SMALL_STATE(1322)] = 48870, + [SMALL_STATE(1323)] = 48945, + [SMALL_STATE(1324)] = 49020, + [SMALL_STATE(1325)] = 49095, + [SMALL_STATE(1326)] = 49170, + [SMALL_STATE(1327)] = 49241, + [SMALL_STATE(1328)] = 49316, + [SMALL_STATE(1329)] = 49391, + [SMALL_STATE(1330)] = 49461, + [SMALL_STATE(1331)] = 49517, + [SMALL_STATE(1332)] = 49573, + [SMALL_STATE(1333)] = 49629, + [SMALL_STATE(1334)] = 49701, + [SMALL_STATE(1335)] = 49757, + [SMALL_STATE(1336)] = 49827, + [SMALL_STATE(1337)] = 49899, + [SMALL_STATE(1338)] = 49955, + [SMALL_STATE(1339)] = 50011, + [SMALL_STATE(1340)] = 50067, + [SMALL_STATE(1341)] = 50123, + [SMALL_STATE(1342)] = 50179, + [SMALL_STATE(1343)] = 50251, + [SMALL_STATE(1344)] = 50323, + [SMALL_STATE(1345)] = 50379, + [SMALL_STATE(1346)] = 50431, + [SMALL_STATE(1347)] = 50499, + [SMALL_STATE(1348)] = 50555, + [SMALL_STATE(1349)] = 50621, + [SMALL_STATE(1350)] = 50693, + [SMALL_STATE(1351)] = 50759, + [SMALL_STATE(1352)] = 50823, + [SMALL_STATE(1353)] = 50879, + [SMALL_STATE(1354)] = 50941, + [SMALL_STATE(1355)] = 51015, + [SMALL_STATE(1356)] = 51075, + [SMALL_STATE(1357)] = 51131, + [SMALL_STATE(1358)] = 51185, + [SMALL_STATE(1359)] = 51241, + [SMALL_STATE(1360)] = 51313, + [SMALL_STATE(1361)] = 51385, + [SMALL_STATE(1362)] = 51457, + [SMALL_STATE(1363)] = 51529, + [SMALL_STATE(1364)] = 51601, + [SMALL_STATE(1365)] = 51673, + [SMALL_STATE(1366)] = 51729, + [SMALL_STATE(1367)] = 51799, + [SMALL_STATE(1368)] = 51855, + [SMALL_STATE(1369)] = 51911, + [SMALL_STATE(1370)] = 51983, + [SMALL_STATE(1371)] = 52055, + [SMALL_STATE(1372)] = 52127, + [SMALL_STATE(1373)] = 52199, + [SMALL_STATE(1374)] = 52255, + [SMALL_STATE(1375)] = 52325, + [SMALL_STATE(1376)] = 52395, + [SMALL_STATE(1377)] = 52467, + [SMALL_STATE(1378)] = 52539, + [SMALL_STATE(1379)] = 52611, + [SMALL_STATE(1380)] = 52683, + [SMALL_STATE(1381)] = 52755, + [SMALL_STATE(1382)] = 52827, + [SMALL_STATE(1383)] = 52897, + [SMALL_STATE(1384)] = 52969, + [SMALL_STATE(1385)] = 53041, + [SMALL_STATE(1386)] = 53111, + [SMALL_STATE(1387)] = 53183, + [SMALL_STATE(1388)] = 53255, + [SMALL_STATE(1389)] = 53327, + [SMALL_STATE(1390)] = 53399, + [SMALL_STATE(1391)] = 53471, + [SMALL_STATE(1392)] = 53543, + [SMALL_STATE(1393)] = 53615, + [SMALL_STATE(1394)] = 53687, + [SMALL_STATE(1395)] = 53743, + [SMALL_STATE(1396)] = 53813, + [SMALL_STATE(1397)] = 53885, + [SMALL_STATE(1398)] = 53957, + [SMALL_STATE(1399)] = 54029, + [SMALL_STATE(1400)] = 54098, + [SMALL_STATE(1401)] = 54167, + [SMALL_STATE(1402)] = 54236, + [SMALL_STATE(1403)] = 54305, + [SMALL_STATE(1404)] = 54374, + [SMALL_STATE(1405)] = 54427, + [SMALL_STATE(1406)] = 54480, + [SMALL_STATE(1407)] = 54549, + [SMALL_STATE(1408)] = 54602, + [SMALL_STATE(1409)] = 54671, + [SMALL_STATE(1410)] = 54706, + [SMALL_STATE(1411)] = 54741, + [SMALL_STATE(1412)] = 54810, + [SMALL_STATE(1413)] = 54863, + [SMALL_STATE(1414)] = 54932, + [SMALL_STATE(1415)] = 55001, + [SMALL_STATE(1416)] = 55070, + [SMALL_STATE(1417)] = 55139, + [SMALL_STATE(1418)] = 55208, + [SMALL_STATE(1419)] = 55277, + [SMALL_STATE(1420)] = 55346, + [SMALL_STATE(1421)] = 55399, + [SMALL_STATE(1422)] = 55438, + [SMALL_STATE(1423)] = 55507, + [SMALL_STATE(1424)] = 55576, + [SMALL_STATE(1425)] = 55645, + [SMALL_STATE(1426)] = 55698, + [SMALL_STATE(1427)] = 55767, + [SMALL_STATE(1428)] = 55836, + [SMALL_STATE(1429)] = 55905, + [SMALL_STATE(1430)] = 55974, + [SMALL_STATE(1431)] = 56043, + [SMALL_STATE(1432)] = 56079, + [SMALL_STATE(1433)] = 56145, + [SMALL_STATE(1434)] = 56189, + [SMALL_STATE(1435)] = 56231, + [SMALL_STATE(1436)] = 56267, + [SMALL_STATE(1437)] = 56303, + [SMALL_STATE(1438)] = 56339, + [SMALL_STATE(1439)] = 56386, + [SMALL_STATE(1440)] = 56435, + [SMALL_STATE(1441)] = 56482, + [SMALL_STATE(1442)] = 56529, + [SMALL_STATE(1443)] = 56576, + [SMALL_STATE(1444)] = 56623, + [SMALL_STATE(1445)] = 56670, + [SMALL_STATE(1446)] = 56724, + [SMALL_STATE(1447)] = 56758, + [SMALL_STATE(1448)] = 56802, + [SMALL_STATE(1449)] = 56846, + [SMALL_STATE(1450)] = 56890, + [SMALL_STATE(1451)] = 56934, + [SMALL_STATE(1452)] = 56988, + [SMALL_STATE(1453)] = 57032, + [SMALL_STATE(1454)] = 57086, + [SMALL_STATE(1455)] = 57140, + [SMALL_STATE(1456)] = 57178, + [SMALL_STATE(1457)] = 57222, + [SMALL_STATE(1458)] = 57276, + [SMALL_STATE(1459)] = 57312, + [SMALL_STATE(1460)] = 57363, + [SMALL_STATE(1461)] = 57418, + [SMALL_STATE(1462)] = 57469, + [SMALL_STATE(1463)] = 57512, + [SMALL_STATE(1464)] = 57563, + [SMALL_STATE(1465)] = 57618, + [SMALL_STATE(1466)] = 57661, + [SMALL_STATE(1467)] = 57712, + [SMALL_STATE(1468)] = 57763, + [SMALL_STATE(1469)] = 57814, + [SMALL_STATE(1470)] = 57865, + [SMALL_STATE(1471)] = 57916, + [SMALL_STATE(1472)] = 57949, + [SMALL_STATE(1473)] = 58000, + [SMALL_STATE(1474)] = 58051, + [SMALL_STATE(1475)] = 58094, + [SMALL_STATE(1476)] = 58149, + [SMALL_STATE(1477)] = 58200, + [SMALL_STATE(1478)] = 58251, + [SMALL_STATE(1479)] = 58302, + [SMALL_STATE(1480)] = 58342, + [SMALL_STATE(1481)] = 58382, + [SMALL_STATE(1482)] = 58410, + [SMALL_STATE(1483)] = 58450, + [SMALL_STATE(1484)] = 58490, + [SMALL_STATE(1485)] = 58518, + [SMALL_STATE(1486)] = 58558, + [SMALL_STATE(1487)] = 58598, + [SMALL_STATE(1488)] = 58632, + [SMALL_STATE(1489)] = 58668, + [SMALL_STATE(1490)] = 58708, + [SMALL_STATE(1491)] = 58750, + [SMALL_STATE(1492)] = 58794, + [SMALL_STATE(1493)] = 58840, + [SMALL_STATE(1494)] = 58880, + [SMALL_STATE(1495)] = 58920, + [SMALL_STATE(1496)] = 58970, + [SMALL_STATE(1497)] = 59010, + [SMALL_STATE(1498)] = 59050, + [SMALL_STATE(1499)] = 59090, + [SMALL_STATE(1500)] = 59130, + [SMALL_STATE(1501)] = 59170, + [SMALL_STATE(1502)] = 59216, + [SMALL_STATE(1503)] = 59264, + [SMALL_STATE(1504)] = 59292, + [SMALL_STATE(1505)] = 59324, + [SMALL_STATE(1506)] = 59352, + [SMALL_STATE(1507)] = 59392, + [SMALL_STATE(1508)] = 59432, + [SMALL_STATE(1509)] = 59472, + [SMALL_STATE(1510)] = 59512, + [SMALL_STATE(1511)] = 59552, + [SMALL_STATE(1512)] = 59592, + [SMALL_STATE(1513)] = 59632, + [SMALL_STATE(1514)] = 59672, + [SMALL_STATE(1515)] = 59712, + [SMALL_STATE(1516)] = 59752, + [SMALL_STATE(1517)] = 59792, + [SMALL_STATE(1518)] = 59832, + [SMALL_STATE(1519)] = 59864, + [SMALL_STATE(1520)] = 59904, + [SMALL_STATE(1521)] = 59944, + [SMALL_STATE(1522)] = 59984, + [SMALL_STATE(1523)] = 60024, + [SMALL_STATE(1524)] = 60064, + [SMALL_STATE(1525)] = 60104, + [SMALL_STATE(1526)] = 60144, + [SMALL_STATE(1527)] = 60184, + [SMALL_STATE(1528)] = 60224, + [SMALL_STATE(1529)] = 60272, + [SMALL_STATE(1530)] = 60312, + [SMALL_STATE(1531)] = 60352, + [SMALL_STATE(1532)] = 60392, + [SMALL_STATE(1533)] = 60424, + [SMALL_STATE(1534)] = 60464, + [SMALL_STATE(1535)] = 60504, + [SMALL_STATE(1536)] = 60544, + [SMALL_STATE(1537)] = 60576, + [SMALL_STATE(1538)] = 60608, + [SMALL_STATE(1539)] = 60648, + [SMALL_STATE(1540)] = 60676, + [SMALL_STATE(1541)] = 60704, + [SMALL_STATE(1542)] = 60749, + [SMALL_STATE(1543)] = 60794, + [SMALL_STATE(1544)] = 60823, + [SMALL_STATE(1545)] = 60850, + [SMALL_STATE(1546)] = 60881, + [SMALL_STATE(1547)] = 60908, + [SMALL_STATE(1548)] = 60953, + [SMALL_STATE(1549)] = 60986, + [SMALL_STATE(1550)] = 61031, + [SMALL_STATE(1551)] = 61062, + [SMALL_STATE(1552)] = 61093, + [SMALL_STATE(1553)] = 61142, + [SMALL_STATE(1554)] = 61187, + [SMALL_STATE(1555)] = 61230, + [SMALL_STATE(1556)] = 61275, + [SMALL_STATE(1557)] = 61306, + [SMALL_STATE(1558)] = 61337, + [SMALL_STATE(1559)] = 61364, + [SMALL_STATE(1560)] = 61407, + [SMALL_STATE(1561)] = 61452, + [SMALL_STATE(1562)] = 61483, + [SMALL_STATE(1563)] = 61528, + [SMALL_STATE(1564)] = 61555, + [SMALL_STATE(1565)] = 61600, + [SMALL_STATE(1566)] = 61643, + [SMALL_STATE(1567)] = 61688, + [SMALL_STATE(1568)] = 61729, + [SMALL_STATE(1569)] = 61774, + [SMALL_STATE(1570)] = 61817, + [SMALL_STATE(1571)] = 61860, + [SMALL_STATE(1572)] = 61905, + [SMALL_STATE(1573)] = 61944, + [SMALL_STATE(1574)] = 61987, + [SMALL_STATE(1575)] = 62036, + [SMALL_STATE(1576)] = 62081, + [SMALL_STATE(1577)] = 62108, + [SMALL_STATE(1578)] = 62153, + [SMALL_STATE(1579)] = 62180, + [SMALL_STATE(1580)] = 62207, + [SMALL_STATE(1581)] = 62244, + [SMALL_STATE(1582)] = 62271, + [SMALL_STATE(1583)] = 62306, + [SMALL_STATE(1584)] = 62351, + [SMALL_STATE(1585)] = 62384, + [SMALL_STATE(1586)] = 62415, + [SMALL_STATE(1587)] = 62442, + [SMALL_STATE(1588)] = 62487, + [SMALL_STATE(1589)] = 62518, + [SMALL_STATE(1590)] = 62553, + [SMALL_STATE(1591)] = 62580, + [SMALL_STATE(1592)] = 62625, + [SMALL_STATE(1593)] = 62656, + [SMALL_STATE(1594)] = 62696, + [SMALL_STATE(1595)] = 62740, + [SMALL_STATE(1596)] = 62780, + [SMALL_STATE(1597)] = 62820, + [SMALL_STATE(1598)] = 62860, + [SMALL_STATE(1599)] = 62900, + [SMALL_STATE(1600)] = 62940, + [SMALL_STATE(1601)] = 62980, + [SMALL_STATE(1602)] = 63021, + [SMALL_STATE(1603)] = 63062, + [SMALL_STATE(1604)] = 63103, + [SMALL_STATE(1605)] = 63138, + [SMALL_STATE(1606)] = 63179, + [SMALL_STATE(1607)] = 63220, + [SMALL_STATE(1608)] = 63261, + [SMALL_STATE(1609)] = 63302, + [SMALL_STATE(1610)] = 63343, + [SMALL_STATE(1611)] = 63384, + [SMALL_STATE(1612)] = 63425, + [SMALL_STATE(1613)] = 63459, + [SMALL_STATE(1614)] = 63497, + [SMALL_STATE(1615)] = 63537, + [SMALL_STATE(1616)] = 63575, + [SMALL_STATE(1617)] = 63614, + [SMALL_STATE(1618)] = 63651, + [SMALL_STATE(1619)] = 63680, + [SMALL_STATE(1620)] = 63709, + [SMALL_STATE(1621)] = 63750, + [SMALL_STATE(1622)] = 63779, + [SMALL_STATE(1623)] = 63820, + [SMALL_STATE(1624)] = 63861, + [SMALL_STATE(1625)] = 63902, + [SMALL_STATE(1626)] = 63931, + [SMALL_STATE(1627)] = 63957, + [SMALL_STATE(1628)] = 63990, + [SMALL_STATE(1629)] = 64027, + [SMALL_STATE(1630)] = 64064, + [SMALL_STATE(1631)] = 64097, + [SMALL_STATE(1632)] = 64126, + [SMALL_STATE(1633)] = 64163, + [SMALL_STATE(1634)] = 64184, + [SMALL_STATE(1635)] = 64205, + [SMALL_STATE(1636)] = 64242, + [SMALL_STATE(1637)] = 64271, + [SMALL_STATE(1638)] = 64296, + [SMALL_STATE(1639)] = 64333, + [SMALL_STATE(1640)] = 64370, + [SMALL_STATE(1641)] = 64407, + [SMALL_STATE(1642)] = 64444, + [SMALL_STATE(1643)] = 64473, + [SMALL_STATE(1644)] = 64510, + [SMALL_STATE(1645)] = 64547, + [SMALL_STATE(1646)] = 64576, + [SMALL_STATE(1647)] = 64613, + [SMALL_STATE(1648)] = 64650, + [SMALL_STATE(1649)] = 64671, + [SMALL_STATE(1650)] = 64708, + [SMALL_STATE(1651)] = 64744, + [SMALL_STATE(1652)] = 64768, + [SMALL_STATE(1653)] = 64797, + [SMALL_STATE(1654)] = 64828, + [SMALL_STATE(1655)] = 64855, + [SMALL_STATE(1656)] = 64884, + [SMALL_STATE(1657)] = 64909, + [SMALL_STATE(1658)] = 64936, + [SMALL_STATE(1659)] = 64961, + [SMALL_STATE(1660)] = 64994, + [SMALL_STATE(1661)] = 65023, + [SMALL_STATE(1662)] = 65052, + [SMALL_STATE(1663)] = 65081, + [SMALL_STATE(1664)] = 65114, + [SMALL_STATE(1665)] = 65141, + [SMALL_STATE(1666)] = 65170, + [SMALL_STATE(1667)] = 65199, + [SMALL_STATE(1668)] = 65230, + [SMALL_STATE(1669)] = 65257, + [SMALL_STATE(1670)] = 65286, + [SMALL_STATE(1671)] = 65315, + [SMALL_STATE(1672)] = 65344, + [SMALL_STATE(1673)] = 65377, + [SMALL_STATE(1674)] = 65408, + [SMALL_STATE(1675)] = 65432, + [SMALL_STATE(1676)] = 65450, + [SMALL_STATE(1677)] = 65468, + [SMALL_STATE(1678)] = 65494, + [SMALL_STATE(1679)] = 65512, + [SMALL_STATE(1680)] = 65544, + [SMALL_STATE(1681)] = 65570, + [SMALL_STATE(1682)] = 65602, + [SMALL_STATE(1683)] = 65628, + [SMALL_STATE(1684)] = 65646, + [SMALL_STATE(1685)] = 65668, + [SMALL_STATE(1686)] = 65700, + [SMALL_STATE(1687)] = 65718, + [SMALL_STATE(1688)] = 65750, + [SMALL_STATE(1689)] = 65768, + [SMALL_STATE(1690)] = 65794, + [SMALL_STATE(1691)] = 65812, + [SMALL_STATE(1692)] = 65836, + [SMALL_STATE(1693)] = 65868, + [SMALL_STATE(1694)] = 65898, + [SMALL_STATE(1695)] = 65927, + [SMALL_STATE(1696)] = 65956, + [SMALL_STATE(1697)] = 65977, + [SMALL_STATE(1698)] = 66006, + [SMALL_STATE(1699)] = 66027, + [SMALL_STATE(1700)] = 66056, + [SMALL_STATE(1701)] = 66075, + [SMALL_STATE(1702)] = 66104, + [SMALL_STATE(1703)] = 66125, + [SMALL_STATE(1704)] = 66146, + [SMALL_STATE(1705)] = 66167, + [SMALL_STATE(1706)] = 66196, + [SMALL_STATE(1707)] = 66217, + [SMALL_STATE(1708)] = 66246, + [SMALL_STATE(1709)] = 66267, + [SMALL_STATE(1710)] = 66296, + [SMALL_STATE(1711)] = 66317, + [SMALL_STATE(1712)] = 66338, + [SMALL_STATE(1713)] = 66367, + [SMALL_STATE(1714)] = 66396, + [SMALL_STATE(1715)] = 66421, + [SMALL_STATE(1716)] = 66442, + [SMALL_STATE(1717)] = 66463, + [SMALL_STATE(1718)] = 66488, + [SMALL_STATE(1719)] = 66504, + [SMALL_STATE(1720)] = 66528, + [SMALL_STATE(1721)] = 66554, + [SMALL_STATE(1722)] = 66580, + [SMALL_STATE(1723)] = 66606, + [SMALL_STATE(1724)] = 66626, + [SMALL_STATE(1725)] = 66652, + [SMALL_STATE(1726)] = 66678, + [SMALL_STATE(1727)] = 66702, + [SMALL_STATE(1728)] = 66718, + [SMALL_STATE(1729)] = 66742, + [SMALL_STATE(1730)] = 66768, + [SMALL_STATE(1731)] = 66792, + [SMALL_STATE(1732)] = 66818, + [SMALL_STATE(1733)] = 66838, + [SMALL_STATE(1734)] = 66854, + [SMALL_STATE(1735)] = 66880, + [SMALL_STATE(1736)] = 66896, + [SMALL_STATE(1737)] = 66922, + [SMALL_STATE(1738)] = 66948, + [SMALL_STATE(1739)] = 66974, + [SMALL_STATE(1740)] = 66994, + [SMALL_STATE(1741)] = 67010, + [SMALL_STATE(1742)] = 67032, + [SMALL_STATE(1743)] = 67058, + [SMALL_STATE(1744)] = 67082, + [SMALL_STATE(1745)] = 67108, + [SMALL_STATE(1746)] = 67124, + [SMALL_STATE(1747)] = 67150, + [SMALL_STATE(1748)] = 67176, + [SMALL_STATE(1749)] = 67192, + [SMALL_STATE(1750)] = 67218, + [SMALL_STATE(1751)] = 67236, + [SMALL_STATE(1752)] = 67262, + [SMALL_STATE(1753)] = 67288, + [SMALL_STATE(1754)] = 67314, + [SMALL_STATE(1755)] = 67338, + [SMALL_STATE(1756)] = 67364, + [SMALL_STATE(1757)] = 67390, + [SMALL_STATE(1758)] = 67406, + [SMALL_STATE(1759)] = 67422, + [SMALL_STATE(1760)] = 67439, + [SMALL_STATE(1761)] = 67456, + [SMALL_STATE(1762)] = 67473, + [SMALL_STATE(1763)] = 67488, + [SMALL_STATE(1764)] = 67503, + [SMALL_STATE(1765)] = 67518, + [SMALL_STATE(1766)] = 67541, + [SMALL_STATE(1767)] = 67556, + [SMALL_STATE(1768)] = 67571, + [SMALL_STATE(1769)] = 67586, + [SMALL_STATE(1770)] = 67601, + [SMALL_STATE(1771)] = 67616, + [SMALL_STATE(1772)] = 67633, + [SMALL_STATE(1773)] = 67648, + [SMALL_STATE(1774)] = 67671, + [SMALL_STATE(1775)] = 67694, + [SMALL_STATE(1776)] = 67717, + [SMALL_STATE(1777)] = 67732, + [SMALL_STATE(1778)] = 67755, + [SMALL_STATE(1779)] = 67774, + [SMALL_STATE(1780)] = 67797, + [SMALL_STATE(1781)] = 67816, + [SMALL_STATE(1782)] = 67841, + [SMALL_STATE(1783)] = 67864, + [SMALL_STATE(1784)] = 67884, + [SMALL_STATE(1785)] = 67902, + [SMALL_STATE(1786)] = 67922, + [SMALL_STATE(1787)] = 67942, + [SMALL_STATE(1788)] = 67956, + [SMALL_STATE(1789)] = 67976, + [SMALL_STATE(1790)] = 67994, + [SMALL_STATE(1791)] = 68014, + [SMALL_STATE(1792)] = 68032, + [SMALL_STATE(1793)] = 68052, + [SMALL_STATE(1794)] = 68070, + [SMALL_STATE(1795)] = 68090, + [SMALL_STATE(1796)] = 68108, + [SMALL_STATE(1797)] = 68124, + [SMALL_STATE(1798)] = 68138, + [SMALL_STATE(1799)] = 68152, + [SMALL_STATE(1800)] = 68168, + [SMALL_STATE(1801)] = 68184, + [SMALL_STATE(1802)] = 68204, + [SMALL_STATE(1803)] = 68220, + [SMALL_STATE(1804)] = 68234, + [SMALL_STATE(1805)] = 68254, + [SMALL_STATE(1806)] = 68268, + [SMALL_STATE(1807)] = 68282, + [SMALL_STATE(1808)] = 68296, + [SMALL_STATE(1809)] = 68314, + [SMALL_STATE(1810)] = 68328, + [SMALL_STATE(1811)] = 68348, + [SMALL_STATE(1812)] = 68362, + [SMALL_STATE(1813)] = 68380, + [SMALL_STATE(1814)] = 68400, + [SMALL_STATE(1815)] = 68416, + [SMALL_STATE(1816)] = 68430, + [SMALL_STATE(1817)] = 68444, + [SMALL_STATE(1818)] = 68464, + [SMALL_STATE(1819)] = 68478, + [SMALL_STATE(1820)] = 68492, + [SMALL_STATE(1821)] = 68506, + [SMALL_STATE(1822)] = 68526, + [SMALL_STATE(1823)] = 68546, + [SMALL_STATE(1824)] = 68560, + [SMALL_STATE(1825)] = 68574, + [SMALL_STATE(1826)] = 68592, + [SMALL_STATE(1827)] = 68608, + [SMALL_STATE(1828)] = 68628, + [SMALL_STATE(1829)] = 68639, + [SMALL_STATE(1830)] = 68650, + [SMALL_STATE(1831)] = 68661, + [SMALL_STATE(1832)] = 68672, + [SMALL_STATE(1833)] = 68689, + [SMALL_STATE(1834)] = 68700, + [SMALL_STATE(1835)] = 68719, + [SMALL_STATE(1836)] = 68730, + [SMALL_STATE(1837)] = 68741, + [SMALL_STATE(1838)] = 68752, + [SMALL_STATE(1839)] = 68763, + [SMALL_STATE(1840)] = 68782, + [SMALL_STATE(1841)] = 68801, + [SMALL_STATE(1842)] = 68816, + [SMALL_STATE(1843)] = 68829, + [SMALL_STATE(1844)] = 68840, + [SMALL_STATE(1845)] = 68851, + [SMALL_STATE(1846)] = 68862, + [SMALL_STATE(1847)] = 68873, + [SMALL_STATE(1848)] = 68890, + [SMALL_STATE(1849)] = 68905, + [SMALL_STATE(1850)] = 68919, + [SMALL_STATE(1851)] = 68933, + [SMALL_STATE(1852)] = 68947, + [SMALL_STATE(1853)] = 68961, + [SMALL_STATE(1854)] = 68977, + [SMALL_STATE(1855)] = 68991, + [SMALL_STATE(1856)] = 69005, + [SMALL_STATE(1857)] = 69019, + [SMALL_STATE(1858)] = 69033, + [SMALL_STATE(1859)] = 69047, + [SMALL_STATE(1860)] = 69061, + [SMALL_STATE(1861)] = 69075, + [SMALL_STATE(1862)] = 69089, + [SMALL_STATE(1863)] = 69103, + [SMALL_STATE(1864)] = 69119, + [SMALL_STATE(1865)] = 69133, + [SMALL_STATE(1866)] = 69147, + [SMALL_STATE(1867)] = 69157, + [SMALL_STATE(1868)] = 69173, + [SMALL_STATE(1869)] = 69189, + [SMALL_STATE(1870)] = 69205, + [SMALL_STATE(1871)] = 69219, + [SMALL_STATE(1872)] = 69233, + [SMALL_STATE(1873)] = 69249, + [SMALL_STATE(1874)] = 69263, + [SMALL_STATE(1875)] = 69279, + [SMALL_STATE(1876)] = 69293, + [SMALL_STATE(1877)] = 69307, + [SMALL_STATE(1878)] = 69321, + [SMALL_STATE(1879)] = 69337, + [SMALL_STATE(1880)] = 69353, + [SMALL_STATE(1881)] = 69367, + [SMALL_STATE(1882)] = 69383, + [SMALL_STATE(1883)] = 69397, + [SMALL_STATE(1884)] = 69413, + [SMALL_STATE(1885)] = 69429, + [SMALL_STATE(1886)] = 69443, + [SMALL_STATE(1887)] = 69457, + [SMALL_STATE(1888)] = 69471, + [SMALL_STATE(1889)] = 69485, + [SMALL_STATE(1890)] = 69499, + [SMALL_STATE(1891)] = 69509, + [SMALL_STATE(1892)] = 69523, + [SMALL_STATE(1893)] = 69539, + [SMALL_STATE(1894)] = 69553, + [SMALL_STATE(1895)] = 69569, + [SMALL_STATE(1896)] = 69583, + [SMALL_STATE(1897)] = 69599, + [SMALL_STATE(1898)] = 69615, + [SMALL_STATE(1899)] = 69631, + [SMALL_STATE(1900)] = 69645, + [SMALL_STATE(1901)] = 69661, + [SMALL_STATE(1902)] = 69675, + [SMALL_STATE(1903)] = 69689, + [SMALL_STATE(1904)] = 69703, + [SMALL_STATE(1905)] = 69717, + [SMALL_STATE(1906)] = 69733, + [SMALL_STATE(1907)] = 69747, + [SMALL_STATE(1908)] = 69763, + [SMALL_STATE(1909)] = 69773, + [SMALL_STATE(1910)] = 69787, + [SMALL_STATE(1911)] = 69801, + [SMALL_STATE(1912)] = 69817, + [SMALL_STATE(1913)] = 69831, + [SMALL_STATE(1914)] = 69845, + [SMALL_STATE(1915)] = 69859, + [SMALL_STATE(1916)] = 69875, + [SMALL_STATE(1917)] = 69889, + [SMALL_STATE(1918)] = 69903, + [SMALL_STATE(1919)] = 69917, + [SMALL_STATE(1920)] = 69931, + [SMALL_STATE(1921)] = 69947, + [SMALL_STATE(1922)] = 69961, + [SMALL_STATE(1923)] = 69975, + [SMALL_STATE(1924)] = 69989, + [SMALL_STATE(1925)] = 70002, + [SMALL_STATE(1926)] = 70015, + [SMALL_STATE(1927)] = 70028, + [SMALL_STATE(1928)] = 70041, + [SMALL_STATE(1929)] = 70054, + [SMALL_STATE(1930)] = 70067, + [SMALL_STATE(1931)] = 70080, + [SMALL_STATE(1932)] = 70093, + [SMALL_STATE(1933)] = 70106, + [SMALL_STATE(1934)] = 70119, + [SMALL_STATE(1935)] = 70128, + [SMALL_STATE(1936)] = 70141, + [SMALL_STATE(1937)] = 70150, + [SMALL_STATE(1938)] = 70163, + [SMALL_STATE(1939)] = 70176, + [SMALL_STATE(1940)] = 70189, + [SMALL_STATE(1941)] = 70202, + [SMALL_STATE(1942)] = 70215, + [SMALL_STATE(1943)] = 70228, + [SMALL_STATE(1944)] = 70241, + [SMALL_STATE(1945)] = 70254, + [SMALL_STATE(1946)] = 70267, + [SMALL_STATE(1947)] = 70280, + [SMALL_STATE(1948)] = 70289, + [SMALL_STATE(1949)] = 70298, + [SMALL_STATE(1950)] = 70311, + [SMALL_STATE(1951)] = 70320, + [SMALL_STATE(1952)] = 70333, + [SMALL_STATE(1953)] = 70346, + [SMALL_STATE(1954)] = 70357, + [SMALL_STATE(1955)] = 70366, + [SMALL_STATE(1956)] = 70379, + [SMALL_STATE(1957)] = 70392, + [SMALL_STATE(1958)] = 70405, + [SMALL_STATE(1959)] = 70416, + [SMALL_STATE(1960)] = 70429, + [SMALL_STATE(1961)] = 70440, + [SMALL_STATE(1962)] = 70453, + [SMALL_STATE(1963)] = 70466, + [SMALL_STATE(1964)] = 70479, + [SMALL_STATE(1965)] = 70492, + [SMALL_STATE(1966)] = 70505, + [SMALL_STATE(1967)] = 70518, + [SMALL_STATE(1968)] = 70531, + [SMALL_STATE(1969)] = 70544, + [SMALL_STATE(1970)] = 70557, + [SMALL_STATE(1971)] = 70566, + [SMALL_STATE(1972)] = 70579, + [SMALL_STATE(1973)] = 70592, + [SMALL_STATE(1974)] = 70605, + [SMALL_STATE(1975)] = 70616, + [SMALL_STATE(1976)] = 70629, + [SMALL_STATE(1977)] = 70642, + [SMALL_STATE(1978)] = 70655, + [SMALL_STATE(1979)] = 70668, + [SMALL_STATE(1980)] = 70681, + [SMALL_STATE(1981)] = 70694, + [SMALL_STATE(1982)] = 70707, + [SMALL_STATE(1983)] = 70720, + [SMALL_STATE(1984)] = 70733, + [SMALL_STATE(1985)] = 70742, + [SMALL_STATE(1986)] = 70755, + [SMALL_STATE(1987)] = 70764, + [SMALL_STATE(1988)] = 70777, + [SMALL_STATE(1989)] = 70790, + [SMALL_STATE(1990)] = 70803, + [SMALL_STATE(1991)] = 70816, + [SMALL_STATE(1992)] = 70829, + [SMALL_STATE(1993)] = 70842, + [SMALL_STATE(1994)] = 70855, + [SMALL_STATE(1995)] = 70868, + [SMALL_STATE(1996)] = 70881, + [SMALL_STATE(1997)] = 70894, + [SMALL_STATE(1998)] = 70907, + [SMALL_STATE(1999)] = 70920, + [SMALL_STATE(2000)] = 70931, + [SMALL_STATE(2001)] = 70944, + [SMALL_STATE(2002)] = 70957, + [SMALL_STATE(2003)] = 70970, + [SMALL_STATE(2004)] = 70983, + [SMALL_STATE(2005)] = 70996, + [SMALL_STATE(2006)] = 71009, + [SMALL_STATE(2007)] = 71022, + [SMALL_STATE(2008)] = 71035, + [SMALL_STATE(2009)] = 71048, + [SMALL_STATE(2010)] = 71061, + [SMALL_STATE(2011)] = 71074, + [SMALL_STATE(2012)] = 71087, + [SMALL_STATE(2013)] = 71100, + [SMALL_STATE(2014)] = 71113, + [SMALL_STATE(2015)] = 71126, + [SMALL_STATE(2016)] = 71139, + [SMALL_STATE(2017)] = 71152, + [SMALL_STATE(2018)] = 71165, + [SMALL_STATE(2019)] = 71178, + [SMALL_STATE(2020)] = 71191, + [SMALL_STATE(2021)] = 71204, + [SMALL_STATE(2022)] = 71217, + [SMALL_STATE(2023)] = 71230, + [SMALL_STATE(2024)] = 71243, + [SMALL_STATE(2025)] = 71256, + [SMALL_STATE(2026)] = 71265, + [SMALL_STATE(2027)] = 71278, + [SMALL_STATE(2028)] = 71291, + [SMALL_STATE(2029)] = 71304, + [SMALL_STATE(2030)] = 71317, + [SMALL_STATE(2031)] = 71326, + [SMALL_STATE(2032)] = 71339, + [SMALL_STATE(2033)] = 71352, + [SMALL_STATE(2034)] = 71365, + [SMALL_STATE(2035)] = 71378, + [SMALL_STATE(2036)] = 71391, + [SMALL_STATE(2037)] = 71404, + [SMALL_STATE(2038)] = 71417, + [SMALL_STATE(2039)] = 71430, + [SMALL_STATE(2040)] = 71443, + [SMALL_STATE(2041)] = 71456, + [SMALL_STATE(2042)] = 71469, + [SMALL_STATE(2043)] = 71482, + [SMALL_STATE(2044)] = 71495, + [SMALL_STATE(2045)] = 71508, + [SMALL_STATE(2046)] = 71521, + [SMALL_STATE(2047)] = 71534, + [SMALL_STATE(2048)] = 71545, + [SMALL_STATE(2049)] = 71558, + [SMALL_STATE(2050)] = 71571, + [SMALL_STATE(2051)] = 71584, + [SMALL_STATE(2052)] = 71597, + [SMALL_STATE(2053)] = 71610, + [SMALL_STATE(2054)] = 71623, + [SMALL_STATE(2055)] = 71636, + [SMALL_STATE(2056)] = 71649, + [SMALL_STATE(2057)] = 71662, + [SMALL_STATE(2058)] = 71675, + [SMALL_STATE(2059)] = 71684, + [SMALL_STATE(2060)] = 71697, + [SMALL_STATE(2061)] = 71710, + [SMALL_STATE(2062)] = 71723, + [SMALL_STATE(2063)] = 71736, + [SMALL_STATE(2064)] = 71749, + [SMALL_STATE(2065)] = 71762, + [SMALL_STATE(2066)] = 71775, + [SMALL_STATE(2067)] = 71788, + [SMALL_STATE(2068)] = 71801, + [SMALL_STATE(2069)] = 71811, + [SMALL_STATE(2070)] = 71821, + [SMALL_STATE(2071)] = 71831, + [SMALL_STATE(2072)] = 71841, + [SMALL_STATE(2073)] = 71849, + [SMALL_STATE(2074)] = 71857, + [SMALL_STATE(2075)] = 71867, + [SMALL_STATE(2076)] = 71877, + [SMALL_STATE(2077)] = 71885, + [SMALL_STATE(2078)] = 71895, + [SMALL_STATE(2079)] = 71903, + [SMALL_STATE(2080)] = 71911, + [SMALL_STATE(2081)] = 71921, + [SMALL_STATE(2082)] = 71931, + [SMALL_STATE(2083)] = 71941, + [SMALL_STATE(2084)] = 71951, + [SMALL_STATE(2085)] = 71961, + [SMALL_STATE(2086)] = 71969, + [SMALL_STATE(2087)] = 71979, + [SMALL_STATE(2088)] = 71989, + [SMALL_STATE(2089)] = 71999, + [SMALL_STATE(2090)] = 72009, + [SMALL_STATE(2091)] = 72019, + [SMALL_STATE(2092)] = 72029, + [SMALL_STATE(2093)] = 72037, + [SMALL_STATE(2094)] = 72047, + [SMALL_STATE(2095)] = 72057, + [SMALL_STATE(2096)] = 72067, + [SMALL_STATE(2097)] = 72077, + [SMALL_STATE(2098)] = 72087, + [SMALL_STATE(2099)] = 72095, + [SMALL_STATE(2100)] = 72105, + [SMALL_STATE(2101)] = 72115, + [SMALL_STATE(2102)] = 72125, + [SMALL_STATE(2103)] = 72135, + [SMALL_STATE(2104)] = 72145, + [SMALL_STATE(2105)] = 72155, + [SMALL_STATE(2106)] = 72165, + [SMALL_STATE(2107)] = 72175, + [SMALL_STATE(2108)] = 72185, + [SMALL_STATE(2109)] = 72195, + [SMALL_STATE(2110)] = 72205, + [SMALL_STATE(2111)] = 72215, + [SMALL_STATE(2112)] = 72225, + [SMALL_STATE(2113)] = 72235, + [SMALL_STATE(2114)] = 72243, + [SMALL_STATE(2115)] = 72253, + [SMALL_STATE(2116)] = 72263, + [SMALL_STATE(2117)] = 72273, + [SMALL_STATE(2118)] = 72283, + [SMALL_STATE(2119)] = 72293, + [SMALL_STATE(2120)] = 72303, + [SMALL_STATE(2121)] = 72313, + [SMALL_STATE(2122)] = 72323, + [SMALL_STATE(2123)] = 72333, + [SMALL_STATE(2124)] = 72343, + [SMALL_STATE(2125)] = 72353, + [SMALL_STATE(2126)] = 72363, + [SMALL_STATE(2127)] = 72373, + [SMALL_STATE(2128)] = 72383, + [SMALL_STATE(2129)] = 72393, + [SMALL_STATE(2130)] = 72403, + [SMALL_STATE(2131)] = 72411, + [SMALL_STATE(2132)] = 72421, + [SMALL_STATE(2133)] = 72431, + [SMALL_STATE(2134)] = 72439, + [SMALL_STATE(2135)] = 72449, + [SMALL_STATE(2136)] = 72459, + [SMALL_STATE(2137)] = 72469, + [SMALL_STATE(2138)] = 72479, + [SMALL_STATE(2139)] = 72489, + [SMALL_STATE(2140)] = 72499, + [SMALL_STATE(2141)] = 72509, + [SMALL_STATE(2142)] = 72519, + [SMALL_STATE(2143)] = 72527, + [SMALL_STATE(2144)] = 72537, + [SMALL_STATE(2145)] = 72547, + [SMALL_STATE(2146)] = 72557, + [SMALL_STATE(2147)] = 72567, + [SMALL_STATE(2148)] = 72577, + [SMALL_STATE(2149)] = 72587, + [SMALL_STATE(2150)] = 72597, + [SMALL_STATE(2151)] = 72607, + [SMALL_STATE(2152)] = 72615, + [SMALL_STATE(2153)] = 72623, + [SMALL_STATE(2154)] = 72631, + [SMALL_STATE(2155)] = 72641, + [SMALL_STATE(2156)] = 72649, + [SMALL_STATE(2157)] = 72659, + [SMALL_STATE(2158)] = 72669, + [SMALL_STATE(2159)] = 72679, + [SMALL_STATE(2160)] = 72689, + [SMALL_STATE(2161)] = 72699, + [SMALL_STATE(2162)] = 72709, + [SMALL_STATE(2163)] = 72719, + [SMALL_STATE(2164)] = 72729, + [SMALL_STATE(2165)] = 72739, + [SMALL_STATE(2166)] = 72749, + [SMALL_STATE(2167)] = 72759, + [SMALL_STATE(2168)] = 72769, + [SMALL_STATE(2169)] = 72779, + [SMALL_STATE(2170)] = 72789, + [SMALL_STATE(2171)] = 72799, + [SMALL_STATE(2172)] = 72809, + [SMALL_STATE(2173)] = 72819, + [SMALL_STATE(2174)] = 72829, + [SMALL_STATE(2175)] = 72839, + [SMALL_STATE(2176)] = 72847, + [SMALL_STATE(2177)] = 72857, + [SMALL_STATE(2178)] = 72865, + [SMALL_STATE(2179)] = 72875, + [SMALL_STATE(2180)] = 72885, + [SMALL_STATE(2181)] = 72895, + [SMALL_STATE(2182)] = 72902, + [SMALL_STATE(2183)] = 72909, + [SMALL_STATE(2184)] = 72916, + [SMALL_STATE(2185)] = 72923, + [SMALL_STATE(2186)] = 72930, + [SMALL_STATE(2187)] = 72937, + [SMALL_STATE(2188)] = 72944, + [SMALL_STATE(2189)] = 72951, + [SMALL_STATE(2190)] = 72958, + [SMALL_STATE(2191)] = 72965, + [SMALL_STATE(2192)] = 72972, + [SMALL_STATE(2193)] = 72979, + [SMALL_STATE(2194)] = 72986, + [SMALL_STATE(2195)] = 72993, + [SMALL_STATE(2196)] = 73000, + [SMALL_STATE(2197)] = 73007, + [SMALL_STATE(2198)] = 73014, + [SMALL_STATE(2199)] = 73021, + [SMALL_STATE(2200)] = 73028, + [SMALL_STATE(2201)] = 73035, + [SMALL_STATE(2202)] = 73042, + [SMALL_STATE(2203)] = 73049, + [SMALL_STATE(2204)] = 73056, + [SMALL_STATE(2205)] = 73063, + [SMALL_STATE(2206)] = 73070, + [SMALL_STATE(2207)] = 73077, + [SMALL_STATE(2208)] = 73084, + [SMALL_STATE(2209)] = 73091, + [SMALL_STATE(2210)] = 73098, + [SMALL_STATE(2211)] = 73105, + [SMALL_STATE(2212)] = 73112, + [SMALL_STATE(2213)] = 73119, + [SMALL_STATE(2214)] = 73126, + [SMALL_STATE(2215)] = 73133, + [SMALL_STATE(2216)] = 73140, + [SMALL_STATE(2217)] = 73147, + [SMALL_STATE(2218)] = 73154, + [SMALL_STATE(2219)] = 73161, + [SMALL_STATE(2220)] = 73168, + [SMALL_STATE(2221)] = 73175, + [SMALL_STATE(2222)] = 73182, + [SMALL_STATE(2223)] = 73189, + [SMALL_STATE(2224)] = 73196, + [SMALL_STATE(2225)] = 73203, + [SMALL_STATE(2226)] = 73210, + [SMALL_STATE(2227)] = 73217, + [SMALL_STATE(2228)] = 73224, + [SMALL_STATE(2229)] = 73231, + [SMALL_STATE(2230)] = 73238, + [SMALL_STATE(2231)] = 73245, + [SMALL_STATE(2232)] = 73252, + [SMALL_STATE(2233)] = 73259, + [SMALL_STATE(2234)] = 73266, + [SMALL_STATE(2235)] = 73273, + [SMALL_STATE(2236)] = 73280, + [SMALL_STATE(2237)] = 73287, + [SMALL_STATE(2238)] = 73294, + [SMALL_STATE(2239)] = 73301, + [SMALL_STATE(2240)] = 73308, + [SMALL_STATE(2241)] = 73315, + [SMALL_STATE(2242)] = 73322, + [SMALL_STATE(2243)] = 73329, + [SMALL_STATE(2244)] = 73336, + [SMALL_STATE(2245)] = 73343, + [SMALL_STATE(2246)] = 73350, + [SMALL_STATE(2247)] = 73357, + [SMALL_STATE(2248)] = 73364, + [SMALL_STATE(2249)] = 73371, + [SMALL_STATE(2250)] = 73378, + [SMALL_STATE(2251)] = 73385, + [SMALL_STATE(2252)] = 73392, + [SMALL_STATE(2253)] = 73399, + [SMALL_STATE(2254)] = 73406, + [SMALL_STATE(2255)] = 73413, + [SMALL_STATE(2256)] = 73420, + [SMALL_STATE(2257)] = 73427, + [SMALL_STATE(2258)] = 73434, + [SMALL_STATE(2259)] = 73441, + [SMALL_STATE(2260)] = 73448, + [SMALL_STATE(2261)] = 73455, + [SMALL_STATE(2262)] = 73462, + [SMALL_STATE(2263)] = 73469, + [SMALL_STATE(2264)] = 73476, + [SMALL_STATE(2265)] = 73483, + [SMALL_STATE(2266)] = 73490, + [SMALL_STATE(2267)] = 73497, + [SMALL_STATE(2268)] = 73504, + [SMALL_STATE(2269)] = 73511, + [SMALL_STATE(2270)] = 73518, + [SMALL_STATE(2271)] = 73525, + [SMALL_STATE(2272)] = 73532, + [SMALL_STATE(2273)] = 73539, + [SMALL_STATE(2274)] = 73546, + [SMALL_STATE(2275)] = 73553, + [SMALL_STATE(2276)] = 73560, + [SMALL_STATE(2277)] = 73567, + [SMALL_STATE(2278)] = 73574, + [SMALL_STATE(2279)] = 73581, + [SMALL_STATE(2280)] = 73588, + [SMALL_STATE(2281)] = 73595, + [SMALL_STATE(2282)] = 73602, + [SMALL_STATE(2283)] = 73609, + [SMALL_STATE(2284)] = 73616, + [SMALL_STATE(2285)] = 73623, + [SMALL_STATE(2286)] = 73630, + [SMALL_STATE(2287)] = 73637, + [SMALL_STATE(2288)] = 73644, + [SMALL_STATE(2289)] = 73651, + [SMALL_STATE(2290)] = 73658, + [SMALL_STATE(2291)] = 73665, + [SMALL_STATE(2292)] = 73672, + [SMALL_STATE(2293)] = 73679, + [SMALL_STATE(2294)] = 73686, + [SMALL_STATE(2295)] = 73693, + [SMALL_STATE(2296)] = 73700, + [SMALL_STATE(2297)] = 73707, + [SMALL_STATE(2298)] = 73714, + [SMALL_STATE(2299)] = 73721, + [SMALL_STATE(2300)] = 73728, + [SMALL_STATE(2301)] = 73735, + [SMALL_STATE(2302)] = 73742, + [SMALL_STATE(2303)] = 73749, + [SMALL_STATE(2304)] = 73756, + [SMALL_STATE(2305)] = 73763, + [SMALL_STATE(2306)] = 73770, + [SMALL_STATE(2307)] = 73777, + [SMALL_STATE(2308)] = 73784, + [SMALL_STATE(2309)] = 73791, + [SMALL_STATE(2310)] = 73798, + [SMALL_STATE(2311)] = 73805, + [SMALL_STATE(2312)] = 73812, + [SMALL_STATE(2313)] = 73819, + [SMALL_STATE(2314)] = 73826, + [SMALL_STATE(2315)] = 73833, + [SMALL_STATE(2316)] = 73840, + [SMALL_STATE(2317)] = 73847, + [SMALL_STATE(2318)] = 73854, + [SMALL_STATE(2319)] = 73861, + [SMALL_STATE(2320)] = 73868, + [SMALL_STATE(2321)] = 73875, + [SMALL_STATE(2322)] = 73882, + [SMALL_STATE(2323)] = 73889, + [SMALL_STATE(2324)] = 73896, + [SMALL_STATE(2325)] = 73903, + [SMALL_STATE(2326)] = 73910, + [SMALL_STATE(2327)] = 73917, + [SMALL_STATE(2328)] = 73924, + [SMALL_STATE(2329)] = 73931, + [SMALL_STATE(2330)] = 73938, + [SMALL_STATE(2331)] = 73945, + [SMALL_STATE(2332)] = 73952, + [SMALL_STATE(2333)] = 73959, + [SMALL_STATE(2334)] = 73966, + [SMALL_STATE(2335)] = 73973, + [SMALL_STATE(2336)] = 73980, + [SMALL_STATE(2337)] = 73987, + [SMALL_STATE(2338)] = 73994, + [SMALL_STATE(2339)] = 74001, + [SMALL_STATE(2340)] = 74008, + [SMALL_STATE(2341)] = 74015, + [SMALL_STATE(2342)] = 74022, + [SMALL_STATE(2343)] = 74029, + [SMALL_STATE(2344)] = 74036, + [SMALL_STATE(2345)] = 74043, + [SMALL_STATE(2346)] = 74050, + [SMALL_STATE(2347)] = 74057, + [SMALL_STATE(2348)] = 74064, + [SMALL_STATE(2349)] = 74071, + [SMALL_STATE(2350)] = 74078, + [SMALL_STATE(2351)] = 74085, + [SMALL_STATE(2352)] = 74092, + [SMALL_STATE(2353)] = 74099, + [SMALL_STATE(2354)] = 74106, + [SMALL_STATE(2355)] = 74113, + [SMALL_STATE(2356)] = 74120, + [SMALL_STATE(2357)] = 74127, + [SMALL_STATE(2358)] = 74134, + [SMALL_STATE(2359)] = 74141, + [SMALL_STATE(2360)] = 74148, + [SMALL_STATE(2361)] = 74155, + [SMALL_STATE(2362)] = 74162, + [SMALL_STATE(2363)] = 74169, + [SMALL_STATE(2364)] = 74176, + [SMALL_STATE(2365)] = 74183, + [SMALL_STATE(2366)] = 74190, + [SMALL_STATE(2367)] = 74197, + [SMALL_STATE(2368)] = 74204, + [SMALL_STATE(2369)] = 74211, + [SMALL_STATE(2370)] = 74218, + [SMALL_STATE(2371)] = 74225, + [SMALL_STATE(2372)] = 74232, + [SMALL_STATE(2373)] = 74239, + [SMALL_STATE(2374)] = 74246, + [SMALL_STATE(2375)] = 74253, + [SMALL_STATE(2376)] = 74260, + [SMALL_STATE(2377)] = 74267, + [SMALL_STATE(2378)] = 74274, + [SMALL_STATE(2379)] = 74281, + [SMALL_STATE(2380)] = 74288, + [SMALL_STATE(2381)] = 74295, + [SMALL_STATE(2382)] = 74302, + [SMALL_STATE(2383)] = 74309, + [SMALL_STATE(2384)] = 74316, + [SMALL_STATE(2385)] = 74323, + [SMALL_STATE(2386)] = 74330, + [SMALL_STATE(2387)] = 74337, + [SMALL_STATE(2388)] = 74344, + [SMALL_STATE(2389)] = 74351, + [SMALL_STATE(2390)] = 74358, + [SMALL_STATE(2391)] = 74365, + [SMALL_STATE(2392)] = 74372, + [SMALL_STATE(2393)] = 74379, + [SMALL_STATE(2394)] = 74386, + [SMALL_STATE(2395)] = 74393, + [SMALL_STATE(2396)] = 74400, + [SMALL_STATE(2397)] = 74407, + [SMALL_STATE(2398)] = 74414, + [SMALL_STATE(2399)] = 74421, + [SMALL_STATE(2400)] = 74428, + [SMALL_STATE(2401)] = 74435, + [SMALL_STATE(2402)] = 74442, + [SMALL_STATE(2403)] = 74449, + [SMALL_STATE(2404)] = 74456, + [SMALL_STATE(2405)] = 74463, + [SMALL_STATE(2406)] = 74470, + [SMALL_STATE(2407)] = 74477, + [SMALL_STATE(2408)] = 74484, + [SMALL_STATE(2409)] = 74491, + [SMALL_STATE(2410)] = 74498, + [SMALL_STATE(2411)] = 74505, + [SMALL_STATE(2412)] = 74512, + [SMALL_STATE(2413)] = 74519, + [SMALL_STATE(2414)] = 74526, + [SMALL_STATE(2415)] = 74533, + [SMALL_STATE(2416)] = 74540, + [SMALL_STATE(2417)] = 74547, + [SMALL_STATE(2418)] = 74554, + [SMALL_STATE(2419)] = 74561, + [SMALL_STATE(2420)] = 74568, + [SMALL_STATE(2421)] = 74575, + [SMALL_STATE(2422)] = 74582, + [SMALL_STATE(2423)] = 74589, + [SMALL_STATE(2424)] = 74596, + [SMALL_STATE(2425)] = 74603, + [SMALL_STATE(2426)] = 74610, + [SMALL_STATE(2427)] = 74617, + [SMALL_STATE(2428)] = 74624, + [SMALL_STATE(2429)] = 74631, + [SMALL_STATE(2430)] = 74638, + [SMALL_STATE(2431)] = 74645, + [SMALL_STATE(2432)] = 74652, + [SMALL_STATE(2433)] = 74659, + [SMALL_STATE(2434)] = 74666, + [SMALL_STATE(2435)] = 74673, + [SMALL_STATE(2436)] = 74680, + [SMALL_STATE(2437)] = 74687, + [SMALL_STATE(2438)] = 74694, + [SMALL_STATE(2439)] = 74701, + [SMALL_STATE(2440)] = 74708, + [SMALL_STATE(2441)] = 74715, + [SMALL_STATE(2442)] = 74722, + [SMALL_STATE(2443)] = 74729, + [SMALL_STATE(2444)] = 74736, + [SMALL_STATE(2445)] = 74743, + [SMALL_STATE(2446)] = 74750, + [SMALL_STATE(2447)] = 74757, + [SMALL_STATE(2448)] = 74764, + [SMALL_STATE(2449)] = 74771, + [SMALL_STATE(2450)] = 74778, + [SMALL_STATE(2451)] = 74785, + [SMALL_STATE(2452)] = 74792, + [SMALL_STATE(2453)] = 74799, + [SMALL_STATE(2454)] = 74806, + [SMALL_STATE(2455)] = 74813, + [SMALL_STATE(2456)] = 74820, + [SMALL_STATE(2457)] = 74827, + [SMALL_STATE(2458)] = 74834, + [SMALL_STATE(2459)] = 74841, + [SMALL_STATE(2460)] = 74848, + [SMALL_STATE(2461)] = 74855, + [SMALL_STATE(2462)] = 74862, + [SMALL_STATE(2463)] = 74869, + [SMALL_STATE(2464)] = 74876, + [SMALL_STATE(2465)] = 74883, + [SMALL_STATE(2466)] = 74890, + [SMALL_STATE(2467)] = 74897, + [SMALL_STATE(2468)] = 74904, + [SMALL_STATE(2469)] = 74911, + [SMALL_STATE(2470)] = 74918, + [SMALL_STATE(2471)] = 74925, + [SMALL_STATE(2472)] = 74932, + [SMALL_STATE(2473)] = 74939, + [SMALL_STATE(2474)] = 74946, + [SMALL_STATE(2475)] = 74953, + [SMALL_STATE(2476)] = 74960, + [SMALL_STATE(2477)] = 74967, + [SMALL_STATE(2478)] = 74974, + [SMALL_STATE(2479)] = 74981, + [SMALL_STATE(2480)] = 74988, + [SMALL_STATE(2481)] = 74995, + [SMALL_STATE(2482)] = 75002, + [SMALL_STATE(2483)] = 75009, + [SMALL_STATE(2484)] = 75016, + [SMALL_STATE(2485)] = 75023, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -141966,2565 +146710,2591 @@ 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(572), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(567), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1662), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2267), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1477), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2268), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2098), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(537), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(694), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(694), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(700), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(134), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1230), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1336), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1157), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2388), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2373), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1198), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(46), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1006), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(950), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(936), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1000), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1980), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1725), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1793), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2100), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2071), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(814), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2205), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2097), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(449), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2408), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(647), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2163), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2162), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2276), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2068), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2152), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(809), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(805), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2284), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2283), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2278), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1748), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(884), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2017), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1804), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(884), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(882), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 40), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 40), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(564), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1649), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2327), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1448), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2299), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2051), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(210), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1234), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1287), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1171), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(44), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2072), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2062), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(788), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2329), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2070), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(448), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2413), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(624), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2245), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2250), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2306), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2059), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2312), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 40), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 40), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(615), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1716), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2321), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1521), + [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2322), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2159), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(588), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(728), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(728), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(738), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(99), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1274), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1344), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1203), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2432), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2081), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2415), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1239), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(49), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1059), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(990), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(970), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1068), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1959), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1781), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1839), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2157), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2126), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(779), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2214), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2154), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(527), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2471), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(669), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2247), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2218), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2330), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2121), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2245), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(850), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(846), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2187), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2227), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2236), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1799), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(894), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2047), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1900), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(894), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(914), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(607), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1702), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2386), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1499), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2356), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2102), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(199), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1280), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1339), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1208), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(35), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2128), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2108), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(773), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2365), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2125), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(530), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2476), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(674), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2211), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2210), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2363), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2104), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2185), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(570), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1671), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2179), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1454), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2180), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2033), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(272), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1241), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1340), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1152), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(51), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2037), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2099), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(711), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2372), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2039), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(404), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2360), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(623), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2365), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2364), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2188), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2088), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2203), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(565), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1660), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2348), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1436), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2328), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2123), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(319), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1240), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1343), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1165), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(30), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2063), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2052), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(782), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2135), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2061), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(441), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2416), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(648), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2320), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2318), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2333), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2049), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2282), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(605), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1711), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2230), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1522), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2231), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2068), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(417), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1272), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1358), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1204), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(28), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2118), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2156), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(851), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2340), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2119), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(433), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2419), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(666), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2338), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2344), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2239), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2088), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2467), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(612), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1708), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2407), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1496), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2387), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2174), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(312), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1287), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1337), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1227), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(50), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2109), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2097), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(767), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2198), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2107), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(519), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2479), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(686), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2362), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2360), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2392), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2094), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2337), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(572), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1665), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2421), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1459), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2415), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2026), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(537), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(694), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(694), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(700), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1221), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1346), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1169), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2388), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2034), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2373), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1198), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1006), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(936), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1000), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1980), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1725), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1793), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2044), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2048), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(790), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2332), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2053), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(503), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2313), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(620), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2308), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2304), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2181), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(809), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(805), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2284), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2283), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2278), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1748), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2017), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1804), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(882), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(616), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1704), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2481), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1482), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2475), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2071), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(588), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(728), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(728), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(738), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1276), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1347), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1213), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2432), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2081), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2415), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1239), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(51), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1059), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(990), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(970), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1068), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1959), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1781), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1839), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2120), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2122), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(785), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2314), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2132), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(523), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2276), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2274), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2256), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2254), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(850), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(846), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2187), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2227), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2236), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1799), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1431), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2047), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1900), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1431), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(914), [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(561), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(606), [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(537), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(694), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(694), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(700), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(134), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1230), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1336), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(950), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2388), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2034), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2373), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1006), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(936), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1000), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1980), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1725), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1793), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2100), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2071), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2097), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(449), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2408), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(647), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2163), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2162), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2276), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2068), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2152), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(809), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(805), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2284), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2283), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2278), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1748), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(884), - [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2017), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1804), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(884), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(882), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(563), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(210), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1234), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1287), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(44), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2072), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2062), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2070), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(448), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2413), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(624), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2245), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2250), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2306), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2059), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2312), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(588), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(728), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(728), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(738), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1274), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1344), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(990), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2432), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2081), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2415), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(49), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1059), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(970), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1068), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1959), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1781), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1839), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2157), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2126), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2154), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(527), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2471), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(669), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2247), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2218), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2330), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2121), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2245), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(850), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(846), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2187), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2227), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2236), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1799), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(894), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2047), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1900), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(894), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(914), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(614), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(199), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1280), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1339), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2128), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2108), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2125), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(530), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2476), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(674), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2210), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2363), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2104), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2185), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(319), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1240), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1343), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2063), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2052), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2061), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2416), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(648), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2320), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2318), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2333), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2049), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2282), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1241), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1340), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2037), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2099), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2039), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(404), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2360), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(623), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2365), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2364), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2188), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2088), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2203), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(566), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(383), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1221), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1346), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2044), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2048), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2053), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(503), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2313), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(620), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2308), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2304), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2181), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2089), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2344), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(560), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2106), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2109), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2384), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2038), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [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(497), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 91), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 91), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 111), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 111), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 100), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 100), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 90), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 90), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 85), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 85), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 28), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 28), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 29), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 29), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 35), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 35), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 81), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 81), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 76), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 76), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 64), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 64), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 62), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 62), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 94), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 94), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 97), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 97), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 95), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 95), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 61), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 61), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 67), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 67), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 71), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 71), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 72), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 72), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 73), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 73), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(934), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(537), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(694), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(694), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(700), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(319), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2101), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2063), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2052), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(782), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2135), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2061), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(441), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2416), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(648), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2320), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2318), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2333), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2049), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2282), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(809), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(805), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2284), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2283), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2278), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1748), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(884), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2017), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1804), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(884), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(882), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(927), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(383), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2044), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2048), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(790), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2332), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2053), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(503), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2313), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(620), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2308), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2304), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2181), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2089), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2344), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(935), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(210), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(44), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2072), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2062), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(788), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2329), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2070), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(448), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2413), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(624), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2245), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2250), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2306), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2059), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2312), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(925), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(272), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2037), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2099), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(711), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2372), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2039), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(404), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2360), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(623), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2365), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2364), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2188), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2088), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2203), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(923), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2106), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(803), - [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2165), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2109), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2384), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2038), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(938), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(134), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2100), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2071), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(814), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2205), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2097), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(449), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2408), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(647), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2163), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2162), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2276), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2068), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2152), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1971] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1333), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(989), - [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2352), - [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1456), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2229), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2117), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(936), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(950), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2388), - [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2074), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2373), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1006), - [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1000), - [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1980), - [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1725), - [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1793), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1444), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2288), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2108), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 105), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 84), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2298), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1438), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2093), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2354), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1437), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2317), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2104), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(827), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1804), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 124), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 124), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 120), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 120), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 119), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 119), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 129), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 129), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 108), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 108), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 125), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 125), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 88), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 88), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 109), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 109), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(936), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(950), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2388), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2074), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2373), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 106), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 106), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 69), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 69), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(989), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(936), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(950), - [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2388), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2074), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2373), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1006), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1000), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1980), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1725), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1793), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(904), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1809), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(926), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 70), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 70), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 96), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 96), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(962), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 80), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 80), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 26), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 26), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1333), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1038), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 80), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 80), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 26), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 26), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 78), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 78), - [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 72), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 72), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 79), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 79), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 73), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 73), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 97), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 97), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 79), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 79), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2388), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2388), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2388), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), - [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), SHIFT(2388), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), - [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), SHIFT(2388), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1917), - [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1232), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3235] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1333), - [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 77), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 77), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1368), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1364), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 103), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 83), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 102), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 104), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 116), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 114), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 115), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 63), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(936), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [3809] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(962), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1518), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1514), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1498), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1515), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(962), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(962), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1508), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1507), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1540), - [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(962), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(962), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2307), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, .production_id = 34), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1594), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2388), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(2034), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 110), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 22), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 110), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1973), - [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1442), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2227), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2026), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 40), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 32), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1), - [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 22), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 92), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 92), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 22), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 22), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 110), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 22), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 22), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 112), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 112), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 32), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1973), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 112), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 112), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1677), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 40), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 40), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 35), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 92), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 92), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 40), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 92), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 92), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), - [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), - [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(789), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2292), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, .production_id = 34), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 112), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 112), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2388), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 75), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 89), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1766), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 73), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 73), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1833), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 72), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 72), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 97), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 97), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 92), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 32), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 98), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 74), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 112), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 93), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 101), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 48), - [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1612), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 65), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1712), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 117), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1570), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 65), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 86), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 107), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1679), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 117), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 127), SHIFT_REPEAT(1659), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 127), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1846), - [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1846), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 122), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 22), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 107), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1865), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 48), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 86), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 118), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(615), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1455), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(2057), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 126), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 123), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(888), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1309), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 86), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 99), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 121), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 121), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1917), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(590), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 130), SHIFT_REPEAT(2323), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 130), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(2091), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1428), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 65), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 118), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 86), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 128), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 32), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 131), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 131), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, .production_id = 113), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 73), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 72), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 97), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 72), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 41), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 41), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 73), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5337] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 41), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 41), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 40), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 97), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 97), - [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 97), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 73), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 72), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 73), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 73), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 72), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 72), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 97), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(611), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(403), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1276), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1347), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2120), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2122), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2132), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(523), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2276), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2274), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2256), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2254), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2149), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2305), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(609), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(312), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1287), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(50), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2109), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2097), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2107), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(519), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2479), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(686), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2362), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2360), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2392), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2094), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2337), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(608), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(417), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1272), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1358), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2118), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2156), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2119), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(433), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2419), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(666), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2338), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2344), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2239), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2088), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2467), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(613), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2147), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2150), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2445), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2082), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 4, .production_id = 120), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 4, .production_id = 120), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 57), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 57), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 27), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 27), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2442), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 35), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 35), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2452), + [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), + [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(aux_sym_if_statement_repeat1, 1, .production_id = 56), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 56), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 64), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 64), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 66), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 66), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 28), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 28), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 78), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 78), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 83), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 83), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 85), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 85), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 89), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 89), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 104), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 104), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 115), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 115), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 94), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 94), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 95), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 95), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 29), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 29), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [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_function_definition, 5, .production_id = 98), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 98), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 99), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 99), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 101), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 101), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 63), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 63), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 73), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 73), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 74), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 74), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 75), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 75), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 69), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 69), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 70), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 70), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2271), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2296), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2461), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 59), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 59), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(976), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(588), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(728), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(728), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(738), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(417), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2158), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2147), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2122), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(783), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2262), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2150), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(523), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2445), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(687), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2274), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2256), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2254), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2082), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2467), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(850), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(846), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2187), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2227), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2236), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1799), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(894), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2047), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1900), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(894), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(914), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(971), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(199), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(35), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2128), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2108), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(773), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2365), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2125), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(530), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2476), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(674), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2211), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2210), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2363), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2104), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2185), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(969), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2118), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2156), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(851), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2340), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2119), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(433), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2419), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(666), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2338), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2344), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2239), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2088), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(979), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(99), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(49), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2157), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2126), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(779), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2214), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2154), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(527), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2471), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(669), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2247), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2218), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2330), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2121), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2245), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(978), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(312), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(50), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2109), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2097), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(767), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2198), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2107), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(519), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2479), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(686), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2362), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2360), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2392), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2094), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2337), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(983), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(403), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2120), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(785), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2314), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2132), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2276), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2149), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2305), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 84), SHIFT_REPEAT(2350), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [2021] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1365), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1070), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2411), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1525), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2280), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2173), + [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(970), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(990), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2432), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2129), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2415), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1059), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1068), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1959), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1781), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1839), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2412), + [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1500), + [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2342), + [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2168), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 88), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 58), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 58), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 109), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2413), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1497), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2374), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2163), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2355), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1526), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2421), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2169), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(869), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1900), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 125), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 125), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 124), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 124), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 130), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 130), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 60), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 60), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 112), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 112), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 113), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 113), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 134), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 134), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 92), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 92), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 91), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 91), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 129), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 129), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(970), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(990), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2432), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2129), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2415), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 110), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 110), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 71), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 71), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 59), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 59), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1070), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(970), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(990), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2432), + [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2129), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2415), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1059), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1068), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1959), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1781), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1839), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(951), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1883), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(980), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 72), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 72), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1001), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 82), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 82), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 80), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 80), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 82), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 82), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [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_struct_specifier, 5, .production_id = 52), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1086), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1365), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 61), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 61), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 81), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 81), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 74), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 74), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 81), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 81), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 75), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 75), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 101), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 101), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2432), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2432), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 80), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 80), + [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 80), SHIFT(2432), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2432), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), + [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), SHIFT(2432), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1928), + [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1288), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3285] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1365), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 79), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 79), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1409), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1410), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 106), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 107), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 108), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 118), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 86), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 87), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 119), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 121), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 65), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(970), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1550), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1551), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1001), + [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1001), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1592), + [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1588), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3889] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1001), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1001), + [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1557), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1561), + [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1556), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1001), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2255), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, .production_id = 34), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), + [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1637), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2432), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(2081), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 93), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 114), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 22), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 114), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 40), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 93), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1953), + [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1533), + [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2455), + [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2071), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 32), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 116), + [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 116), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 96), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 96), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 114), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 93), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 22), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 32), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 116), + [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 116), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 40), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 40), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 40), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1750), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 96), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 96), + [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1953), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 35), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, .production_id = 34), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 96), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 96), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2432), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 116), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 116), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(864), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2315), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 77), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 62), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1806), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1866), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 74), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 74), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 93), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 75), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 75), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 101), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 101), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 96), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 102), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 116), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 32), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 76), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 97), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 48), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1615), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 67), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 132), SHIFT_REPEAT(1698), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 132), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 22), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1652), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 67), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 122), SHIFT_REPEAT(1723), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 122), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 48), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 111), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 123), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 90), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 90), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1910), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1911), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1911), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 111), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 127), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 105), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 122), SHIFT_REPEAT(1732), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 122), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 133), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 123), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(660), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 126), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1486), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(2142), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(941), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1394), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 103), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 131), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 128), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 90), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(2090), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 126), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1477), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 67), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 135), SHIFT_REPEAT(2357), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 135), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 136), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 136), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1928), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(635), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 90), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 32), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 128), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, .production_id = 117), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 74), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 74), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 75), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 75), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 74), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 75), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 74), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 40), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5399] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 41), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 41), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 41), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 101), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 101), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 75), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 41), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 101), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 101), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 101), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 75), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 74), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), }; #ifdef __cplusplus extern "C" { #endif #ifdef _WIN32 -#define TS_PUBLIC __declspec(dllexport) -#else -#define TS_PUBLIC __attribute__((visibility("default"))) +#define extern __declspec(dllexport) #endif -TS_PUBLIC const TSLanguage *tree_sitter_c() { +extern const TSLanguage *tree_sitter_c(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index ef81ddbb..83c81f9e 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -8,6 +8,12 @@ int main() { if (!a) { 2; + } else if (a) { + 4; + } else if (a) { + 6; + } else if (a) { + 5; } else { 3; } @@ -34,6 +40,24 @@ int main() { (compound_statement (expression_statement (number_literal))) + (else_if_clause + (parenthesized_expression + (identifier)) + (compound_statement + (expression_statement + (number_literal)))) + (else_if_clause + (parenthesized_expression + (identifier)) + (compound_statement + (expression_statement + (number_literal)))) + (else_if_clause + (parenthesized_expression + (identifier)) + (compound_statement + (expression_statement + (number_literal)))) (else_clause (compound_statement (expression_statement