From 8278ca98faffad804caeb2f39ff10c850af3a62a Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Tue, 13 Feb 2024 14:02:23 +0000 Subject: [PATCH] fix: improve concatenated_string --- grammar.js | 21 +- src/grammar.json | 79 +- src/parser.c | 135533 +++++++++++++++++---------------- test/corpus/expressions.txt | 69 + 4 files changed, 68089 insertions(+), 67613 deletions(-) diff --git a/grammar.js b/grammar.js index 2a9fe20..1d58962 100644 --- a/grammar.js +++ b/grammar.js @@ -911,16 +911,20 @@ module.exports = grammar({ $.compound_literal_expression, $.identifier, $.number_literal, - $.string_literal, + $._string, $.true, $.false, $.null, - $.concatenated_string, $.char_literal, $.parenthesized_expression, $.gnu_asm_expression, ), + _string: $ => prec.left(choice( + $.string_literal, + $.concatenated_string, + )), + comma_expression: $ => seq( field('left', $._expression), ',', @@ -1070,7 +1074,7 @@ module.exports = grammar({ choice('asm', '__asm__'), repeat($.gnu_asm_qualifier), '(', - field('assembly_code', choice($.string_literal, $.concatenated_string)), + field('assembly_code', $._string), optional(seq( field('output_operands', $.gnu_asm_output_operand_list), optional(seq( @@ -1232,10 +1236,15 @@ module.exports = grammar({ '\'', ), + // Must concatenate at least 2 nodes, one of which must be a string_literal. + // Identifier is added to parse macros that are strings, like PRIu64. concatenated_string: $ => prec.right(seq( - choice($.identifier, $.string_literal), - $.string_literal, - repeat(choice($.string_literal, $.identifier)), // Identifier is added to parse macros that are strings, like PRIu64 + choice( + seq($.identifier, $.string_literal), + seq($.string_literal, $.string_literal), + seq($.string_literal, $.identifier), + ), + repeat(choice($.string_literal, $.identifier)) )), string_literal: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index fde1224..f3ef6ff 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6249,7 +6249,7 @@ }, { "type": "SYMBOL", - "name": "string_literal" + "name": "_string" }, { "type": "SYMBOL", @@ -6263,10 +6263,6 @@ "type": "SYMBOL", "name": "null" }, - { - "type": "SYMBOL", - "name": "concatenated_string" - }, { "type": "SYMBOL", "name": "char_literal" @@ -6281,6 +6277,23 @@ } ] }, + "_string": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + } + ] + } + }, "comma_expression": { "type": "SEQ", "members": [ @@ -7611,17 +7624,8 @@ "type": "FIELD", "name": "assembly_code", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "string_literal" - }, - { - "type": "SYMBOL", - "name": "concatenated_string" - } - ] + "type": "SYMBOL", + "name": "_string" } }, { @@ -8887,19 +8891,46 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] }, { - "type": "SYMBOL", - "name": "string_literal" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] } ] }, - { - "type": "SYMBOL", - "name": "string_literal" - }, { "type": "REPEAT", "content": { diff --git a/src/parser.c b/src/parser.c index f065e55..465b5d2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2229 +#define STATE_COUNT 2226 #define LARGE_STATE_COUNT 557 -#define SYMBOL_COUNT 345 +#define SYMBOL_COUNT 346 #define ALIAS_COUNT 3 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 0 @@ -297,81 +297,82 @@ enum ts_symbol_identifiers { sym_seh_leave_statement = 270, sym__expression = 271, sym__expression_not_binary = 272, - sym_comma_expression = 273, - sym_conditional_expression = 274, - sym_assignment_expression = 275, - sym_pointer_expression = 276, - sym_unary_expression = 277, - sym_binary_expression = 278, - sym_update_expression = 279, - sym_cast_expression = 280, - sym_type_descriptor = 281, - sym_sizeof_expression = 282, - sym_alignof_expression = 283, - sym_offsetof_expression = 284, - sym_generic_expression = 285, - sym_subscript_expression = 286, - sym_call_expression = 287, - sym_gnu_asm_expression = 288, - sym_gnu_asm_qualifier = 289, - sym_gnu_asm_output_operand_list = 290, - sym_gnu_asm_output_operand = 291, - sym_gnu_asm_input_operand_list = 292, - sym_gnu_asm_input_operand = 293, - sym_gnu_asm_clobber_list = 294, - sym_gnu_asm_goto_list = 295, - sym_argument_list = 296, - sym_field_expression = 297, - sym_compound_literal_expression = 298, - sym_parenthesized_expression = 299, - sym_initializer_list = 300, - sym_initializer_pair = 301, - sym_subscript_designator = 302, - sym_subscript_range_designator = 303, - sym_field_designator = 304, - sym_char_literal = 305, - sym_concatenated_string = 306, - sym_string_literal = 307, - sym_null = 308, - sym__empty_declaration = 309, - sym_macro_type_specifier = 310, - aux_sym_translation_unit_repeat1 = 311, - aux_sym_preproc_params_repeat1 = 312, - aux_sym_preproc_if_repeat1 = 313, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 314, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 315, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 316, - aux_sym_preproc_argument_list_repeat1 = 317, - aux_sym__old_style_function_definition_repeat1 = 318, - aux_sym__declaration_declarator_repeat1 = 319, - aux_sym_type_definition_repeat1 = 320, - aux_sym__type_definition_type_repeat1 = 321, - aux_sym__type_definition_declarators_repeat1 = 322, - aux_sym__declaration_specifiers_repeat1 = 323, - aux_sym_attribute_declaration_repeat1 = 324, - aux_sym_attributed_declarator_repeat1 = 325, - aux_sym_pointer_declarator_repeat1 = 326, - aux_sym_sized_type_specifier_repeat1 = 327, - aux_sym_enumerator_list_repeat1 = 328, - aux_sym__field_declaration_declarator_repeat1 = 329, - aux_sym_parameter_list_repeat1 = 330, - aux_sym__old_style_parameter_list_repeat1 = 331, - aux_sym_case_statement_repeat1 = 332, - aux_sym_generic_expression_repeat1 = 333, - aux_sym_gnu_asm_expression_repeat1 = 334, - aux_sym_gnu_asm_output_operand_list_repeat1 = 335, - aux_sym_gnu_asm_input_operand_list_repeat1 = 336, - aux_sym_gnu_asm_clobber_list_repeat1 = 337, - aux_sym_gnu_asm_goto_list_repeat1 = 338, - aux_sym_argument_list_repeat1 = 339, - aux_sym_initializer_list_repeat1 = 340, - aux_sym_initializer_pair_repeat1 = 341, - aux_sym_char_literal_repeat1 = 342, - aux_sym_concatenated_string_repeat1 = 343, - aux_sym_string_literal_repeat1 = 344, - alias_sym_field_identifier = 345, - alias_sym_statement_identifier = 346, - alias_sym_type_identifier = 347, + sym__string = 273, + sym_comma_expression = 274, + sym_conditional_expression = 275, + sym_assignment_expression = 276, + sym_pointer_expression = 277, + sym_unary_expression = 278, + sym_binary_expression = 279, + sym_update_expression = 280, + sym_cast_expression = 281, + sym_type_descriptor = 282, + sym_sizeof_expression = 283, + sym_alignof_expression = 284, + sym_offsetof_expression = 285, + sym_generic_expression = 286, + sym_subscript_expression = 287, + sym_call_expression = 288, + sym_gnu_asm_expression = 289, + sym_gnu_asm_qualifier = 290, + sym_gnu_asm_output_operand_list = 291, + sym_gnu_asm_output_operand = 292, + sym_gnu_asm_input_operand_list = 293, + sym_gnu_asm_input_operand = 294, + sym_gnu_asm_clobber_list = 295, + sym_gnu_asm_goto_list = 296, + sym_argument_list = 297, + sym_field_expression = 298, + sym_compound_literal_expression = 299, + sym_parenthesized_expression = 300, + sym_initializer_list = 301, + sym_initializer_pair = 302, + sym_subscript_designator = 303, + sym_subscript_range_designator = 304, + sym_field_designator = 305, + sym_char_literal = 306, + sym_concatenated_string = 307, + sym_string_literal = 308, + sym_null = 309, + sym__empty_declaration = 310, + sym_macro_type_specifier = 311, + aux_sym_translation_unit_repeat1 = 312, + aux_sym_preproc_params_repeat1 = 313, + aux_sym_preproc_if_repeat1 = 314, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 315, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 316, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 317, + aux_sym_preproc_argument_list_repeat1 = 318, + aux_sym__old_style_function_definition_repeat1 = 319, + aux_sym__declaration_declarator_repeat1 = 320, + aux_sym_type_definition_repeat1 = 321, + aux_sym__type_definition_type_repeat1 = 322, + aux_sym__type_definition_declarators_repeat1 = 323, + aux_sym__declaration_specifiers_repeat1 = 324, + aux_sym_attribute_declaration_repeat1 = 325, + aux_sym_attributed_declarator_repeat1 = 326, + aux_sym_pointer_declarator_repeat1 = 327, + aux_sym_sized_type_specifier_repeat1 = 328, + aux_sym_enumerator_list_repeat1 = 329, + aux_sym__field_declaration_declarator_repeat1 = 330, + aux_sym_parameter_list_repeat1 = 331, + aux_sym__old_style_parameter_list_repeat1 = 332, + aux_sym_case_statement_repeat1 = 333, + aux_sym_generic_expression_repeat1 = 334, + aux_sym_gnu_asm_expression_repeat1 = 335, + aux_sym_gnu_asm_output_operand_list_repeat1 = 336, + aux_sym_gnu_asm_input_operand_list_repeat1 = 337, + aux_sym_gnu_asm_clobber_list_repeat1 = 338, + aux_sym_gnu_asm_goto_list_repeat1 = 339, + aux_sym_argument_list_repeat1 = 340, + aux_sym_initializer_list_repeat1 = 341, + aux_sym_initializer_pair_repeat1 = 342, + aux_sym_char_literal_repeat1 = 343, + aux_sym_concatenated_string_repeat1 = 344, + aux_sym_string_literal_repeat1 = 345, + alias_sym_field_identifier = 346, + alias_sym_statement_identifier = 347, + alias_sym_type_identifier = 348, }; static const char * const ts_symbol_names[] = { @@ -648,6 +649,7 @@ static const char * const ts_symbol_names[] = { [sym_seh_leave_statement] = "seh_leave_statement", [sym__expression] = "_expression", [sym__expression_not_binary] = "_expression_not_binary", + [sym__string] = "_string", [sym_comma_expression] = "comma_expression", [sym_conditional_expression] = "conditional_expression", [sym_assignment_expression] = "assignment_expression", @@ -999,6 +1001,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_seh_leave_statement] = sym_seh_leave_statement, [sym__expression] = sym__expression, [sym__expression_not_binary] = sym__expression_not_binary, + [sym__string] = sym__string, [sym_comma_expression] = sym_comma_expression, [sym_conditional_expression] = sym_conditional_expression, [sym_assignment_expression] = sym_assignment_expression, @@ -2175,6 +2178,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__string] = { + .visible = false, + .named = true, + }, [sym_comma_expression] = { .visible = true, .named = true, @@ -3114,51 +3121,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 2, [5] = 3, [6] = 2, - [7] = 3, - [8] = 3, - [9] = 2, - [10] = 2, + [7] = 2, + [8] = 2, + [9] = 3, + [10] = 3, [11] = 3, [12] = 12, - [13] = 12, + [13] = 13, [14] = 14, - [15] = 12, + [15] = 13, [16] = 16, - [17] = 12, + [17] = 13, [18] = 18, - [19] = 18, - [20] = 18, - [21] = 18, + [19] = 13, + [20] = 20, + [21] = 13, [22] = 22, - [23] = 23, - [24] = 18, - [25] = 25, - [26] = 12, + [23] = 20, + [24] = 20, + [25] = 20, + [26] = 20, [27] = 14, [28] = 28, [29] = 28, [30] = 30, [31] = 31, [32] = 31, - [33] = 30, - [34] = 30, + [33] = 31, + [34] = 34, [35] = 14, - [36] = 31, - [37] = 37, - [38] = 37, - [39] = 28, - [40] = 30, - [41] = 41, - [42] = 37, - [43] = 37, - [44] = 28, - [45] = 31, - [46] = 37, - [47] = 28, - [48] = 30, - [49] = 14, - [50] = 31, - [51] = 51, + [36] = 36, + [37] = 34, + [38] = 36, + [39] = 36, + [40] = 28, + [41] = 31, + [42] = 28, + [43] = 31, + [44] = 34, + [45] = 36, + [46] = 14, + [47] = 34, + [48] = 48, + [49] = 36, + [50] = 34, + [51] = 28, [52] = 52, [53] = 53, [54] = 54, @@ -3166,31 +3173,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 55, - [60] = 54, - [61] = 56, - [62] = 58, - [63] = 57, - [64] = 58, - [65] = 55, - [66] = 57, - [67] = 57, - [68] = 58, - [69] = 56, + [59] = 58, + [60] = 55, + [61] = 57, + [62] = 56, + [63] = 54, + [64] = 56, + [65] = 57, + [66] = 58, + [67] = 54, + [68] = 54, + [69] = 58, [70] = 57, - [71] = 58, + [71] = 57, [72] = 56, [73] = 56, - [74] = 54, - [75] = 54, - [76] = 55, - [77] = 55, - [78] = 54, - [79] = 55, - [80] = 54, + [74] = 55, + [75] = 55, + [76] = 54, + [77] = 58, + [78] = 55, + [79] = 54, + [80] = 57, [81] = 56, [82] = 58, - [83] = 57, + [83] = 55, [84] = 84, [85] = 84, [86] = 84, @@ -3201,7 +3208,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [91] = 91, [92] = 92, [93] = 93, - [94] = 93, + [94] = 94, [95] = 95, [96] = 96, [97] = 97, @@ -3212,7 +3219,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [102] = 102, [103] = 103, [104] = 104, - [105] = 100, + [105] = 105, [106] = 106, [107] = 107, [108] = 108, @@ -3220,7 +3227,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [110] = 110, [111] = 111, [112] = 112, - [113] = 113, + [113] = 95, [114] = 114, [115] = 115, [116] = 116, @@ -3230,7 +3237,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [120] = 120, [121] = 121, [122] = 122, - [123] = 123, + [123] = 93, [124] = 124, [125] = 125, [126] = 126, @@ -3246,7 +3253,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [136] = 136, [137] = 137, [138] = 138, - [139] = 139, + [139] = 90, [140] = 140, [141] = 141, [142] = 142, @@ -3256,7 +3263,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [146] = 146, [147] = 147, [148] = 148, - [149] = 90, + [149] = 149, [150] = 150, [151] = 151, [152] = 152, @@ -3268,350 +3275,350 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [158] = 158, [159] = 159, [160] = 160, - [161] = 98, - [162] = 119, - [163] = 99, - [164] = 93, - [165] = 123, - [166] = 112, - [167] = 115, - [168] = 95, + [161] = 96, + [162] = 102, + [163] = 106, + [164] = 107, + [165] = 108, + [166] = 109, + [167] = 110, + [168] = 111, [169] = 92, - [170] = 96, - [171] = 108, - [172] = 109, - [173] = 116, - [174] = 122, - [175] = 97, - [176] = 110, - [177] = 91, - [178] = 100, - [179] = 125, - [180] = 126, - [181] = 102, - [182] = 127, - [183] = 128, - [184] = 106, - [185] = 111, - [186] = 107, - [187] = 130, + [170] = 91, + [171] = 115, + [172] = 94, + [173] = 120, + [174] = 95, + [175] = 128, + [176] = 118, + [177] = 105, + [178] = 99, + [179] = 101, + [180] = 129, + [181] = 112, + [182] = 126, + [183] = 133, + [184] = 116, + [185] = 130, + [186] = 117, + [187] = 132, [188] = 124, - [189] = 129, - [190] = 113, - [191] = 131, - [192] = 132, - [193] = 114, - [194] = 133, - [195] = 117, - [196] = 101, - [197] = 120, - [198] = 118, - [199] = 103, - [200] = 121, - [201] = 104, - [202] = 150, - [203] = 139, + [189] = 93, + [190] = 127, + [191] = 121, + [192] = 122, + [193] = 125, + [194] = 103, + [195] = 104, + [196] = 119, + [197] = 97, + [198] = 131, + [199] = 114, + [200] = 98, + [201] = 100, + [202] = 134, + [203] = 154, [204] = 90, - [205] = 153, - [206] = 159, - [207] = 140, - [208] = 160, - [209] = 144, - [210] = 90, - [211] = 155, - [212] = 142, - [213] = 147, + [205] = 137, + [206] = 157, + [207] = 156, + [208] = 144, + [209] = 158, + [210] = 148, + [211] = 135, + [212] = 212, + [213] = 90, [214] = 146, - [215] = 135, - [216] = 138, - [217] = 152, - [218] = 137, - [219] = 151, - [220] = 145, - [221] = 156, - [222] = 157, - [223] = 136, - [224] = 158, - [225] = 154, - [226] = 134, - [227] = 148, - [228] = 90, - [229] = 141, - [230] = 143, - [231] = 132, - [232] = 118, - [233] = 109, - [234] = 114, - [235] = 110, - [236] = 113, - [237] = 111, - [238] = 91, - [239] = 121, - [240] = 118, - [241] = 116, - [242] = 119, - [243] = 120, - [244] = 133, - [245] = 99, - [246] = 95, - [247] = 115, - [248] = 112, - [249] = 99, - [250] = 108, - [251] = 92, - [252] = 92, - [253] = 97, - [254] = 98, - [255] = 108, - [256] = 109, - [257] = 110, - [258] = 111, - [259] = 91, - [260] = 131, - [261] = 132, - [262] = 116, - [263] = 99, - [264] = 119, - [265] = 93, - [266] = 120, - [267] = 112, - [268] = 115, - [269] = 95, - [270] = 133, - [271] = 96, - [272] = 97, - [273] = 98, - [274] = 100, - [275] = 102, - [276] = 129, - [277] = 122, - [278] = 102, - [279] = 131, - [280] = 129, - [281] = 128, - [282] = 106, - [283] = 127, - [284] = 126, - [285] = 106, - [286] = 107, - [287] = 125, - [288] = 122, - [289] = 107, - [290] = 130, - [291] = 121, - [292] = 117, - [293] = 130, - [294] = 117, - [295] = 104, - [296] = 124, - [297] = 125, - [298] = 126, - [299] = 101, - [300] = 103, - [301] = 114, - [302] = 104, - [303] = 113, - [304] = 304, - [305] = 104, - [306] = 124, - [307] = 127, - [308] = 113, - [309] = 114, - [310] = 117, - [311] = 103, - [312] = 118, - [313] = 121, - [314] = 304, - [315] = 123, - [316] = 122, - [317] = 125, - [318] = 126, - [319] = 103, - [320] = 127, - [321] = 128, - [322] = 129, - [323] = 101, - [324] = 123, - [325] = 131, - [326] = 124, - [327] = 132, - [328] = 133, - [329] = 130, + [215] = 138, + [216] = 90, + [217] = 212, + [218] = 150, + [219] = 159, + [220] = 151, + [221] = 152, + [222] = 149, + [223] = 145, + [224] = 141, + [225] = 153, + [226] = 147, + [227] = 160, + [228] = 143, + [229] = 136, + [230] = 155, + [231] = 142, + [232] = 140, + [233] = 101, + [234] = 129, + [235] = 96, + [236] = 94, + [237] = 108, + [238] = 121, + [239] = 107, + [240] = 107, + [241] = 131, + [242] = 108, + [243] = 117, + [244] = 116, + [245] = 109, + [246] = 110, + [247] = 94, + [248] = 92, + [249] = 91, + [250] = 130, + [251] = 124, + [252] = 115, + [253] = 118, + [254] = 120, + [255] = 125, + [256] = 132, + [257] = 133, + [258] = 126, + [259] = 109, + [260] = 110, + [261] = 118, + [262] = 115, + [263] = 122, + [264] = 97, + [265] = 129, + [266] = 91, + [267] = 128, + [268] = 92, + [269] = 94, + [270] = 95, + [271] = 100, + [272] = 131, + [273] = 96, + [274] = 99, + [275] = 125, + [276] = 120, + [277] = 101, + [278] = 119, + [279] = 97, + [280] = 112, + [281] = 122, + [282] = 114, + [283] = 111, + [284] = 100, + [285] = 130, + [286] = 124, + [287] = 121, + [288] = 117, + [289] = 98, + [290] = 102, + [291] = 93, + [292] = 128, + [293] = 116, + [294] = 99, + [295] = 119, + [296] = 104, + [297] = 103, + [298] = 114, + [299] = 98, + [300] = 102, + [301] = 127, + [302] = 105, + [303] = 106, + [304] = 104, + [305] = 105, + [306] = 126, + [307] = 133, + [308] = 127, + [309] = 103, + [310] = 104, + [311] = 105, + [312] = 102, + [313] = 98, + [314] = 106, + [315] = 132, + [316] = 116, + [317] = 117, + [318] = 121, + [319] = 122, + [320] = 97, + [321] = 131, + [322] = 100, + [323] = 128, + [324] = 129, + [325] = 103, + [326] = 126, + [327] = 133, + [328] = 132, + [329] = 125, [330] = 120, - [331] = 119, - [332] = 116, - [333] = 107, - [334] = 91, - [335] = 111, - [336] = 110, - [337] = 109, - [338] = 108, - [339] = 106, - [340] = 101, - [341] = 92, - [342] = 128, - [343] = 123, - [344] = 102, - [345] = 96, - [346] = 100, - [347] = 98, - [348] = 97, - [349] = 96, - [350] = 95, - [351] = 115, - [352] = 112, - [353] = 93, - [354] = 139, - [355] = 136, - [356] = 158, - [357] = 150, - [358] = 159, - [359] = 157, - [360] = 155, - [361] = 153, - [362] = 158, - [363] = 142, - [364] = 141, - [365] = 147, - [366] = 146, - [367] = 135, - [368] = 152, - [369] = 151, - [370] = 145, - [371] = 137, - [372] = 134, - [373] = 148, - [374] = 143, - [375] = 138, - [376] = 139, - [377] = 138, - [378] = 137, - [379] = 140, - [380] = 143, - [381] = 136, + [331] = 118, + [332] = 115, + [333] = 91, + [334] = 92, + [335] = 114, + [336] = 111, + [337] = 110, + [338] = 109, + [339] = 119, + [340] = 108, + [341] = 112, + [342] = 107, + [343] = 127, + [344] = 111, + [345] = 106, + [346] = 93, + [347] = 124, + [348] = 130, + [349] = 112, + [350] = 101, + [351] = 99, + [352] = 96, + [353] = 95, + [354] = 147, + [355] = 151, + [356] = 159, + [357] = 357, + [358] = 358, + [359] = 358, + [360] = 358, + [361] = 361, + [362] = 357, + [363] = 363, + [364] = 358, + [365] = 365, + [366] = 366, + [367] = 365, + [368] = 366, + [369] = 156, + [370] = 363, + [371] = 357, + [372] = 144, + [373] = 138, + [374] = 366, + [375] = 158, + [376] = 376, + [377] = 146, + [378] = 365, + [379] = 212, + [380] = 156, + [381] = 363, [382] = 148, - [383] = 134, - [384] = 145, - [385] = 151, - [386] = 159, - [387] = 152, - [388] = 135, - [389] = 157, - [390] = 156, - [391] = 160, - [392] = 155, - [393] = 141, - [394] = 154, - [395] = 153, - [396] = 142, - [397] = 140, - [398] = 150, - [399] = 147, - [400] = 146, - [401] = 160, - [402] = 144, - [403] = 144, - [404] = 154, - [405] = 156, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 407, - [411] = 154, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 408, - [417] = 415, - [418] = 408, - [419] = 408, - [420] = 415, - [421] = 407, - [422] = 413, - [423] = 414, - [424] = 407, - [425] = 413, - [426] = 414, - [427] = 412, - [428] = 409, - [429] = 406, - [430] = 409, - [431] = 412, - [432] = 415, - [433] = 412, - [434] = 412, - [435] = 304, - [436] = 414, - [437] = 414, - [438] = 412, - [439] = 409, - [440] = 413, - [441] = 406, - [442] = 409, - [443] = 413, - [444] = 415, - [445] = 413, - [446] = 406, - [447] = 409, - [448] = 408, - [449] = 407, - [450] = 407, - [451] = 408, - [452] = 406, - [453] = 414, - [454] = 415, - [455] = 150, - [456] = 134, - [457] = 304, - [458] = 155, - [459] = 136, - [460] = 157, - [461] = 137, - [462] = 462, - [463] = 135, - [464] = 138, - [465] = 139, - [466] = 160, - [467] = 144, - [468] = 140, - [469] = 153, - [470] = 470, - [471] = 145, - [472] = 156, - [473] = 159, - [474] = 143, - [475] = 148, - [476] = 152, - [477] = 141, - [478] = 147, - [479] = 151, - [480] = 146, - [481] = 142, + [383] = 144, + [384] = 376, + [385] = 153, + [386] = 160, + [387] = 135, + [388] = 157, + [389] = 134, + [390] = 136, + [391] = 155, + [392] = 154, + [393] = 358, + [394] = 361, + [395] = 395, + [396] = 158, + [397] = 152, + [398] = 149, + [399] = 145, + [400] = 137, + [401] = 157, + [402] = 135, + [403] = 148, + [404] = 146, + [405] = 138, + [406] = 159, + [407] = 137, + [408] = 147, + [409] = 143, + [410] = 151, + [411] = 142, + [412] = 150, + [413] = 140, + [414] = 395, + [415] = 361, + [416] = 357, + [417] = 376, + [418] = 361, + [419] = 395, + [420] = 395, + [421] = 363, + [422] = 365, + [423] = 366, + [424] = 357, + [425] = 361, + [426] = 395, + [427] = 357, + [428] = 141, + [429] = 150, + [430] = 395, + [431] = 376, + [432] = 361, + [433] = 153, + [434] = 141, + [435] = 160, + [436] = 376, + [437] = 140, + [438] = 366, + [439] = 134, + [440] = 363, + [441] = 142, + [442] = 143, + [443] = 136, + [444] = 155, + [445] = 145, + [446] = 149, + [447] = 152, + [448] = 363, + [449] = 365, + [450] = 366, + [451] = 365, + [452] = 376, + [453] = 154, + [454] = 159, + [455] = 146, + [456] = 212, + [457] = 147, + [458] = 136, + [459] = 137, + [460] = 151, + [461] = 153, + [462] = 135, + [463] = 156, + [464] = 160, + [465] = 157, + [466] = 144, + [467] = 467, + [468] = 134, + [469] = 138, + [470] = 145, + [471] = 149, + [472] = 472, + [473] = 143, + [474] = 155, + [475] = 158, + [476] = 150, + [477] = 142, + [478] = 154, + [479] = 148, + [480] = 140, + [481] = 152, [482] = 482, [483] = 483, - [484] = 482, + [484] = 483, [485] = 482, [486] = 482, - [487] = 483, - [488] = 482, - [489] = 482, + [487] = 482, + [488] = 483, + [489] = 483, [490] = 483, - [491] = 483, - [492] = 483, - [493] = 482, + [491] = 482, + [492] = 482, + [493] = 483, [494] = 483, [495] = 483, [496] = 482, - [497] = 483, - [498] = 498, + [497] = 482, + [498] = 212, [499] = 499, - [500] = 304, - [501] = 304, - [502] = 304, + [500] = 500, + [501] = 212, + [502] = 212, [503] = 90, - [504] = 304, + [504] = 212, [505] = 505, [506] = 506, [507] = 506, @@ -3623,8 +3630,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [513] = 506, [514] = 506, [515] = 506, - [516] = 506, - [517] = 517, + [516] = 516, + [517] = 506, [518] = 518, [519] = 519, [520] = 520, @@ -3643,245 +3650,245 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [533] = 531, [534] = 534, [535] = 535, - [536] = 535, - [537] = 534, - [538] = 538, - [539] = 535, - [540] = 540, + [536] = 536, + [537] = 536, + [538] = 535, + [539] = 539, + [540] = 535, [541] = 535, - [542] = 534, - [543] = 534, + [542] = 536, + [543] = 536, [544] = 544, [545] = 545, - [546] = 546, + [546] = 545, [547] = 547, - [548] = 548, - [549] = 547, - [550] = 544, - [551] = 544, - [552] = 552, - [553] = 553, - [554] = 547, - [555] = 544, - [556] = 547, + [548] = 545, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 544, + [553] = 545, + [554] = 544, + [555] = 555, + [556] = 544, [557] = 557, [558] = 557, - [559] = 552, + [559] = 555, [560] = 560, [561] = 561, [562] = 562, - [563] = 561, - [564] = 564, - [565] = 552, + [563] = 563, + [564] = 562, + [565] = 562, [566] = 566, [567] = 567, [568] = 568, - [569] = 569, - [570] = 552, - [571] = 561, - [572] = 561, + [569] = 562, + [570] = 562, + [571] = 567, + [572] = 567, [573] = 573, [574] = 574, [575] = 575, - [576] = 576, - [577] = 576, - [578] = 576, - [579] = 579, - [580] = 576, - [581] = 561, + [576] = 562, + [577] = 577, + [578] = 562, + [579] = 567, + [580] = 580, + [581] = 581, [582] = 582, - [583] = 583, - [584] = 584, + [583] = 567, + [584] = 562, [585] = 585, - [586] = 561, - [587] = 576, - [588] = 561, + [586] = 555, + [587] = 587, + [588] = 587, [589] = 589, [590] = 590, - [591] = 561, + [591] = 591, [592] = 592, - [593] = 593, + [593] = 555, [594] = 594, [595] = 595, - [596] = 592, - [597] = 597, + [596] = 596, + [597] = 587, [598] = 598, [599] = 599, - [600] = 592, + [600] = 587, [601] = 601, - [602] = 602, + [602] = 587, [603] = 603, - [604] = 592, - [605] = 592, - [606] = 592, - [607] = 607, - [608] = 592, - [609] = 609, - [610] = 592, + [604] = 587, + [605] = 587, + [606] = 606, + [607] = 587, + [608] = 608, + [609] = 589, + [610] = 610, [611] = 611, [612] = 612, - [613] = 611, + [613] = 613, [614] = 614, [615] = 615, [616] = 616, [617] = 617, [618] = 618, - [619] = 614, + [619] = 619, [620] = 620, - [621] = 621, + [621] = 613, [622] = 622, [623] = 623, [624] = 624, - [625] = 624, - [626] = 626, - [627] = 618, - [628] = 617, + [625] = 613, + [626] = 620, + [627] = 627, + [628] = 628, [629] = 629, [630] = 630, - [631] = 631, - [632] = 632, - [633] = 617, - [634] = 634, - [635] = 635, - [636] = 614, - [637] = 620, - [638] = 621, - [639] = 622, - [640] = 623, - [641] = 624, - [642] = 622, - [643] = 517, - [644] = 621, - [645] = 620, - [646] = 614, - [647] = 631, - [648] = 618, - [649] = 617, - [650] = 634, - [651] = 631, - [652] = 626, - [653] = 653, + [631] = 620, + [632] = 613, + [633] = 623, + [634] = 622, + [635] = 617, + [636] = 616, + [637] = 615, + [638] = 638, + [639] = 639, + [640] = 617, + [641] = 622, + [642] = 642, + [643] = 630, + [644] = 644, + [645] = 629, + [646] = 628, + [647] = 623, + [648] = 615, + [649] = 649, + [650] = 620, + [651] = 639, + [652] = 622, + [653] = 649, [654] = 654, - [655] = 615, - [656] = 618, - [657] = 653, - [658] = 658, - [659] = 632, - [660] = 617, - [661] = 654, - [662] = 662, - [663] = 663, - [664] = 654, - [665] = 634, - [666] = 615, - [667] = 654, - [668] = 653, - [669] = 626, - [670] = 626, - [671] = 618, - [672] = 663, - [673] = 623, - [674] = 632, - [675] = 615, - [676] = 663, - [677] = 622, - [678] = 620, - [679] = 679, - [680] = 653, - [681] = 681, - [682] = 663, - [683] = 654, - [684] = 662, - [685] = 621, - [686] = 615, - [687] = 632, - [688] = 626, - [689] = 663, - [690] = 690, - [691] = 691, - [692] = 658, - [693] = 624, - [694] = 623, - [695] = 690, - [696] = 622, - [697] = 621, - [698] = 626, - [699] = 620, - [700] = 614, - [701] = 618, - [702] = 617, - [703] = 654, - [704] = 631, - [705] = 634, - [706] = 615, - [707] = 623, - [708] = 631, - [709] = 624, + [655] = 655, + [656] = 656, + [657] = 644, + [658] = 644, + [659] = 630, + [660] = 614, + [661] = 661, + [662] = 617, + [663] = 642, + [664] = 639, + [665] = 642, + [666] = 642, + [667] = 644, + [668] = 616, + [669] = 629, + [670] = 642, + [671] = 615, + [672] = 628, + [673] = 630, + [674] = 628, + [675] = 656, + [676] = 676, + [677] = 654, + [678] = 654, + [679] = 655, + [680] = 680, + [681] = 616, + [682] = 616, + [683] = 629, + [684] = 639, + [685] = 649, + [686] = 655, + [687] = 629, + [688] = 615, + [689] = 630, + [690] = 616, + [691] = 617, + [692] = 622, + [693] = 623, + [694] = 613, + [695] = 620, + [696] = 628, + [697] = 614, + [698] = 639, + [699] = 630, + [700] = 629, + [701] = 701, + [702] = 628, + [703] = 627, + [704] = 614, + [705] = 620, + [706] = 644, + [707] = 654, + [708] = 614, + [709] = 614, [710] = 710, - [711] = 658, - [712] = 653, - [713] = 654, - [714] = 662, - [715] = 632, - [716] = 631, - [717] = 626, - [718] = 690, - [719] = 653, - [720] = 632, - [721] = 632, - [722] = 634, - [723] = 634, - [724] = 634, - [725] = 663, - [726] = 631, - [727] = 615, - [728] = 631, - [729] = 634, - [730] = 617, - [731] = 618, - [732] = 614, - [733] = 620, - [734] = 621, - [735] = 622, - [736] = 623, - [737] = 624, - [738] = 738, - [739] = 658, - [740] = 624, - [741] = 623, - [742] = 742, - [743] = 654, - [744] = 744, - [745] = 622, - [746] = 630, - [747] = 621, - [748] = 635, - [749] = 632, + [711] = 614, + [712] = 654, + [713] = 713, + [714] = 714, + [715] = 615, + [716] = 613, + [717] = 623, + [718] = 622, + [719] = 617, + [720] = 622, + [721] = 623, + [722] = 615, + [723] = 613, + [724] = 620, + [725] = 656, + [726] = 630, + [727] = 642, + [728] = 628, + [729] = 629, + [730] = 630, + [731] = 620, + [732] = 613, + [733] = 623, + [734] = 622, + [735] = 617, + [736] = 616, + [737] = 615, + [738] = 629, + [739] = 649, + [740] = 628, + [741] = 614, + [742] = 654, + [743] = 639, + [744] = 642, + [745] = 644, + [746] = 639, + [747] = 639, + [748] = 642, + [749] = 655, [750] = 617, - [751] = 618, - [752] = 742, - [753] = 662, - [754] = 653, - [755] = 614, - [756] = 615, - [757] = 626, - [758] = 620, - [759] = 614, - [760] = 679, - [761] = 620, - [762] = 624, - [763] = 621, - [764] = 623, - [765] = 653, - [766] = 622, + [751] = 624, + [752] = 644, + [753] = 680, + [754] = 644, + [755] = 616, + [756] = 680, + [757] = 654, + [758] = 656, + [759] = 623, + [760] = 710, + [761] = 656, + [762] = 714, + [763] = 654, + [764] = 764, + [765] = 656, + [766] = 516, [767] = 767, - [768] = 767, - [769] = 769, - [770] = 767, + [768] = 768, + [769] = 767, + [770] = 770, [771] = 767, [772] = 767, [773] = 773, - [774] = 774, + [774] = 767, [775] = 775, [776] = 776, [777] = 777, @@ -3895,99 +3902,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [785] = 785, [786] = 786, [787] = 787, - [788] = 788, - [789] = 499, - [790] = 498, - [791] = 791, - [792] = 791, + [788] = 499, + [789] = 789, + [790] = 789, + [791] = 500, + [792] = 792, [793] = 793, - [794] = 794, + [794] = 793, [795] = 795, - [796] = 796, + [796] = 793, [797] = 797, [798] = 798, [799] = 799, [800] = 800, - [801] = 801, - [802] = 802, + [801] = 800, + [802] = 800, [803] = 803, - [804] = 794, - [805] = 803, - [806] = 806, - [807] = 793, - [808] = 808, + [804] = 797, + [805] = 805, + [806] = 800, + [807] = 807, + [808] = 803, [809] = 809, - [810] = 810, + [810] = 797, [811] = 811, - [812] = 794, - [813] = 793, - [814] = 803, - [815] = 815, - [816] = 801, - [817] = 801, - [818] = 794, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 793, + [816] = 803, + [817] = 803, + [818] = 818, [819] = 819, [820] = 820, - [821] = 793, - [822] = 822, - [823] = 793, + [821] = 821, + [822] = 803, + [823] = 823, [824] = 824, - [825] = 801, - [826] = 803, - [827] = 803, - [828] = 801, - [829] = 794, + [825] = 793, + [826] = 826, + [827] = 800, + [828] = 797, + [829] = 797, [830] = 830, - [831] = 831, + [831] = 775, [832] = 832, [833] = 833, [834] = 834, [835] = 835, [836] = 836, [837] = 837, - [838] = 775, + [838] = 838, [839] = 839, - [840] = 840, + [840] = 792, [841] = 841, [842] = 842, [843] = 843, [844] = 844, - [845] = 769, + [845] = 845, [846] = 773, - [847] = 774, + [847] = 768, [848] = 775, - [849] = 776, - [850] = 775, + [849] = 770, + [850] = 850, [851] = 775, - [852] = 852, - [853] = 853, + [852] = 792, + [853] = 775, [854] = 854, - [855] = 853, - [856] = 854, - [857] = 778, - [858] = 777, - [859] = 853, - [860] = 854, - [861] = 853, - [862] = 854, - [863] = 853, - [864] = 854, - [865] = 865, - [866] = 865, + [855] = 854, + [856] = 856, + [857] = 856, + [858] = 776, + [859] = 854, + [860] = 777, + [861] = 854, + [862] = 856, + [863] = 854, + [864] = 856, + [865] = 856, + [866] = 866, [867] = 867, - [868] = 865, - [869] = 865, - [870] = 870, - [871] = 865, + [868] = 868, + [869] = 869, + [870] = 867, + [871] = 867, [872] = 872, - [873] = 873, - [874] = 865, - [875] = 875, + [873] = 867, + [874] = 867, + [875] = 867, [876] = 876, [877] = 877, [878] = 878, - [879] = 879, - [880] = 775, + [879] = 775, + [880] = 880, [881] = 881, [882] = 882, [883] = 883, @@ -3995,198 +4002,198 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [885] = 885, [886] = 886, [887] = 887, - [888] = 887, - [889] = 886, - [890] = 836, - [891] = 876, - [892] = 882, - [893] = 875, - [894] = 884, - [895] = 877, - [896] = 878, - [897] = 879, - [898] = 881, - [899] = 899, - [900] = 885, - [901] = 901, - [902] = 833, - [903] = 883, - [904] = 839, - [905] = 841, - [906] = 837, - [907] = 886, - [908] = 842, - [909] = 875, - [910] = 901, - [911] = 877, - [912] = 843, - [913] = 876, - [914] = 832, - [915] = 831, - [916] = 878, - [917] = 879, - [918] = 881, - [919] = 882, - [920] = 884, - [921] = 835, - [922] = 885, - [923] = 887, - [924] = 883, - [925] = 780, - [926] = 798, - [927] = 799, - [928] = 820, - [929] = 824, - [930] = 930, + [888] = 888, + [889] = 885, + [890] = 878, + [891] = 884, + [892] = 887, + [893] = 839, + [894] = 894, + [895] = 895, + [896] = 838, + [897] = 836, + [898] = 886, + [899] = 881, + [900] = 835, + [901] = 880, + [902] = 883, + [903] = 877, + [904] = 888, + [905] = 876, + [906] = 882, + [907] = 894, + [908] = 884, + [909] = 877, + [910] = 845, + [911] = 837, + [912] = 842, + [913] = 844, + [914] = 885, + [915] = 834, + [916] = 882, + [917] = 876, + [918] = 878, + [919] = 886, + [920] = 881, + [921] = 887, + [922] = 880, + [923] = 888, + [924] = 832, + [925] = 883, + [926] = 926, + [927] = 927, + [928] = 814, + [929] = 821, + [930] = 146, [931] = 931, - [932] = 806, - [933] = 815, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 784, - [938] = 779, - [939] = 939, - [940] = 800, - [941] = 819, - [942] = 942, - [943] = 808, - [944] = 788, - [945] = 783, - [946] = 787, - [947] = 785, + [932] = 932, + [933] = 798, + [934] = 830, + [935] = 789, + [936] = 785, + [937] = 159, + [938] = 778, + [939] = 138, + [940] = 894, + [941] = 783, + [942] = 826, + [943] = 782, + [944] = 786, + [945] = 819, + [946] = 946, + [947] = 805, [948] = 811, - [949] = 781, - [950] = 160, - [951] = 782, - [952] = 901, - [953] = 802, - [954] = 795, - [955] = 140, - [956] = 786, - [957] = 796, - [958] = 958, - [959] = 959, + [949] = 818, + [950] = 784, + [951] = 779, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 812, + [956] = 813, + [957] = 781, + [958] = 780, + [959] = 820, [960] = 960, - [961] = 791, - [962] = 150, - [963] = 830, - [964] = 810, - [965] = 809, - [966] = 966, - [967] = 156, - [968] = 968, - [969] = 154, - [970] = 144, - [971] = 971, - [972] = 876, - [973] = 882, - [974] = 934, - [975] = 975, - [976] = 976, - [977] = 930, - [978] = 150, - [979] = 156, - [980] = 154, - [981] = 140, - [982] = 931, - [983] = 886, - [984] = 144, - [985] = 835, - [986] = 986, - [987] = 883, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 823, + [965] = 824, + [966] = 809, + [967] = 137, + [968] = 807, + [969] = 157, + [970] = 135, + [971] = 787, + [972] = 972, + [973] = 157, + [974] = 137, + [975] = 135, + [976] = 146, + [977] = 138, + [978] = 159, + [979] = 882, + [980] = 844, + [981] = 842, + [982] = 982, + [983] = 983, + [984] = 834, + [985] = 832, + [986] = 845, + [987] = 987, [988] = 988, - [989] = 885, - [990] = 881, - [991] = 879, - [992] = 878, - [993] = 877, - [994] = 837, - [995] = 875, - [996] = 996, - [997] = 884, - [998] = 968, - [999] = 831, - [1000] = 832, - [1001] = 887, - [1002] = 842, - [1003] = 160, - [1004] = 966, - [1005] = 843, - [1006] = 960, + [989] = 927, + [990] = 990, + [991] = 837, + [992] = 992, + [993] = 926, + [994] = 931, + [995] = 872, + [996] = 932, + [997] = 885, + [998] = 884, + [999] = 963, + [1000] = 962, + [1001] = 961, + [1002] = 960, + [1003] = 954, + [1004] = 1004, + [1005] = 953, + [1006] = 952, [1007] = 1007, - [1008] = 1008, - [1009] = 935, - [1010] = 936, - [1011] = 939, - [1012] = 873, - [1013] = 959, - [1014] = 1014, - [1015] = 942, - [1016] = 958, - [1017] = 1017, - [1018] = 498, + [1008] = 946, + [1009] = 886, + [1010] = 878, + [1011] = 876, + [1012] = 888, + [1013] = 877, + [1014] = 883, + [1015] = 880, + [1016] = 887, + [1017] = 881, + [1018] = 1018, [1019] = 777, - [1020] = 901, - [1021] = 778, - [1022] = 499, - [1023] = 934, + [1020] = 499, + [1021] = 894, + [1022] = 776, + [1023] = 500, [1024] = 1024, - [1025] = 958, - [1026] = 1026, - [1027] = 959, - [1028] = 930, - [1029] = 140, - [1030] = 160, - [1031] = 144, - [1032] = 154, - [1033] = 156, - [1034] = 150, - [1035] = 931, - [1036] = 934, - [1037] = 1037, - [1038] = 942, - [1039] = 1039, - [1040] = 930, - [1041] = 931, - [1042] = 968, - [1043] = 966, - [1044] = 959, - [1045] = 958, - [1046] = 1024, - [1047] = 939, - [1048] = 936, - [1049] = 935, - [1050] = 140, - [1051] = 960, - [1052] = 160, - [1053] = 144, + [1025] = 954, + [1026] = 146, + [1027] = 962, + [1028] = 138, + [1029] = 1029, + [1030] = 138, + [1031] = 926, + [1032] = 931, + [1033] = 159, + [1034] = 946, + [1035] = 1035, + [1036] = 927, + [1037] = 932, + [1038] = 952, + [1039] = 963, + [1040] = 953, + [1041] = 1041, + [1042] = 954, + [1043] = 1043, + [1044] = 960, + [1045] = 961, + [1046] = 961, + [1047] = 962, + [1048] = 1048, + [1049] = 1049, + [1050] = 146, + [1051] = 963, + [1052] = 137, + [1053] = 1053, [1054] = 1054, - [1055] = 942, + [1055] = 1055, [1056] = 1056, - [1057] = 1057, - [1058] = 960, - [1059] = 154, - [1060] = 156, - [1061] = 935, - [1062] = 1062, - [1063] = 968, - [1064] = 1064, - [1065] = 1024, + [1057] = 932, + [1058] = 931, + [1059] = 926, + [1060] = 960, + [1061] = 135, + [1062] = 157, + [1063] = 1035, + [1064] = 135, + [1065] = 137, [1066] = 1066, - [1067] = 936, + [1067] = 1035, [1068] = 1068, - [1069] = 1024, - [1070] = 1070, - [1071] = 1024, - [1072] = 966, - [1073] = 1073, - [1074] = 1074, - [1075] = 939, - [1076] = 150, + [1069] = 159, + [1070] = 953, + [1071] = 952, + [1072] = 1072, + [1073] = 157, + [1074] = 946, + [1075] = 1035, + [1076] = 1076, [1077] = 1077, - [1078] = 1078, - [1079] = 1079, + [1078] = 927, + [1079] = 1035, [1080] = 1080, [1081] = 1081, [1082] = 1082, @@ -4200,7 +4207,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1090] = 1090, [1091] = 1091, [1092] = 1092, - [1093] = 1093, + [1093] = 106, [1094] = 1094, [1095] = 1095, [1096] = 1096, @@ -4220,7 +4227,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1110] = 1110, [1111] = 1111, [1112] = 1112, - [1113] = 123, + [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, @@ -4231,66 +4238,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1121] = 1121, [1122] = 1122, [1123] = 1123, - [1124] = 1124, - [1125] = 1123, - [1126] = 1126, - [1127] = 1123, - [1128] = 1123, + [1124] = 1123, + [1125] = 1125, + [1126] = 1123, + [1127] = 1127, + [1128] = 1128, [1129] = 1123, - [1130] = 877, - [1131] = 878, - [1132] = 879, - [1133] = 885, - [1134] = 881, - [1135] = 883, - [1136] = 886, - [1137] = 882, - [1138] = 884, - [1139] = 1139, - [1140] = 887, - [1141] = 875, - [1142] = 876, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1144, - [1147] = 886, - [1148] = 883, - [1149] = 887, - [1150] = 885, - [1151] = 1144, + [1130] = 1123, + [1131] = 882, + [1132] = 887, + [1133] = 886, + [1134] = 884, + [1135] = 1135, + [1136] = 878, + [1137] = 885, + [1138] = 1138, + [1139] = 881, + [1140] = 883, + [1141] = 877, + [1142] = 888, + [1143] = 876, + [1144] = 880, + [1145] = 888, + [1146] = 884, + [1147] = 880, + [1148] = 882, + [1149] = 1149, + [1150] = 876, + [1151] = 106, [1152] = 881, - [1153] = 879, - [1154] = 1144, - [1155] = 878, - [1156] = 1156, - [1157] = 877, - [1158] = 123, - [1159] = 875, - [1160] = 876, - [1161] = 1144, - [1162] = 884, - [1163] = 882, - [1164] = 1164, - [1165] = 1165, + [1153] = 885, + [1154] = 1149, + [1155] = 883, + [1156] = 1149, + [1157] = 878, + [1158] = 1149, + [1159] = 877, + [1160] = 1160, + [1161] = 887, + [1162] = 1162, + [1163] = 1163, + [1164] = 1149, + [1165] = 886, [1166] = 1166, - [1167] = 887, + [1167] = 881, [1168] = 886, - [1169] = 1143, - [1170] = 1170, - [1171] = 876, - [1172] = 882, - [1173] = 875, - [1174] = 1174, - [1175] = 877, - [1176] = 878, - [1177] = 879, - [1178] = 881, - [1179] = 885, + [1169] = 1169, + [1170] = 885, + [1171] = 880, + [1172] = 878, + [1173] = 1173, + [1174] = 887, + [1175] = 1135, + [1176] = 884, + [1177] = 882, + [1178] = 883, + [1179] = 1179, [1180] = 1180, - [1181] = 884, - [1182] = 883, - [1183] = 1183, + [1181] = 877, + [1182] = 888, + [1183] = 876, [1184] = 1184, [1185] = 1185, [1186] = 1186, @@ -4301,122 +4308,122 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1191] = 1191, [1192] = 1192, [1193] = 1193, - [1194] = 1194, - [1195] = 1192, - [1196] = 1194, - [1197] = 1193, - [1198] = 1198, - [1199] = 1199, - [1200] = 1191, - [1201] = 883, - [1202] = 875, + [1194] = 1192, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1193, + [1199] = 1196, + [1200] = 1197, + [1201] = 1201, + [1202] = 1202, [1203] = 1203, - [1204] = 1204, - [1205] = 1204, - [1206] = 878, - [1207] = 879, - [1208] = 1208, - [1209] = 881, - [1210] = 1210, + [1204] = 885, + [1205] = 1202, + [1206] = 1202, + [1207] = 1207, + [1208] = 1202, + [1209] = 1209, + [1210] = 886, [1211] = 1211, [1212] = 1212, [1213] = 1213, - [1214] = 885, - [1215] = 886, - [1216] = 1211, + [1214] = 1135, + [1215] = 878, + [1216] = 881, [1217] = 1217, - [1218] = 882, + [1218] = 1218, [1219] = 1212, - [1220] = 877, - [1221] = 1221, - [1222] = 1222, - [1223] = 1203, - [1224] = 1143, + [1220] = 1217, + [1221] = 1217, + [1222] = 882, + [1223] = 1223, + [1224] = 887, [1225] = 1217, - [1226] = 1221, - [1227] = 1204, - [1228] = 1228, - [1229] = 1204, - [1230] = 1221, + [1226] = 1217, + [1227] = 1212, + [1228] = 1207, + [1229] = 1229, + [1230] = 1202, [1231] = 1231, - [1232] = 1211, - [1233] = 1217, - [1234] = 1231, - [1235] = 1235, - [1236] = 876, + [1232] = 1212, + [1233] = 1207, + [1234] = 1207, + [1235] = 876, + [1236] = 888, [1237] = 1237, - [1238] = 1217, - [1239] = 1239, - [1240] = 1240, - [1241] = 1212, - [1242] = 1213, - [1243] = 1217, + [1238] = 877, + [1239] = 1237, + [1240] = 880, + [1241] = 1229, + [1242] = 884, + [1243] = 1207, [1244] = 1244, - [1245] = 1245, - [1246] = 1212, - [1247] = 1211, - [1248] = 1248, - [1249] = 884, + [1245] = 1203, + [1246] = 1246, + [1247] = 1247, + [1248] = 883, + [1249] = 1229, [1250] = 1250, [1251] = 1251, - [1252] = 1204, - [1253] = 1253, - [1254] = 1211, - [1255] = 1212, + [1252] = 1252, + [1253] = 1244, + [1254] = 1254, + [1255] = 1255, [1256] = 1256, [1257] = 1257, [1258] = 1258, [1259] = 1259, [1260] = 1260, - [1261] = 887, + [1261] = 1212, [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, [1266] = 1266, [1267] = 1267, - [1268] = 1267, + [1268] = 1268, [1269] = 1269, [1270] = 1270, - [1271] = 1271, - [1272] = 1267, + [1271] = 1265, + [1272] = 1272, [1273] = 1273, - [1274] = 1271, - [1275] = 1275, + [1274] = 1274, + [1275] = 850, [1276] = 1276, - [1277] = 1267, + [1277] = 1276, [1278] = 1278, [1279] = 1279, [1280] = 1280, [1281] = 1281, - [1282] = 1271, - [1283] = 1283, - [1284] = 1267, - [1285] = 1271, - [1286] = 1286, + [1282] = 1268, + [1283] = 1265, + [1284] = 1274, + [1285] = 1268, + [1286] = 1268, [1287] = 1287, - [1288] = 1288, - [1289] = 1267, - [1290] = 1263, - [1291] = 1291, - [1292] = 1267, + [1288] = 1265, + [1289] = 1289, + [1290] = 1265, + [1291] = 1265, + [1292] = 1265, [1293] = 1293, - [1294] = 1270, - [1295] = 1271, - [1296] = 852, + [1294] = 1268, + [1295] = 1295, + [1296] = 1265, [1297] = 1297, - [1298] = 1271, - [1299] = 1267, - [1300] = 1291, - [1301] = 1126, + [1298] = 1268, + [1299] = 1299, + [1300] = 1300, + [1301] = 1299, [1302] = 1302, [1303] = 1303, - [1304] = 1139, - [1305] = 1305, - [1306] = 1180, + [1304] = 1127, + [1305] = 1138, + [1306] = 1306, [1307] = 1166, - [1308] = 1170, - [1309] = 1309, + [1308] = 1169, + [1309] = 1179, [1310] = 1310, [1311] = 1311, [1312] = 1312, @@ -4424,223 +4431,223 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1090, + [1317] = 1317, [1318] = 1318, [1319] = 1319, [1320] = 1320, - [1321] = 1321, + [1321] = 1103, [1322] = 1322, - [1323] = 1323, + [1323] = 1086, [1324] = 1324, - [1325] = 1080, + [1325] = 1325, [1326] = 1326, [1327] = 1327, - [1328] = 1327, - [1329] = 1326, - [1330] = 1327, - [1331] = 1324, - [1332] = 1326, - [1333] = 1333, + [1328] = 1328, + [1329] = 1327, + [1330] = 1328, + [1331] = 1328, + [1332] = 1320, + [1333] = 1327, [1334] = 1334, - [1335] = 806, + [1335] = 1335, [1336] = 1336, - [1337] = 1337, + [1337] = 1335, [1338] = 1338, [1339] = 1339, [1340] = 1340, - [1341] = 1337, - [1342] = 1338, - [1343] = 1343, - [1344] = 1336, + [1341] = 1341, + [1342] = 1335, + [1343] = 1334, + [1344] = 1344, [1345] = 1345, [1346] = 1346, - [1347] = 1339, + [1347] = 1347, [1348] = 1348, [1349] = 1349, [1350] = 1350, [1351] = 1351, [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1356, + [1353] = 1344, + [1354] = 1346, + [1355] = 1348, + [1356] = 1349, [1357] = 1357, - [1358] = 1348, - [1359] = 1351, + [1358] = 1358, + [1359] = 1334, [1360] = 1360, - [1361] = 1356, - [1362] = 1350, - [1363] = 1337, + [1361] = 1361, + [1362] = 798, + [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1355, - [1367] = 1367, - [1368] = 1368, - [1369] = 1369, - [1370] = 1370, - [1371] = 1371, + [1366] = 1366, + [1367] = 1364, + [1368] = 1361, + [1369] = 1363, + [1370] = 1365, + [1371] = 1366, [1372] = 1372, - [1373] = 1373, + [1373] = 1335, [1374] = 1374, [1375] = 1375, - [1376] = 1376, + [1376] = 1334, [1377] = 1377, [1378] = 1378, - [1379] = 1357, - [1380] = 1333, - [1381] = 1360, + [1379] = 1379, + [1380] = 1360, + [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, [1386] = 1386, [1387] = 1387, - [1388] = 1350, + [1388] = 1388, [1389] = 1389, - [1390] = 1352, + [1390] = 1390, [1391] = 1391, [1392] = 1392, - [1393] = 1337, - [1394] = 1337, + [1393] = 1393, + [1394] = 1335, [1395] = 1395, [1396] = 1396, - [1397] = 1350, - [1398] = 1346, - [1399] = 1354, + [1397] = 1397, + [1398] = 1382, + [1399] = 1341, [1400] = 1400, [1401] = 1401, - [1402] = 1090, - [1403] = 1403, - [1404] = 1085, - [1405] = 1367, - [1406] = 1406, - [1407] = 1368, - [1408] = 1371, - [1409] = 1403, - [1410] = 1410, - [1411] = 1400, - [1412] = 1392, - [1413] = 1372, - [1414] = 1374, - [1415] = 1375, - [1416] = 1334, - [1417] = 1376, - [1418] = 1418, - [1419] = 1109, - [1420] = 1377, - [1421] = 1400, - [1422] = 1378, + [1402] = 1388, + [1403] = 1390, + [1404] = 1391, + [1405] = 1405, + [1406] = 1392, + [1407] = 1407, + [1408] = 1336, + [1409] = 1385, + [1410] = 1405, + [1411] = 1345, + [1412] = 1401, + [1413] = 1413, + [1414] = 1383, + [1415] = 1086, + [1416] = 1375, + [1417] = 1405, + [1418] = 1400, + [1419] = 1386, + [1420] = 1420, + [1421] = 1405, + [1422] = 798, [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1365, - [1427] = 1364, - [1428] = 1369, - [1429] = 1079, - [1430] = 806, - [1431] = 1410, - [1432] = 1400, - [1433] = 1089, - [1434] = 1107, - [1435] = 1396, - [1436] = 1436, - [1437] = 1094, - [1438] = 1400, - [1439] = 1403, - [1440] = 1093, - [1441] = 1092, - [1442] = 1080, - [1443] = 1403, - [1444] = 1382, - [1445] = 1383, - [1446] = 1446, + [1424] = 1350, + [1425] = 1378, + [1426] = 1426, + [1427] = 1091, + [1428] = 1387, + [1429] = 1110, + [1430] = 1381, + [1431] = 1374, + [1432] = 1432, + [1433] = 1401, + [1434] = 1351, + [1435] = 1082, + [1436] = 1352, + [1437] = 1437, + [1438] = 1087, + [1439] = 1103, + [1440] = 1401, + [1441] = 1109, + [1442] = 1358, + [1443] = 1090, + [1444] = 1108, + [1445] = 1104, + [1446] = 1405, [1447] = 1447, [1448] = 1447, [1449] = 1447, [1450] = 1447, - [1451] = 1447, - [1452] = 1446, - [1453] = 1446, - [1454] = 1126, - [1455] = 1446, - [1456] = 1446, - [1457] = 1457, - [1458] = 1457, - [1459] = 1457, - [1460] = 1457, - [1461] = 1457, - [1462] = 1462, - [1463] = 1463, + [1451] = 1451, + [1452] = 1127, + [1453] = 1447, + [1454] = 1451, + [1455] = 1451, + [1456] = 1451, + [1457] = 1451, + [1458] = 1458, + [1459] = 1458, + [1460] = 1460, + [1461] = 1458, + [1462] = 1458, + [1463] = 1458, [1464] = 1464, - [1465] = 1464, + [1465] = 1465, [1466] = 1466, - [1467] = 1464, - [1468] = 1466, - [1469] = 1466, + [1467] = 1466, + [1468] = 1465, + [1469] = 1469, [1470] = 1466, - [1471] = 1464, - [1472] = 1464, - [1473] = 1473, - [1474] = 1474, - [1475] = 1474, - [1476] = 1474, - [1477] = 1474, - [1478] = 1474, - [1479] = 1479, + [1471] = 1465, + [1472] = 1466, + [1473] = 1466, + [1474] = 1465, + [1475] = 1475, + [1476] = 1475, + [1477] = 1475, + [1478] = 1478, + [1479] = 1475, [1480] = 1480, - [1481] = 1481, + [1481] = 1475, [1482] = 1482, [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 1482, + [1486] = 1486, [1487] = 1487, - [1488] = 1484, - [1489] = 1482, - [1490] = 1490, - [1491] = 1482, - [1492] = 1492, - [1493] = 1482, - [1494] = 1494, - [1495] = 1495, - [1496] = 1484, - [1497] = 1484, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1484, - [1502] = 1482, - [1503] = 1482, + [1488] = 1488, + [1489] = 1489, + [1490] = 1488, + [1491] = 1486, + [1492] = 1488, + [1493] = 1486, + [1494] = 1486, + [1495] = 1488, + [1496] = 1496, + [1497] = 1497, + [1498] = 1486, + [1499] = 1488, + [1500] = 1488, + [1501] = 1501, + [1502] = 1502, + [1503] = 1488, [1504] = 1504, - [1505] = 1504, - [1506] = 1506, - [1507] = 1504, - [1508] = 1504, - [1509] = 1509, + [1505] = 1505, + [1506] = 1505, + [1507] = 1507, + [1508] = 1505, + [1509] = 1505, [1510] = 1510, - [1511] = 1504, + [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1514, + [1514] = 1505, [1515] = 1515, [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 1521, - [1522] = 1517, - [1523] = 1523, + [1521] = 1518, + [1522] = 1522, + [1523] = 1518, [1524] = 1524, - [1525] = 1525, + [1525] = 1518, [1526] = 1526, - [1527] = 1517, + [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1517, - [1533] = 1517, + [1532] = 1532, + [1533] = 1518, [1534] = 1534, [1535] = 1535, [1536] = 1536, @@ -4658,22 +4665,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1548] = 1548, [1549] = 1549, [1550] = 1550, - [1551] = 1550, + [1551] = 1551, [1552] = 1552, [1553] = 1553, - [1554] = 1552, - [1555] = 1552, + [1554] = 1554, + [1555] = 1551, [1556] = 1556, - [1557] = 1557, - [1558] = 1552, - [1559] = 1559, - [1560] = 1553, - [1561] = 1552, + [1557] = 1556, + [1558] = 1553, + [1559] = 1551, + [1560] = 1551, + [1561] = 1553, [1562] = 1553, - [1563] = 1559, - [1564] = 1553, - [1565] = 1553, - [1566] = 1566, + [1563] = 1563, + [1564] = 1551, + [1565] = 1552, + [1566] = 1553, [1567] = 1567, [1568] = 1568, [1569] = 1569, @@ -4685,11 +4692,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1578, - [1579] = 1571, + [1578] = 1569, + [1579] = 1579, [1580] = 1580, - [1581] = 1581, - [1582] = 1571, + [1581] = 1569, + [1582] = 1569, [1583] = 1583, [1584] = 1584, [1585] = 1585, @@ -4698,16 +4705,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1588] = 1588, [1589] = 1589, [1590] = 1590, - [1591] = 1571, - [1592] = 1571, + [1591] = 1591, + [1592] = 1592, [1593] = 1593, [1594] = 1594, - [1595] = 1595, - [1596] = 1585, + [1595] = 1569, + [1596] = 1596, [1597] = 1597, [1598] = 1598, [1599] = 1599, - [1600] = 1586, + [1600] = 1600, [1601] = 1601, [1602] = 1602, [1603] = 1603, @@ -4724,13 +4731,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1614] = 1614, [1615] = 1615, [1616] = 1616, - [1617] = 1617, - [1618] = 1618, + [1617] = 1616, + [1618] = 1573, [1619] = 1619, [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1623, + [1623] = 1614, [1624] = 1624, [1625] = 1625, [1626] = 1626, @@ -4738,20 +4745,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1628] = 1628, [1629] = 1629, [1630] = 1630, - [1631] = 1593, - [1632] = 1617, + [1631] = 1631, + [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, [1636] = 1636, - [1637] = 1575, - [1638] = 1587, + [1637] = 1637, + [1638] = 1590, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1642, + [1642] = 1596, [1643] = 1643, - [1644] = 1636, + [1644] = 1644, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -4768,83 +4775,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1658] = 1658, [1659] = 1659, [1660] = 1660, - [1661] = 1661, + [1661] = 1599, [1662] = 1662, - [1663] = 1609, + [1663] = 1663, [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, [1668] = 1668, - [1669] = 1669, + [1669] = 1667, [1670] = 1670, - [1671] = 1671, + [1671] = 1663, [1672] = 1672, [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, + [1675] = 1673, + [1676] = 1670, [1677] = 1677, [1678] = 1678, - [1679] = 1679, - [1680] = 1665, - [1681] = 1666, - [1682] = 1682, - [1683] = 1676, + [1679] = 1670, + [1680] = 1670, + [1681] = 1681, + [1682] = 1663, + [1683] = 1683, [1684] = 1684, - [1685] = 1671, - [1686] = 1678, - [1687] = 1666, - [1688] = 1668, - [1689] = 1689, + [1685] = 1685, + [1686] = 1674, + [1687] = 1684, + [1688] = 1670, + [1689] = 1673, [1690] = 1690, - [1691] = 1691, - [1692] = 1673, - [1693] = 1673, - [1694] = 1666, + [1691] = 1667, + [1692] = 1670, + [1693] = 1681, + [1694] = 1674, [1695] = 1695, - [1696] = 1682, - [1697] = 1682, - [1698] = 1698, - [1699] = 1699, - [1700] = 1682, + [1696] = 1670, + [1697] = 1697, + [1698] = 1681, + [1699] = 1674, + [1700] = 1667, [1701] = 1701, - [1702] = 1689, - [1703] = 1665, + [1702] = 1702, + [1703] = 1697, [1704] = 1704, [1705] = 1705, - [1706] = 1706, - [1707] = 1678, - [1708] = 1676, - [1709] = 1673, - [1710] = 1710, - [1711] = 1622, - [1712] = 1712, - [1713] = 1668, - [1714] = 1666, - [1715] = 1689, + [1706] = 1684, + [1707] = 1707, + [1708] = 1708, + [1709] = 1667, + [1710] = 1670, + [1711] = 1684, + [1712] = 1670, + [1713] = 1697, + [1714] = 1714, + [1715] = 1702, [1716] = 1716, - [1717] = 1665, - [1718] = 1718, - [1719] = 1673, - [1720] = 1689, - [1721] = 1668, - [1722] = 1671, - [1723] = 1666, - [1724] = 1671, - [1725] = 1666, - [1726] = 1689, - [1727] = 1668, - [1728] = 1666, - [1729] = 1666, - [1730] = 1730, - [1731] = 1673, - [1732] = 1732, - [1733] = 1671, - [1734] = 1665, + [1717] = 1717, + [1718] = 1681, + [1719] = 1719, + [1720] = 1702, + [1721] = 1697, + [1722] = 1629, + [1723] = 1663, + [1724] = 1724, + [1725] = 1725, + [1726] = 1663, + [1727] = 1684, + [1728] = 1697, + [1729] = 1702, + [1730] = 1702, + [1731] = 1731, + [1732] = 1684, + [1733] = 1733, + [1734] = 1673, [1735] = 1735, - [1736] = 1676, - [1737] = 1678, + [1736] = 1736, + [1737] = 1737, [1738] = 1738, [1739] = 1739, [1740] = 1740, @@ -4853,90 +4860,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1743] = 1743, [1744] = 1744, [1745] = 1745, - [1746] = 1746, + [1746] = 1738, [1747] = 1747, - [1748] = 1748, + [1748] = 1744, [1749] = 1749, [1750] = 1750, - [1751] = 1751, + [1751] = 1750, [1752] = 1752, - [1753] = 1741, + [1753] = 1753, [1754] = 1754, [1755] = 1755, - [1756] = 1756, + [1756] = 1573, [1757] = 1757, - [1758] = 1754, + [1758] = 1758, [1759] = 1759, [1760] = 1760, - [1761] = 1740, - [1762] = 1762, - [1763] = 1763, + [1761] = 1761, + [1762] = 1744, + [1763] = 1750, [1764] = 1764, - [1765] = 1765, + [1765] = 1749, [1766] = 1766, [1767] = 1767, [1768] = 1768, - [1769] = 1755, + [1769] = 1769, [1770] = 1770, - [1771] = 1749, - [1772] = 1746, + [1771] = 1771, + [1772] = 1772, [1773] = 1773, [1774] = 1774, [1775] = 1775, [1776] = 1776, - [1777] = 1777, - [1778] = 1749, - [1779] = 1746, + [1777] = 1735, + [1778] = 1778, + [1779] = 1779, [1780] = 1780, - [1781] = 1781, - [1782] = 1781, - [1783] = 1745, + [1781] = 1780, + [1782] = 1772, + [1783] = 1783, [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1757, + [1785] = 1749, + [1786] = 1750, + [1787] = 1787, [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1749, + [1789] = 1773, + [1790] = 1780, + [1791] = 1791, [1792] = 1792, - [1793] = 1745, - [1794] = 1789, - [1795] = 1751, + [1793] = 1780, + [1794] = 1794, + [1795] = 1795, [1796] = 1796, - [1797] = 1797, - [1798] = 1751, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1593, + [1797] = 1791, + [1798] = 1798, + [1799] = 1792, + [1800] = 1738, + [1801] = 1776, + [1802] = 1772, + [1803] = 1803, [1804] = 1804, [1805] = 1805, - [1806] = 1740, - [1807] = 1807, - [1808] = 1749, - [1809] = 1754, - [1810] = 1739, + [1806] = 1806, + [1807] = 1804, + [1808] = 1764, + [1809] = 1788, + [1810] = 1738, [1811] = 1811, - [1812] = 1812, - [1813] = 1796, - [1814] = 1802, - [1815] = 1815, - [1816] = 1759, - [1817] = 1817, - [1818] = 1748, + [1812] = 1787, + [1813] = 1813, + [1814] = 1787, + [1815] = 1796, + [1816] = 1805, + [1817] = 1795, + [1818] = 1818, [1819] = 1819, - [1820] = 1740, - [1821] = 1790, - [1822] = 1788, - [1823] = 1770, - [1824] = 1817, - [1825] = 1741, - [1826] = 1826, - [1827] = 1811, - [1828] = 1746, - [1829] = 1829, + [1820] = 1820, + [1821] = 1750, + [1822] = 1822, + [1823] = 1775, + [1824] = 1824, + [1825] = 1752, + [1826] = 1779, + [1827] = 1827, + [1828] = 1828, + [1829] = 1827, [1830] = 1830, [1831] = 1831, [1832] = 1832, @@ -4944,398 +4951,395 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1834] = 1834, [1835] = 1835, [1836] = 1836, - [1837] = 1837, + [1837] = 1832, [1838] = 1838, - [1839] = 1839, + [1839] = 1835, [1840] = 1840, - [1841] = 1836, + [1841] = 1841, [1842] = 1842, [1843] = 1843, [1844] = 1844, - [1845] = 1833, - [1846] = 1846, - [1847] = 1839, - [1848] = 1848, + [1845] = 1845, + [1846] = 1835, + [1847] = 1831, + [1848] = 1831, [1849] = 1840, - [1850] = 1838, - [1851] = 1840, + [1850] = 1832, + [1851] = 1851, [1852] = 1852, - [1853] = 1839, + [1853] = 1853, [1854] = 1854, - [1855] = 1848, - [1856] = 1836, - [1857] = 1839, - [1858] = 1858, - [1859] = 1846, - [1860] = 1844, - [1861] = 1861, - [1862] = 1833, - [1863] = 1846, - [1864] = 1838, - [1865] = 1865, - [1866] = 1866, - [1867] = 1837, - [1868] = 1868, - [1869] = 1869, - [1870] = 1844, - [1871] = 1836, + [1855] = 1855, + [1856] = 1832, + [1857] = 1857, + [1858] = 1835, + [1859] = 1859, + [1860] = 1828, + [1861] = 1832, + [1862] = 1827, + [1863] = 1834, + [1864] = 1864, + [1865] = 1834, + [1866] = 1834, + [1867] = 1867, + [1868] = 1828, + [1869] = 1831, + [1870] = 1832, + [1871] = 1830, [1872] = 1836, - [1873] = 1873, - [1874] = 1837, - [1875] = 1875, - [1876] = 1876, - [1877] = 1861, - [1878] = 1878, - [1879] = 1879, + [1873] = 1845, + [1874] = 1874, + [1875] = 1828, + [1876] = 1832, + [1877] = 1845, + [1878] = 1841, + [1879] = 1827, [1880] = 1880, [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1837, - [1885] = 1834, + [1882] = 1836, + [1883] = 1835, + [1884] = 1834, + [1885] = 1828, [1886] = 1835, [1887] = 1887, - [1888] = 1888, - [1889] = 1839, - [1890] = 1834, - [1891] = 1839, - [1892] = 1848, - [1893] = 1893, - [1894] = 1840, - [1895] = 1895, - [1896] = 1834, - [1897] = 1848, + [1888] = 1841, + [1889] = 1834, + [1890] = 1845, + [1891] = 1827, + [1892] = 1836, + [1893] = 1828, + [1894] = 1835, + [1895] = 1840, + [1896] = 1831, + [1897] = 1897, [1898] = 1898, - [1899] = 1861, - [1900] = 1844, - [1901] = 1833, - [1902] = 1838, - [1903] = 1848, - [1904] = 1846, - [1905] = 1846, - [1906] = 1838, - [1907] = 1865, - [1908] = 1848, - [1909] = 1861, - [1910] = 1844, - [1911] = 1861, - [1912] = 1834, - [1913] = 1837, - [1914] = 1834, - [1915] = 1838, - [1916] = 1848, + [1899] = 1835, + [1900] = 1900, + [1901] = 1831, + [1902] = 1902, + [1903] = 1903, + [1904] = 1845, + [1905] = 1867, + [1906] = 1832, + [1907] = 1841, + [1908] = 1845, + [1909] = 1909, + [1910] = 1897, + [1911] = 1836, + [1912] = 1836, + [1913] = 1830, + [1914] = 1897, + [1915] = 1915, + [1916] = 1827, [1917] = 1917, - [1918] = 1840, - [1919] = 1919, - [1920] = 1865, - [1921] = 1861, - [1922] = 1846, - [1923] = 1833, - [1924] = 1848, - [1925] = 1861, - [1926] = 1844, - [1927] = 1836, - [1928] = 1861, - [1929] = 1861, - [1930] = 1848, + [1918] = 1841, + [1919] = 1835, + [1920] = 1897, + [1921] = 1840, + [1922] = 1897, + [1923] = 1923, + [1924] = 1832, + [1925] = 1840, + [1926] = 1926, + [1927] = 1927, + [1928] = 1358, + [1929] = 1929, + [1930] = 1930, [1931] = 1931, [1932] = 1932, [1933] = 1933, [1934] = 1934, [1935] = 1935, [1936] = 1936, - [1937] = 1937, - [1938] = 1936, + [1937] = 1930, + [1938] = 1938, [1939] = 1939, - [1940] = 1934, - [1941] = 1935, - [1942] = 1936, - [1943] = 1937, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, [1944] = 1944, - [1945] = 1939, - [1946] = 1935, - [1947] = 1937, + [1945] = 1945, + [1946] = 1946, + [1947] = 1933, [1948] = 1948, - [1949] = 1939, - [1950] = 1935, - [1951] = 1937, + [1949] = 1949, + [1950] = 1950, + [1951] = 1951, [1952] = 1952, [1953] = 1953, [1954] = 1954, [1955] = 1955, [1956] = 1956, - [1957] = 1935, - [1958] = 1958, - [1959] = 1934, - [1960] = 1960, - [1961] = 1961, - [1962] = 1962, - [1963] = 1963, + [1957] = 1957, + [1958] = 1955, + [1959] = 1374, + [1960] = 1953, + [1961] = 1948, + [1962] = 1929, + [1963] = 1932, [1964] = 1964, [1965] = 1931, - [1966] = 1966, - [1967] = 1939, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1972, - [1973] = 1961, - [1974] = 1974, - [1975] = 1935, - [1976] = 1976, - [1977] = 1977, - [1978] = 1369, - [1979] = 1955, - [1980] = 1980, - [1981] = 1981, - [1982] = 1937, + [1966] = 1940, + [1967] = 1938, + [1968] = 1957, + [1969] = 1930, + [1970] = 1931, + [1971] = 1945, + [1972] = 1939, + [1973] = 1944, + [1974] = 1944, + [1975] = 1975, + [1976] = 1939, + [1977] = 1934, + [1978] = 1940, + [1979] = 1930, + [1980] = 1931, + [1981] = 1931, + [1982] = 1939, [1983] = 1944, - [1984] = 1936, - [1985] = 1974, - [1986] = 1948, - [1987] = 1937, - [1988] = 1962, - [1989] = 1962, - [1990] = 1948, - [1991] = 1991, - [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 1958, - [1996] = 1937, - [1997] = 1980, + [1984] = 1930, + [1985] = 1929, + [1986] = 1940, + [1987] = 1931, + [1988] = 1932, + [1989] = 1944, + [1990] = 1935, + [1991] = 1936, + [1992] = 1940, + [1993] = 1931, + [1994] = 1938, + [1995] = 1944, + [1996] = 1940, + [1997] = 1997, [1998] = 1998, [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 1934, - [2003] = 1991, - [2004] = 1936, - [2005] = 1993, + [2000] = 1942, + [2001] = 1934, + [2002] = 1943, + [2003] = 1946, + [2004] = 1948, + [2005] = 2005, [2006] = 2006, - [2007] = 1396, - [2008] = 1980, - [2009] = 1955, - [2010] = 1935, - [2011] = 1934, - [2012] = 1354, - [2013] = 1960, - [2014] = 1953, - [2015] = 1954, - [2016] = 1961, - [2017] = 1976, - [2018] = 2018, - [2019] = 1963, - [2020] = 1964, - [2021] = 2021, - [2022] = 1933, - [2023] = 1956, - [2024] = 1939, - [2025] = 1976, - [2026] = 2026, - [2027] = 2006, - [2028] = 2018, - [2029] = 2029, - [2030] = 2030, - [2031] = 1968, - [2032] = 1969, - [2033] = 1970, - [2034] = 1981, - [2035] = 1961, - [2036] = 1944, - [2037] = 2037, + [2007] = 2007, + [2008] = 1950, + [2009] = 1951, + [2010] = 2010, + [2011] = 1952, + [2012] = 1956, + [2013] = 1938, + [2014] = 2014, + [2015] = 1955, + [2016] = 2016, + [2017] = 1953, + [2018] = 1964, + [2019] = 1933, + [2020] = 2020, + [2021] = 1945, + [2022] = 1944, + [2023] = 1939, + [2024] = 2024, + [2025] = 2025, + [2026] = 1934, + [2027] = 1931, + [2028] = 2028, + [2029] = 1930, + [2030] = 1929, + [2031] = 1932, + [2032] = 2032, + [2033] = 1935, + [2034] = 1936, + [2035] = 1935, + [2036] = 1938, + [2037] = 1936, [2038] = 2038, [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 1953, - [2043] = 1954, - [2044] = 2044, - [2045] = 2045, - [2046] = 1971, - [2047] = 2047, - [2048] = 1960, - [2049] = 2049, - [2050] = 1956, - [2051] = 1977, - [2052] = 1971, - [2053] = 2021, + [2040] = 1940, + [2041] = 1975, + [2042] = 1942, + [2043] = 1943, + [2044] = 1946, + [2045] = 1948, + [2046] = 2032, + [2047] = 2024, + [2048] = 2024, + [2049] = 1939, + [2050] = 2050, + [2051] = 1939, + [2052] = 2052, + [2053] = 1945, [2054] = 2054, [2055] = 2055, - [2056] = 2006, + [2056] = 2056, [2057] = 2057, [2058] = 2058, - [2059] = 2029, - [2060] = 1981, - [2061] = 2054, - [2062] = 1944, - [2063] = 2063, - [2064] = 2021, - [2065] = 2065, - [2066] = 2066, - [2067] = 2049, - [2068] = 1953, - [2069] = 1954, - [2070] = 2070, - [2071] = 1976, - [2072] = 2072, - [2073] = 2073, - [2074] = 1956, - [2075] = 1980, - [2076] = 1993, - [2077] = 2047, - [2078] = 2078, - [2079] = 1962, - [2080] = 1939, - [2081] = 1948, - [2082] = 1937, - [2083] = 1364, - [2084] = 2084, - [2085] = 2085, - [2086] = 1953, - [2087] = 1936, - [2088] = 2088, - [2089] = 1953, - [2090] = 1953, - [2091] = 1953, - [2092] = 2092, - [2093] = 1955, + [2059] = 1950, + [2060] = 1951, + [2061] = 1952, + [2062] = 2062, + [2063] = 1938, + [2064] = 2038, + [2065] = 1956, + [2066] = 1957, + [2067] = 1940, + [2068] = 2068, + [2069] = 1955, + [2070] = 1953, + [2071] = 1964, + [2072] = 1933, + [2073] = 1945, + [2074] = 2074, + [2075] = 1942, + [2076] = 1944, + [2077] = 2052, + [2078] = 1939, + [2079] = 2024, + [2080] = 1997, + [2081] = 1998, + [2082] = 2028, + [2083] = 1934, + [2084] = 1931, + [2085] = 1949, + [2086] = 1944, + [2087] = 2074, + [2088] = 1938, + [2089] = 2006, + [2090] = 1930, + [2091] = 1929, + [2092] = 1932, + [2093] = 1933, [2094] = 1935, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2054, - [2101] = 1944, - [2102] = 1934, - [2103] = 1931, - [2104] = 1970, + [2095] = 1936, + [2096] = 2057, + [2097] = 2038, + [2098] = 1940, + [2099] = 1942, + [2100] = 2032, + [2101] = 1943, + [2102] = 2024, + [2103] = 1946, + [2104] = 1948, [2105] = 2105, - [2106] = 1969, - [2107] = 2070, - [2108] = 2108, - [2109] = 2109, - [2110] = 2110, + [2106] = 1964, + [2107] = 2107, + [2108] = 1997, + [2109] = 1998, + [2110] = 1953, [2111] = 2111, [2112] = 2112, - [2113] = 1963, - [2114] = 2114, - [2115] = 1964, - [2116] = 1960, + [2113] = 1957, + [2114] = 1345, + [2115] = 1955, + [2116] = 2006, [2117] = 2117, - [2118] = 1971, - [2119] = 2119, - [2120] = 1968, + [2118] = 2118, + [2119] = 2068, + [2120] = 2120, [2121] = 2121, [2122] = 2122, - [2123] = 2112, - [2124] = 2049, + [2123] = 2123, + [2124] = 2124, [2125] = 2125, - [2126] = 1999, + [2126] = 2032, [2127] = 2127, - [2128] = 2128, + [2128] = 2024, [2129] = 2129, - [2130] = 2130, + [2130] = 1956, [2131] = 2131, [2132] = 2132, - [2133] = 1952, - [2134] = 1939, - [2135] = 1966, - [2136] = 1931, - [2137] = 1963, + [2133] = 2133, + [2134] = 1997, + [2135] = 1998, + [2136] = 2062, + [2137] = 2137, [2138] = 2138, [2139] = 2139, - [2140] = 1964, - [2141] = 1931, - [2142] = 1931, - [2143] = 2063, - [2144] = 1939, - [2145] = 1966, - [2146] = 1981, + [2140] = 2006, + [2141] = 1336, + [2142] = 2142, + [2143] = 2143, + [2144] = 2144, + [2145] = 2145, + [2146] = 2146, [2147] = 2147, - [2148] = 2096, - [2149] = 1964, + [2148] = 2148, + [2149] = 2149, [2150] = 2150, [2151] = 2151, - [2152] = 2070, - [2153] = 1939, + [2152] = 1997, + [2153] = 2153, [2154] = 2154, [2155] = 2155, - [2156] = 777, - [2157] = 2157, - [2158] = 2047, + [2156] = 1997, + [2157] = 1997, + [2158] = 1997, [2159] = 2159, - [2160] = 2070, - [2161] = 1968, - [2162] = 1963, - [2163] = 2163, - [2164] = 1971, - [2165] = 2165, - [2166] = 2166, - [2167] = 1960, - [2168] = 2070, - [2169] = 2078, - [2170] = 1934, - [2171] = 1968, - [2172] = 1969, - [2173] = 778, + [2160] = 2006, + [2161] = 1943, + [2162] = 1946, + [2163] = 1952, + [2164] = 2164, + [2165] = 2164, + [2166] = 1951, + [2167] = 2154, + [2168] = 2150, + [2169] = 1948, + [2170] = 2170, + [2171] = 1938, + [2172] = 2172, + [2173] = 2173, [2174] = 2174, - [2175] = 2096, + [2175] = 1954, [2176] = 2176, [2177] = 2177, - [2178] = 1931, + [2178] = 2178, [2179] = 2179, [2180] = 2180, [2181] = 2181, - [2182] = 2182, - [2183] = 1970, - [2184] = 1961, - [2185] = 1962, - [2186] = 2047, - [2187] = 2187, + [2182] = 2014, + [2183] = 2183, + [2184] = 2137, + [2185] = 2056, + [2186] = 2186, + [2187] = 2164, [2188] = 2188, - [2189] = 2049, - [2190] = 1944, + [2189] = 776, + [2190] = 1954, [2191] = 2191, - [2192] = 2192, - [2193] = 2099, - [2194] = 1956, - [2195] = 1969, - [2196] = 1970, - [2197] = 2096, - [2198] = 2054, - [2199] = 1961, - [2200] = 2006, - [2201] = 1948, + [2192] = 1950, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 2058, + [2198] = 1954, + [2199] = 2199, + [2200] = 2200, + [2201] = 777, [2202] = 2202, - [2203] = 2021, - [2204] = 1937, - [2205] = 1955, - [2206] = 2206, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 1954, [2207] = 2207, - [2208] = 1976, + [2208] = 2208, [2209] = 2209, - [2210] = 1935, - [2211] = 2211, - [2212] = 1931, - [2213] = 1936, + [2210] = 2210, + [2211] = 2164, + [2212] = 2212, + [2213] = 2213, [2214] = 2214, [2215] = 2215, - [2216] = 2216, + [2216] = 2164, [2217] = 2217, - [2218] = 2096, - [2219] = 1980, + [2218] = 1998, + [2219] = 2164, [2220] = 2220, - [2221] = 2096, - [2222] = 2084, - [2223] = 1954, - [2224] = 1993, - [2225] = 2192, - [2226] = 1936, - [2227] = 1953, - [2228] = 2191, + [2221] = 2221, + [2222] = 2153, + [2223] = 2223, + [2224] = 1997, + [2225] = 2145, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -9148,19 +9152,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); @@ -9255,8 +9259,35 @@ 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') SKIP(72) + if (lookahead == '\'') ADVANCE(303); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '\\') ADVANCE(305); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(307); + if (lookahead != 0) ADVANCE(304); + END_STATE(); + case 41: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(42); + if (lookahead == '\r') ADVANCE(45); if (lookahead == '(') ADVANCE(145); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); @@ -9264,25 +9295,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); - case 39: + case 42: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(42); + if (lookahead == '\r') ADVANCE(45); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); - case 40: + case 43: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(41); + if (lookahead == '\r') ADVANCE(44); if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(74); if (lookahead == '\\') SKIP(47) if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(73) END_STATE(); - case 41: + case 44: if (lookahead == '\n') ADVANCE(143); if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(74); @@ -9290,7 +9321,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(73) END_STATE(); - case 42: + case 45: if (lookahead == '\n') ADVANCE(143); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); @@ -9298,33 +9329,6 @@ 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); - if (lookahead == '/') ADVANCE(306); - if (lookahead == '\\') ADVANCE(305); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(307); - if (lookahead != 0) ADVANCE(304); - END_STATE(); case 46: if (lookahead == '\n') SKIP(73) END_STATE(); @@ -9792,7 +9796,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 67: if (lookahead == '"') ADVANCE(312); if (lookahead == '/') ADVANCE(74); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\\') ADVANCE(39); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(67) END_STATE(); @@ -9822,7 +9826,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) @@ -9832,14 +9836,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(44); + if (lookahead == '\\') ADVANCE(39); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72) END_STATE(); @@ -11359,7 +11363,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 307: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\\') ADVANCE(39); END_STATE(); case 308: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -11425,7 +11429,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 319: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\\') ADVANCE(39); END_STATE(); case 320: ACCEPT_TOKEN(sym_escape_sequence); @@ -13221,7 +13225,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 58}, [28] = {.lex_state = 140}, [29] = {.lex_state = 140}, - [30] = {.lex_state = 140}, + [30] = {.lex_state = 57}, [31] = {.lex_state = 140}, [32] = {.lex_state = 140}, [33] = {.lex_state = 140}, @@ -13232,17 +13236,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [38] = {.lex_state = 140}, [39] = {.lex_state = 140}, [40] = {.lex_state = 140}, - [41] = {.lex_state = 57}, + [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 = 140}, - [48] = {.lex_state = 140}, + [48] = {.lex_state = 57}, [49] = {.lex_state = 140}, [50] = {.lex_state = 140}, - [51] = {.lex_state = 57}, + [51] = {.lex_state = 140}, [52] = {.lex_state = 140}, [53] = {.lex_state = 140}, [54] = {.lex_state = 55}, @@ -13256,19 +13260,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [62] = {.lex_state = 58}, [63] = {.lex_state = 58}, [64] = {.lex_state = 140}, - [65] = {.lex_state = 140}, + [65] = {.lex_state = 57}, [66] = {.lex_state = 140}, [67] = {.lex_state = 57}, [68] = {.lex_state = 140}, - [69] = {.lex_state = 140}, + [69] = {.lex_state = 57}, [70] = {.lex_state = 140}, - [71] = {.lex_state = 57}, - [72] = {.lex_state = 140}, - [73] = {.lex_state = 57}, - [74] = {.lex_state = 140}, - [75] = {.lex_state = 57}, + [71] = {.lex_state = 140}, + [72] = {.lex_state = 57}, + [73] = {.lex_state = 140}, + [74] = {.lex_state = 57}, + [75] = {.lex_state = 140}, [76] = {.lex_state = 140}, - [77] = {.lex_state = 57}, + [77] = {.lex_state = 140}, [78] = {.lex_state = 140}, [79] = {.lex_state = 140}, [80] = {.lex_state = 140}, @@ -13284,8 +13288,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 55}, [91] = {.lex_state = 55}, [92] = {.lex_state = 55}, - [93] = {.lex_state = 55}, - [94] = {.lex_state = 140}, + [93] = {.lex_state = 140}, + [94] = {.lex_state = 55}, [95] = {.lex_state = 55}, [96] = {.lex_state = 55}, [97] = {.lex_state = 55}, @@ -13296,7 +13300,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [102] = {.lex_state = 55}, [103] = {.lex_state = 55}, [104] = {.lex_state = 55}, - [105] = {.lex_state = 140}, + [105] = {.lex_state = 55}, [106] = {.lex_state = 55}, [107] = {.lex_state = 55}, [108] = {.lex_state = 55}, @@ -13304,7 +13308,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [110] = {.lex_state = 55}, [111] = {.lex_state = 55}, [112] = {.lex_state = 55}, - [113] = {.lex_state = 55}, + [113] = {.lex_state = 140}, [114] = {.lex_state = 55}, [115] = {.lex_state = 55}, [116] = {.lex_state = 55}, @@ -13330,7 +13334,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 55}, [137] = {.lex_state = 55}, [138] = {.lex_state = 55}, - [139] = {.lex_state = 55}, + [139] = {.lex_state = 58}, [140] = {.lex_state = 55}, [141] = {.lex_state = 55}, [142] = {.lex_state = 55}, @@ -13340,7 +13344,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [146] = {.lex_state = 55}, [147] = {.lex_state = 55}, [148] = {.lex_state = 55}, - [149] = {.lex_state = 58}, + [149] = {.lex_state = 55}, [150] = {.lex_state = 55}, [151] = {.lex_state = 55}, [152] = {.lex_state = 55}, @@ -13401,14 +13405,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 58}, [208] = {.lex_state = 58}, [209] = {.lex_state = 58}, - [210] = {.lex_state = 140}, + [210] = {.lex_state = 58}, [211] = {.lex_state = 58}, - [212] = {.lex_state = 58}, - [213] = {.lex_state = 58}, + [212] = {.lex_state = 53}, + [213] = {.lex_state = 57}, [214] = {.lex_state = 58}, [215] = {.lex_state = 58}, - [216] = {.lex_state = 58}, - [217] = {.lex_state = 58}, + [216] = {.lex_state = 140}, + [217] = {.lex_state = 53}, [218] = {.lex_state = 58}, [219] = {.lex_state = 58}, [220] = {.lex_state = 58}, @@ -13419,12 +13423,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 58}, [226] = {.lex_state = 58}, [227] = {.lex_state = 58}, - [228] = {.lex_state = 57}, + [228] = {.lex_state = 58}, [229] = {.lex_state = 58}, [230] = {.lex_state = 58}, - [231] = {.lex_state = 140}, - [232] = {.lex_state = 140}, - [233] = {.lex_state = 140}, + [231] = {.lex_state = 58}, + [232] = {.lex_state = 58}, + [233] = {.lex_state = 57}, [234] = {.lex_state = 140}, [235] = {.lex_state = 140}, [236] = {.lex_state = 140}, @@ -13454,24 +13458,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 140}, [261] = {.lex_state = 140}, [262] = {.lex_state = 140}, - [263] = {.lex_state = 57}, + [263] = {.lex_state = 140}, [264] = {.lex_state = 140}, - [265] = {.lex_state = 57}, + [265] = {.lex_state = 140}, [266] = {.lex_state = 140}, - [267] = {.lex_state = 57}, - [268] = {.lex_state = 57}, + [267] = {.lex_state = 140}, + [268] = {.lex_state = 140}, [269] = {.lex_state = 57}, - [270] = {.lex_state = 140}, - [271] = {.lex_state = 57}, - [272] = {.lex_state = 57}, + [270] = {.lex_state = 57}, + [271] = {.lex_state = 140}, + [272] = {.lex_state = 140}, [273] = {.lex_state = 57}, [274] = {.lex_state = 57}, - [275] = {.lex_state = 57}, + [275] = {.lex_state = 140}, [276] = {.lex_state = 140}, [277] = {.lex_state = 140}, [278] = {.lex_state = 140}, [279] = {.lex_state = 140}, - [280] = {.lex_state = 140}, + [280] = {.lex_state = 57}, [281] = {.lex_state = 140}, [282] = {.lex_state = 140}, [283] = {.lex_state = 140}, @@ -13482,20 +13486,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [288] = {.lex_state = 140}, [289] = {.lex_state = 140}, [290] = {.lex_state = 140}, - [291] = {.lex_state = 140}, + [291] = {.lex_state = 57}, [292] = {.lex_state = 140}, - [293] = {.lex_state = 57}, + [293] = {.lex_state = 140}, [294] = {.lex_state = 140}, - [295] = {.lex_state = 140}, - [296] = {.lex_state = 57}, + [295] = {.lex_state = 57}, + [296] = {.lex_state = 140}, [297] = {.lex_state = 140}, - [298] = {.lex_state = 140}, + [298] = {.lex_state = 57}, [299] = {.lex_state = 57}, [300] = {.lex_state = 57}, [301] = {.lex_state = 140}, [302] = {.lex_state = 57}, [303] = {.lex_state = 140}, - [304] = {.lex_state = 53}, + [304] = {.lex_state = 140}, [305] = {.lex_state = 140}, [306] = {.lex_state = 140}, [307] = {.lex_state = 140}, @@ -13503,40 +13507,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [309] = {.lex_state = 57}, [310] = {.lex_state = 57}, [311] = {.lex_state = 140}, - [312] = {.lex_state = 57}, - [313] = {.lex_state = 57}, - [314] = {.lex_state = 53}, + [312] = {.lex_state = 140}, + [313] = {.lex_state = 140}, + [314] = {.lex_state = 140}, [315] = {.lex_state = 140}, [316] = {.lex_state = 57}, [317] = {.lex_state = 57}, [318] = {.lex_state = 57}, - [319] = {.lex_state = 140}, + [319] = {.lex_state = 57}, [320] = {.lex_state = 57}, [321] = {.lex_state = 57}, [322] = {.lex_state = 57}, - [323] = {.lex_state = 140}, - [324] = {.lex_state = 140}, - [325] = {.lex_state = 57}, - [326] = {.lex_state = 140}, + [323] = {.lex_state = 57}, + [324] = {.lex_state = 57}, + [325] = {.lex_state = 140}, + [326] = {.lex_state = 57}, [327] = {.lex_state = 57}, [328] = {.lex_state = 57}, - [329] = {.lex_state = 140}, + [329] = {.lex_state = 57}, [330] = {.lex_state = 57}, [331] = {.lex_state = 57}, [332] = {.lex_state = 57}, - [333] = {.lex_state = 140}, + [333] = {.lex_state = 57}, [334] = {.lex_state = 57}, - [335] = {.lex_state = 57}, + [335] = {.lex_state = 140}, [336] = {.lex_state = 57}, [337] = {.lex_state = 57}, [338] = {.lex_state = 57}, [339] = {.lex_state = 140}, - [340] = {.lex_state = 140}, - [341] = {.lex_state = 57}, - [342] = {.lex_state = 140}, - [343] = {.lex_state = 57}, + [340] = {.lex_state = 57}, + [341] = {.lex_state = 140}, + [342] = {.lex_state = 57}, + [343] = {.lex_state = 140}, [344] = {.lex_state = 140}, - [345] = {.lex_state = 140}, + [345] = {.lex_state = 57}, [346] = {.lex_state = 140}, [347] = {.lex_state = 140}, [348] = {.lex_state = 140}, @@ -13547,34 +13551,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [353] = {.lex_state = 140}, [354] = {.lex_state = 57}, [355] = {.lex_state = 140}, - [356] = {.lex_state = 57}, + [356] = {.lex_state = 140}, [357] = {.lex_state = 140}, - [358] = {.lex_state = 57}, - [359] = {.lex_state = 57}, - [360] = {.lex_state = 57}, - [361] = {.lex_state = 57}, + [358] = {.lex_state = 140}, + [359] = {.lex_state = 140}, + [360] = {.lex_state = 140}, + [361] = {.lex_state = 140}, [362] = {.lex_state = 140}, [363] = {.lex_state = 140}, [364] = {.lex_state = 140}, - [365] = {.lex_state = 57}, - [366] = {.lex_state = 57}, - [367] = {.lex_state = 57}, - [368] = {.lex_state = 57}, - [369] = {.lex_state = 57}, - [370] = {.lex_state = 57}, + [365] = {.lex_state = 140}, + [366] = {.lex_state = 140}, + [367] = {.lex_state = 140}, + [368] = {.lex_state = 140}, + [369] = {.lex_state = 140}, + [370] = {.lex_state = 140}, [371] = {.lex_state = 140}, - [372] = {.lex_state = 57}, - [373] = {.lex_state = 57}, - [374] = {.lex_state = 57}, + [372] = {.lex_state = 140}, + [373] = {.lex_state = 140}, + [374] = {.lex_state = 140}, [375] = {.lex_state = 140}, [376] = {.lex_state = 140}, - [377] = {.lex_state = 57}, - [378] = {.lex_state = 57}, - [379] = {.lex_state = 140}, - [380] = {.lex_state = 140}, - [381] = {.lex_state = 57}, + [377] = {.lex_state = 140}, + [378] = {.lex_state = 140}, + [379] = {.lex_state = 54}, + [380] = {.lex_state = 57}, + [381] = {.lex_state = 140}, [382] = {.lex_state = 140}, - [383] = {.lex_state = 140}, + [383] = {.lex_state = 57}, [384] = {.lex_state = 140}, [385] = {.lex_state = 140}, [386] = {.lex_state = 140}, @@ -13584,26 +13588,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [390] = {.lex_state = 140}, [391] = {.lex_state = 140}, [392] = {.lex_state = 140}, - [393] = {.lex_state = 57}, + [393] = {.lex_state = 140}, [394] = {.lex_state = 140}, [395] = {.lex_state = 140}, [396] = {.lex_state = 57}, - [397] = {.lex_state = 57}, - [398] = {.lex_state = 57}, + [397] = {.lex_state = 140}, + [398] = {.lex_state = 140}, [399] = {.lex_state = 140}, - [400] = {.lex_state = 140}, + [400] = {.lex_state = 57}, [401] = {.lex_state = 57}, [402] = {.lex_state = 57}, - [403] = {.lex_state = 140}, + [403] = {.lex_state = 57}, [404] = {.lex_state = 57}, [405] = {.lex_state = 57}, - [406] = {.lex_state = 140}, + [406] = {.lex_state = 57}, [407] = {.lex_state = 140}, [408] = {.lex_state = 140}, [409] = {.lex_state = 140}, - [410] = {.lex_state = 140}, + [410] = {.lex_state = 57}, [411] = {.lex_state = 140}, - [412] = {.lex_state = 140}, + [412] = {.lex_state = 57}, [413] = {.lex_state = 140}, [414] = {.lex_state = 140}, [415] = {.lex_state = 140}, @@ -13619,36 +13623,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [425] = {.lex_state = 140}, [426] = {.lex_state = 140}, [427] = {.lex_state = 140}, - [428] = {.lex_state = 140}, + [428] = {.lex_state = 57}, [429] = {.lex_state = 140}, [430] = {.lex_state = 140}, [431] = {.lex_state = 140}, [432] = {.lex_state = 140}, - [433] = {.lex_state = 140}, + [433] = {.lex_state = 57}, [434] = {.lex_state = 140}, - [435] = {.lex_state = 54}, + [435] = {.lex_state = 57}, [436] = {.lex_state = 140}, - [437] = {.lex_state = 140}, + [437] = {.lex_state = 57}, [438] = {.lex_state = 140}, - [439] = {.lex_state = 140}, + [439] = {.lex_state = 57}, [440] = {.lex_state = 140}, - [441] = {.lex_state = 140}, - [442] = {.lex_state = 140}, - [443] = {.lex_state = 140}, - [444] = {.lex_state = 140}, - [445] = {.lex_state = 140}, - [446] = {.lex_state = 140}, - [447] = {.lex_state = 140}, + [441] = {.lex_state = 57}, + [442] = {.lex_state = 57}, + [443] = {.lex_state = 57}, + [444] = {.lex_state = 57}, + [445] = {.lex_state = 57}, + [446] = {.lex_state = 57}, + [447] = {.lex_state = 57}, [448] = {.lex_state = 140}, [449] = {.lex_state = 140}, [450] = {.lex_state = 140}, [451] = {.lex_state = 140}, [452] = {.lex_state = 140}, - [453] = {.lex_state = 140}, + [453] = {.lex_state = 57}, [454] = {.lex_state = 140}, [455] = {.lex_state = 140}, - [456] = {.lex_state = 140}, - [457] = {.lex_state = 53}, + [456] = {.lex_state = 53}, + [457] = {.lex_state = 140}, [458] = {.lex_state = 140}, [459] = {.lex_state = 140}, [460] = {.lex_state = 140}, @@ -13689,9 +13693,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [495] = {.lex_state = 140}, [496] = {.lex_state = 140}, [497] = {.lex_state = 140}, - [498] = {.lex_state = 140}, + [498] = {.lex_state = 53}, [499] = {.lex_state = 140}, - [500] = {.lex_state = 53}, + [500] = {.lex_state = 140}, [501] = {.lex_state = 53}, [502] = {.lex_state = 54}, [503] = {.lex_state = 140}, @@ -13725,11 +13729,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [531] = {.lex_state = 140}, [532] = {.lex_state = 140}, [533] = {.lex_state = 140}, - [534] = {.lex_state = 64}, + [534] = {.lex_state = 140}, [535] = {.lex_state = 64}, [536] = {.lex_state = 64}, [537] = {.lex_state = 64}, - [538] = {.lex_state = 140}, + [538] = {.lex_state = 64}, [539] = {.lex_state = 64}, [540] = {.lex_state = 64}, [541] = {.lex_state = 64}, @@ -13743,25 +13747,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [549] = {.lex_state = 65}, [550] = {.lex_state = 65}, [551] = {.lex_state = 65}, - [552] = {.lex_state = 64}, + [552] = {.lex_state = 65}, [553] = {.lex_state = 65}, [554] = {.lex_state = 65}, - [555] = {.lex_state = 65}, + [555] = {.lex_state = 64}, [556] = {.lex_state = 65}, [557] = {.lex_state = 140}, [558] = {.lex_state = 140}, [559] = {.lex_state = 65}, [560] = {.lex_state = 140}, [561] = {.lex_state = 140}, - [562] = {.lex_state = 70}, + [562] = {.lex_state = 140}, [563] = {.lex_state = 140}, [564] = {.lex_state = 140}, - [565] = {.lex_state = 70}, - [566] = {.lex_state = 71}, + [565] = {.lex_state = 140}, + [566] = {.lex_state = 140}, [567] = {.lex_state = 140}, [568] = {.lex_state = 140}, [569] = {.lex_state = 140}, - [570] = {.lex_state = 71}, + [570] = {.lex_state = 140}, [571] = {.lex_state = 140}, [572] = {.lex_state = 140}, [573] = {.lex_state = 140}, @@ -13777,23 +13781,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [583] = {.lex_state = 140}, [584] = {.lex_state = 140}, [585] = {.lex_state = 140}, - [586] = {.lex_state = 140}, + [586] = {.lex_state = 71}, [587] = {.lex_state = 140}, [588] = {.lex_state = 140}, - [589] = {.lex_state = 70}, - [590] = {.lex_state = 71}, + [589] = {.lex_state = 140}, + [590] = {.lex_state = 70}, [591] = {.lex_state = 140}, [592] = {.lex_state = 140}, - [593] = {.lex_state = 140}, + [593] = {.lex_state = 70}, [594] = {.lex_state = 140}, [595] = {.lex_state = 140}, [596] = {.lex_state = 140}, [597] = {.lex_state = 140}, - [598] = {.lex_state = 140}, - [599] = {.lex_state = 140}, + [598] = {.lex_state = 71}, + [599] = {.lex_state = 70}, [600] = {.lex_state = 140}, - [601] = {.lex_state = 140}, - [602] = {.lex_state = 64}, + [601] = {.lex_state = 71}, + [602] = {.lex_state = 140}, [603] = {.lex_state = 140}, [604] = {.lex_state = 140}, [605] = {.lex_state = 140}, @@ -13834,7 +13838,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [640] = {.lex_state = 140}, [641] = {.lex_state = 140}, [642] = {.lex_state = 140}, - [643] = {.lex_state = 60}, + [643] = {.lex_state = 140}, [644] = {.lex_state = 140}, [645] = {.lex_state = 140}, [646] = {.lex_state = 140}, @@ -13904,7 +13908,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [710] = {.lex_state = 140}, [711] = {.lex_state = 140}, [712] = {.lex_state = 140}, - [713] = {.lex_state = 140}, + [713] = {.lex_state = 64}, [714] = {.lex_state = 140}, [715] = {.lex_state = 140}, [716] = {.lex_state = 140}, @@ -13957,19 +13961,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [763] = {.lex_state = 140}, [764] = {.lex_state = 140}, [765] = {.lex_state = 140}, - [766] = {.lex_state = 140}, + [766] = {.lex_state = 60}, [767] = {.lex_state = 64}, - [768] = {.lex_state = 64}, - [769] = {.lex_state = 60}, - [770] = {.lex_state = 64}, + [768] = {.lex_state = 60}, + [769] = {.lex_state = 64}, + [770] = {.lex_state = 60}, [771] = {.lex_state = 64}, [772] = {.lex_state = 64}, [773] = {.lex_state = 60}, - [774] = {.lex_state = 60}, + [774] = {.lex_state = 64}, [775] = {.lex_state = 60}, [776] = {.lex_state = 60}, [777] = {.lex_state = 60}, - [778] = {.lex_state = 60}, + [778] = {.lex_state = 62}, [779] = {.lex_state = 62}, [780] = {.lex_state = 62}, [781] = {.lex_state = 62}, @@ -13979,99 +13983,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [785] = {.lex_state = 62}, [786] = {.lex_state = 62}, [787] = {.lex_state = 62}, - [788] = {.lex_state = 62}, - [789] = {.lex_state = 140}, + [788] = {.lex_state = 140}, + [789] = {.lex_state = 62}, [790] = {.lex_state = 140}, [791] = {.lex_state = 140}, - [792] = {.lex_state = 62}, + [792] = {.lex_state = 60}, [793] = {.lex_state = 64}, [794] = {.lex_state = 64}, - [795] = {.lex_state = 62}, - [796] = {.lex_state = 62}, + [795] = {.lex_state = 64}, + [796] = {.lex_state = 64}, [797] = {.lex_state = 64}, [798] = {.lex_state = 62}, - [799] = {.lex_state = 62}, - [800] = {.lex_state = 62}, + [799] = {.lex_state = 64}, + [800] = {.lex_state = 64}, [801] = {.lex_state = 64}, - [802] = {.lex_state = 62}, + [802] = {.lex_state = 64}, [803] = {.lex_state = 64}, [804] = {.lex_state = 64}, - [805] = {.lex_state = 64}, - [806] = {.lex_state = 62}, - [807] = {.lex_state = 64}, - [808] = {.lex_state = 62}, + [805] = {.lex_state = 62}, + [806] = {.lex_state = 64}, + [807] = {.lex_state = 62}, + [808] = {.lex_state = 64}, [809] = {.lex_state = 62}, - [810] = {.lex_state = 62}, + [810] = {.lex_state = 64}, [811] = {.lex_state = 62}, - [812] = {.lex_state = 64}, - [813] = {.lex_state = 64}, - [814] = {.lex_state = 64}, - [815] = {.lex_state = 62}, + [812] = {.lex_state = 62}, + [813] = {.lex_state = 62}, + [814] = {.lex_state = 62}, + [815] = {.lex_state = 64}, [816] = {.lex_state = 64}, [817] = {.lex_state = 64}, - [818] = {.lex_state = 64}, + [818] = {.lex_state = 62}, [819] = {.lex_state = 62}, [820] = {.lex_state = 62}, - [821] = {.lex_state = 64}, + [821] = {.lex_state = 62}, [822] = {.lex_state = 64}, - [823] = {.lex_state = 64}, + [823] = {.lex_state = 62}, [824] = {.lex_state = 62}, [825] = {.lex_state = 64}, - [826] = {.lex_state = 64}, + [826] = {.lex_state = 62}, [827] = {.lex_state = 64}, [828] = {.lex_state = 64}, [829] = {.lex_state = 64}, [830] = {.lex_state = 62}, - [831] = {.lex_state = 62}, + [831] = {.lex_state = 60}, [832] = {.lex_state = 62}, - [833] = {.lex_state = 63}, - [834] = {.lex_state = 64}, - [835] = {.lex_state = 62}, + [833] = {.lex_state = 64}, + [834] = {.lex_state = 62}, + [835] = {.lex_state = 63}, [836] = {.lex_state = 63}, [837] = {.lex_state = 62}, - [838] = {.lex_state = 60}, + [838] = {.lex_state = 63}, [839] = {.lex_state = 63}, - [840] = {.lex_state = 64}, - [841] = {.lex_state = 63}, + [840] = {.lex_state = 60}, + [841] = {.lex_state = 64}, [842] = {.lex_state = 62}, - [843] = {.lex_state = 62}, - [844] = {.lex_state = 64}, - [845] = {.lex_state = 61}, + [843] = {.lex_state = 64}, + [844] = {.lex_state = 62}, + [845] = {.lex_state = 62}, [846] = {.lex_state = 61}, [847] = {.lex_state = 61}, [848] = {.lex_state = 60}, [849] = {.lex_state = 61}, - [850] = {.lex_state = 61}, + [850] = {.lex_state = 140}, [851] = {.lex_state = 61}, - [852] = {.lex_state = 140}, - [853] = {.lex_state = 64}, + [852] = {.lex_state = 61}, + [853] = {.lex_state = 61}, [854] = {.lex_state = 64}, [855] = {.lex_state = 64}, [856] = {.lex_state = 64}, - [857] = {.lex_state = 61}, + [857] = {.lex_state = 64}, [858] = {.lex_state = 61}, [859] = {.lex_state = 64}, - [860] = {.lex_state = 64}, + [860] = {.lex_state = 61}, [861] = {.lex_state = 64}, [862] = {.lex_state = 64}, [863] = {.lex_state = 64}, [864] = {.lex_state = 64}, - [865] = {.lex_state = 60}, + [865] = {.lex_state = 64}, [866] = {.lex_state = 60}, - [867] = {.lex_state = 64}, - [868] = {.lex_state = 60}, - [869] = {.lex_state = 60}, + [867] = {.lex_state = 60}, + [868] = {.lex_state = 64}, + [869] = {.lex_state = 64}, [870] = {.lex_state = 60}, [871] = {.lex_state = 60}, - [872] = {.lex_state = 64}, - [873] = {.lex_state = 140}, + [872] = {.lex_state = 140}, + [873] = {.lex_state = 60}, [874] = {.lex_state = 60}, - [875] = {.lex_state = 62}, + [875] = {.lex_state = 60}, [876] = {.lex_state = 62}, [877] = {.lex_state = 62}, [878] = {.lex_state = 62}, - [879] = {.lex_state = 62}, - [880] = {.lex_state = 60}, + [879] = {.lex_state = 60}, + [880] = {.lex_state = 62}, [881] = {.lex_state = 62}, [882] = {.lex_state = 62}, [883] = {.lex_state = 62}, @@ -14079,29 +14083,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [885] = {.lex_state = 62}, [886] = {.lex_state = 62}, [887] = {.lex_state = 62}, - [888] = {.lex_state = 64}, + [888] = {.lex_state = 62}, [889] = {.lex_state = 64}, - [890] = {.lex_state = 66}, + [890] = {.lex_state = 64}, [891] = {.lex_state = 64}, [892] = {.lex_state = 64}, - [893] = {.lex_state = 64}, - [894] = {.lex_state = 64}, + [893] = {.lex_state = 66}, + [894] = {.lex_state = 62}, [895] = {.lex_state = 64}, - [896] = {.lex_state = 64}, - [897] = {.lex_state = 64}, + [896] = {.lex_state = 66}, + [897] = {.lex_state = 66}, [898] = {.lex_state = 64}, [899] = {.lex_state = 64}, - [900] = {.lex_state = 64}, - [901] = {.lex_state = 62}, - [902] = {.lex_state = 66}, + [900] = {.lex_state = 66}, + [901] = {.lex_state = 64}, + [902] = {.lex_state = 64}, [903] = {.lex_state = 64}, - [904] = {.lex_state = 66}, - [905] = {.lex_state = 66}, - [906] = {.lex_state = 66}, - [907] = {.lex_state = 66}, + [904] = {.lex_state = 64}, + [905] = {.lex_state = 64}, + [906] = {.lex_state = 64}, + [907] = {.lex_state = 64}, [908] = {.lex_state = 66}, [909] = {.lex_state = 66}, - [910] = {.lex_state = 64}, + [910] = {.lex_state = 66}, [911] = {.lex_state = 66}, [912] = {.lex_state = 66}, [913] = {.lex_state = 66}, @@ -14117,160 +14121,160 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 66}, [924] = {.lex_state = 66}, [925] = {.lex_state = 66}, - [926] = {.lex_state = 66}, - [927] = {.lex_state = 66}, + [926] = {.lex_state = 64}, + [927] = {.lex_state = 64}, [928] = {.lex_state = 66}, [929] = {.lex_state = 66}, [930] = {.lex_state = 64}, [931] = {.lex_state = 64}, - [932] = {.lex_state = 66}, + [932] = {.lex_state = 64}, [933] = {.lex_state = 66}, - [934] = {.lex_state = 64}, - [935] = {.lex_state = 64}, - [936] = {.lex_state = 64}, - [937] = {.lex_state = 66}, + [934] = {.lex_state = 66}, + [935] = {.lex_state = 66}, + [936] = {.lex_state = 66}, + [937] = {.lex_state = 64}, [938] = {.lex_state = 66}, [939] = {.lex_state = 64}, [940] = {.lex_state = 66}, [941] = {.lex_state = 66}, - [942] = {.lex_state = 64}, + [942] = {.lex_state = 66}, [943] = {.lex_state = 66}, [944] = {.lex_state = 66}, [945] = {.lex_state = 66}, - [946] = {.lex_state = 66}, + [946] = {.lex_state = 64}, [947] = {.lex_state = 66}, [948] = {.lex_state = 66}, [949] = {.lex_state = 66}, - [950] = {.lex_state = 64}, + [950] = {.lex_state = 66}, [951] = {.lex_state = 66}, - [952] = {.lex_state = 66}, - [953] = {.lex_state = 66}, - [954] = {.lex_state = 66}, - [955] = {.lex_state = 64}, + [952] = {.lex_state = 64}, + [953] = {.lex_state = 64}, + [954] = {.lex_state = 64}, + [955] = {.lex_state = 66}, [956] = {.lex_state = 66}, [957] = {.lex_state = 66}, - [958] = {.lex_state = 64}, - [959] = {.lex_state = 64}, + [958] = {.lex_state = 66}, + [959] = {.lex_state = 66}, [960] = {.lex_state = 64}, - [961] = {.lex_state = 66}, + [961] = {.lex_state = 64}, [962] = {.lex_state = 64}, - [963] = {.lex_state = 66}, + [963] = {.lex_state = 64}, [964] = {.lex_state = 66}, [965] = {.lex_state = 66}, - [966] = {.lex_state = 64}, + [966] = {.lex_state = 66}, [967] = {.lex_state = 64}, - [968] = {.lex_state = 64}, + [968] = {.lex_state = 66}, [969] = {.lex_state = 64}, [970] = {.lex_state = 64}, - [971] = {.lex_state = 64}, - [972] = {.lex_state = 60}, - [973] = {.lex_state = 60}, + [971] = {.lex_state = 66}, + [972] = {.lex_state = 64}, + [973] = {.lex_state = 65}, [974] = {.lex_state = 65}, - [975] = {.lex_state = 64}, - [976] = {.lex_state = 64}, + [975] = {.lex_state = 65}, + [976] = {.lex_state = 65}, [977] = {.lex_state = 65}, [978] = {.lex_state = 65}, - [979] = {.lex_state = 65}, - [980] = {.lex_state = 65}, - [981] = {.lex_state = 65}, - [982] = {.lex_state = 65}, - [983] = {.lex_state = 60}, - [984] = {.lex_state = 65}, + [979] = {.lex_state = 60}, + [980] = {.lex_state = 60}, + [981] = {.lex_state = 60}, + [982] = {.lex_state = 64}, + [983] = {.lex_state = 64}, + [984] = {.lex_state = 60}, [985] = {.lex_state = 60}, - [986] = {.lex_state = 64}, - [987] = {.lex_state = 60}, + [986] = {.lex_state = 60}, + [987] = {.lex_state = 64}, [988] = {.lex_state = 64}, - [989] = {.lex_state = 60}, - [990] = {.lex_state = 60}, + [989] = {.lex_state = 65}, + [990] = {.lex_state = 64}, [991] = {.lex_state = 60}, - [992] = {.lex_state = 60}, - [993] = {.lex_state = 60}, - [994] = {.lex_state = 60}, - [995] = {.lex_state = 60}, - [996] = {.lex_state = 64}, + [992] = {.lex_state = 64}, + [993] = {.lex_state = 65}, + [994] = {.lex_state = 65}, + [995] = {.lex_state = 64}, + [996] = {.lex_state = 65}, [997] = {.lex_state = 60}, - [998] = {.lex_state = 65}, - [999] = {.lex_state = 60}, - [1000] = {.lex_state = 60}, - [1001] = {.lex_state = 60}, - [1002] = {.lex_state = 60}, + [998] = {.lex_state = 60}, + [999] = {.lex_state = 65}, + [1000] = {.lex_state = 65}, + [1001] = {.lex_state = 65}, + [1002] = {.lex_state = 65}, [1003] = {.lex_state = 65}, - [1004] = {.lex_state = 65}, - [1005] = {.lex_state = 60}, + [1004] = {.lex_state = 64}, + [1005] = {.lex_state = 65}, [1006] = {.lex_state = 65}, [1007] = {.lex_state = 64}, - [1008] = {.lex_state = 64}, - [1009] = {.lex_state = 65}, - [1010] = {.lex_state = 65}, - [1011] = {.lex_state = 65}, - [1012] = {.lex_state = 64}, - [1013] = {.lex_state = 65}, - [1014] = {.lex_state = 64}, - [1015] = {.lex_state = 65}, - [1016] = {.lex_state = 65}, - [1017] = {.lex_state = 64}, + [1008] = {.lex_state = 65}, + [1009] = {.lex_state = 60}, + [1010] = {.lex_state = 60}, + [1011] = {.lex_state = 60}, + [1012] = {.lex_state = 60}, + [1013] = {.lex_state = 60}, + [1014] = {.lex_state = 60}, + [1015] = {.lex_state = 60}, + [1016] = {.lex_state = 60}, + [1017] = {.lex_state = 60}, [1018] = {.lex_state = 64}, [1019] = {.lex_state = 64}, - [1020] = {.lex_state = 60}, - [1021] = {.lex_state = 64}, + [1020] = {.lex_state = 64}, + [1021] = {.lex_state = 60}, [1022] = {.lex_state = 64}, - [1023] = {.lex_state = 71}, - [1024] = {.lex_state = 60}, + [1023] = {.lex_state = 64}, + [1024] = {.lex_state = 64}, [1025] = {.lex_state = 70}, - [1026] = {.lex_state = 64}, + [1026] = {.lex_state = 71}, [1027] = {.lex_state = 70}, [1028] = {.lex_state = 70}, - [1029] = {.lex_state = 71}, + [1029] = {.lex_state = 64}, [1030] = {.lex_state = 71}, - [1031] = {.lex_state = 71}, - [1032] = {.lex_state = 71}, + [1031] = {.lex_state = 70}, + [1032] = {.lex_state = 70}, [1033] = {.lex_state = 71}, [1034] = {.lex_state = 71}, - [1035] = {.lex_state = 70}, + [1035] = {.lex_state = 60}, [1036] = {.lex_state = 70}, - [1037] = {.lex_state = 64}, + [1037] = {.lex_state = 70}, [1038] = {.lex_state = 71}, - [1039] = {.lex_state = 64}, + [1039] = {.lex_state = 70}, [1040] = {.lex_state = 71}, - [1041] = {.lex_state = 71}, + [1041] = {.lex_state = 64}, [1042] = {.lex_state = 71}, - [1043] = {.lex_state = 71}, + [1043] = {.lex_state = 64}, [1044] = {.lex_state = 71}, [1045] = {.lex_state = 71}, - [1046] = {.lex_state = 60}, + [1046] = {.lex_state = 70}, [1047] = {.lex_state = 71}, - [1048] = {.lex_state = 71}, - [1049] = {.lex_state = 71}, + [1048] = {.lex_state = 64}, + [1049] = {.lex_state = 64}, [1050] = {.lex_state = 70}, [1051] = {.lex_state = 71}, - [1052] = {.lex_state = 70}, - [1053] = {.lex_state = 70}, + [1052] = {.lex_state = 71}, + [1053] = {.lex_state = 64}, [1054] = {.lex_state = 64}, - [1055] = {.lex_state = 70}, + [1055] = {.lex_state = 64}, [1056] = {.lex_state = 64}, - [1057] = {.lex_state = 64}, - [1058] = {.lex_state = 70}, - [1059] = {.lex_state = 70}, + [1057] = {.lex_state = 71}, + [1058] = {.lex_state = 71}, + [1059] = {.lex_state = 71}, [1060] = {.lex_state = 70}, - [1061] = {.lex_state = 70}, - [1062] = {.lex_state = 64}, - [1063] = {.lex_state = 70}, - [1064] = {.lex_state = 64}, - [1065] = {.lex_state = 60}, + [1061] = {.lex_state = 71}, + [1062] = {.lex_state = 71}, + [1063] = {.lex_state = 60}, + [1064] = {.lex_state = 70}, + [1065] = {.lex_state = 70}, [1066] = {.lex_state = 64}, - [1067] = {.lex_state = 70}, + [1067] = {.lex_state = 60}, [1068] = {.lex_state = 64}, - [1069] = {.lex_state = 60}, - [1070] = {.lex_state = 64}, - [1071] = {.lex_state = 60}, - [1072] = {.lex_state = 70}, - [1073] = {.lex_state = 64}, - [1074] = {.lex_state = 64}, - [1075] = {.lex_state = 70}, - [1076] = {.lex_state = 70}, + [1069] = {.lex_state = 70}, + [1070] = {.lex_state = 70}, + [1071] = {.lex_state = 70}, + [1072] = {.lex_state = 64}, + [1073] = {.lex_state = 70}, + [1074] = {.lex_state = 70}, + [1075] = {.lex_state = 60}, + [1076] = {.lex_state = 64}, [1077] = {.lex_state = 64}, - [1078] = {.lex_state = 64}, - [1079] = {.lex_state = 64}, + [1078] = {.lex_state = 71}, + [1079] = {.lex_state = 60}, [1080] = {.lex_state = 64}, [1081] = {.lex_state = 64}, [1082] = {.lex_state = 64}, @@ -14284,7 +14288,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 64}, [1091] = {.lex_state = 64}, [1092] = {.lex_state = 64}, - [1093] = {.lex_state = 64}, + [1093] = {.lex_state = 140}, [1094] = {.lex_state = 64}, [1095] = {.lex_state = 64}, [1096] = {.lex_state = 64}, @@ -14304,7 +14308,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1110] = {.lex_state = 64}, [1111] = {.lex_state = 64}, [1112] = {.lex_state = 64}, - [1113] = {.lex_state = 140}, + [1113] = {.lex_state = 64}, [1114] = {.lex_state = 64}, [1115] = {.lex_state = 64}, [1116] = {.lex_state = 64}, @@ -14321,7 +14325,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1127] = {.lex_state = 64}, [1128] = {.lex_state = 64}, [1129] = {.lex_state = 64}, - [1130] = {.lex_state = 62}, + [1130] = {.lex_state = 64}, [1131] = {.lex_state = 62}, [1132] = {.lex_state = 62}, [1133] = {.lex_state = 62}, @@ -14329,13 +14333,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1135] = {.lex_state = 62}, [1136] = {.lex_state = 62}, [1137] = {.lex_state = 62}, - [1138] = {.lex_state = 62}, - [1139] = {.lex_state = 64}, + [1138] = {.lex_state = 64}, + [1139] = {.lex_state = 62}, [1140] = {.lex_state = 62}, [1141] = {.lex_state = 62}, [1142] = {.lex_state = 62}, [1143] = {.lex_state = 62}, - [1144] = {.lex_state = 64}, + [1144] = {.lex_state = 62}, [1145] = {.lex_state = 64}, [1146] = {.lex_state = 64}, [1147] = {.lex_state = 64}, @@ -14360,21 +14364,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1166] = {.lex_state = 64}, [1167] = {.lex_state = 66}, [1168] = {.lex_state = 66}, - [1169] = {.lex_state = 66}, - [1170] = {.lex_state = 64}, + [1169] = {.lex_state = 64}, + [1170] = {.lex_state = 66}, [1171] = {.lex_state = 66}, [1172] = {.lex_state = 66}, - [1173] = {.lex_state = 66}, - [1174] = {.lex_state = 64}, + [1173] = {.lex_state = 64}, + [1174] = {.lex_state = 66}, [1175] = {.lex_state = 66}, [1176] = {.lex_state = 66}, [1177] = {.lex_state = 66}, [1178] = {.lex_state = 66}, - [1179] = {.lex_state = 66}, + [1179] = {.lex_state = 64}, [1180] = {.lex_state = 64}, [1181] = {.lex_state = 66}, [1182] = {.lex_state = 66}, - [1183] = {.lex_state = 64}, + [1183] = {.lex_state = 66}, [1184] = {.lex_state = 64}, [1185] = {.lex_state = 64}, [1186] = {.lex_state = 64}, @@ -14382,35 +14386,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1188] = {.lex_state = 64}, [1189] = {.lex_state = 64}, [1190] = {.lex_state = 64}, - [1191] = {.lex_state = 60}, + [1191] = {.lex_state = 64}, [1192] = {.lex_state = 60}, [1193] = {.lex_state = 60}, [1194] = {.lex_state = 60}, - [1195] = {.lex_state = 60}, + [1195] = {.lex_state = 64}, [1196] = {.lex_state = 60}, [1197] = {.lex_state = 60}, [1198] = {.lex_state = 60}, - [1199] = {.lex_state = 64}, + [1199] = {.lex_state = 60}, [1200] = {.lex_state = 60}, [1201] = {.lex_state = 60}, [1202] = {.lex_state = 60}, [1203] = {.lex_state = 64}, - [1204] = {.lex_state = 64}, - [1205] = {.lex_state = 64}, + [1204] = {.lex_state = 60}, + [1205] = {.lex_state = 60}, [1206] = {.lex_state = 60}, - [1207] = {.lex_state = 60}, + [1207] = {.lex_state = 64}, [1208] = {.lex_state = 60}, [1209] = {.lex_state = 60}, [1210] = {.lex_state = 60}, - [1211] = {.lex_state = 64}, - [1212] = {.lex_state = 60}, - [1213] = {.lex_state = 64}, + [1211] = {.lex_state = 60}, + [1212] = {.lex_state = 64}, + [1213] = {.lex_state = 60}, [1214] = {.lex_state = 60}, [1215] = {.lex_state = 60}, - [1216] = {.lex_state = 64}, + [1216] = {.lex_state = 60}, [1217] = {.lex_state = 60}, [1218] = {.lex_state = 60}, - [1219] = {.lex_state = 60}, + [1219] = {.lex_state = 64}, [1220] = {.lex_state = 60}, [1221] = {.lex_state = 60}, [1222] = {.lex_state = 60}, @@ -14419,42 +14423,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1225] = {.lex_state = 60}, [1226] = {.lex_state = 60}, [1227] = {.lex_state = 64}, - [1228] = {.lex_state = 60}, - [1229] = {.lex_state = 64}, + [1228] = {.lex_state = 64}, + [1229] = {.lex_state = 60}, [1230] = {.lex_state = 60}, - [1231] = {.lex_state = 64}, + [1231] = {.lex_state = 60}, [1232] = {.lex_state = 64}, - [1233] = {.lex_state = 60}, + [1233] = {.lex_state = 64}, [1234] = {.lex_state = 64}, [1235] = {.lex_state = 60}, [1236] = {.lex_state = 60}, [1237] = {.lex_state = 64}, [1238] = {.lex_state = 60}, - [1239] = {.lex_state = 60}, + [1239] = {.lex_state = 64}, [1240] = {.lex_state = 60}, [1241] = {.lex_state = 60}, - [1242] = {.lex_state = 64}, - [1243] = {.lex_state = 60}, - [1244] = {.lex_state = 60}, - [1245] = {.lex_state = 60}, + [1242] = {.lex_state = 60}, + [1243] = {.lex_state = 64}, + [1244] = {.lex_state = 64}, + [1245] = {.lex_state = 64}, [1246] = {.lex_state = 60}, - [1247] = {.lex_state = 64}, + [1247] = {.lex_state = 60}, [1248] = {.lex_state = 60}, [1249] = {.lex_state = 60}, [1250] = {.lex_state = 60}, [1251] = {.lex_state = 60}, - [1252] = {.lex_state = 64}, - [1253] = {.lex_state = 60}, + [1252] = {.lex_state = 60}, + [1253] = {.lex_state = 64}, [1254] = {.lex_state = 64}, [1255] = {.lex_state = 60}, [1256] = {.lex_state = 60}, [1257] = {.lex_state = 60}, [1258] = {.lex_state = 60}, - [1259] = {.lex_state = 64}, + [1259] = {.lex_state = 60}, [1260] = {.lex_state = 60}, - [1261] = {.lex_state = 60}, + [1261] = {.lex_state = 64}, [1262] = {.lex_state = 60}, - [1263] = {.lex_state = 64}, + [1263] = {.lex_state = 60}, [1264] = {.lex_state = 60}, [1265] = {.lex_state = 60}, [1266] = {.lex_state = 60}, @@ -14464,15 +14468,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1270] = {.lex_state = 60}, [1271] = {.lex_state = 60}, [1272] = {.lex_state = 60}, - [1273] = {.lex_state = 60}, + [1273] = {.lex_state = 64}, [1274] = {.lex_state = 60}, - [1275] = {.lex_state = 60}, + [1275] = {.lex_state = 64}, [1276] = {.lex_state = 64}, - [1277] = {.lex_state = 60}, + [1277] = {.lex_state = 64}, [1278] = {.lex_state = 60}, [1279] = {.lex_state = 60}, [1280] = {.lex_state = 64}, - [1281] = {.lex_state = 64}, + [1281] = {.lex_state = 60}, [1282] = {.lex_state = 60}, [1283] = {.lex_state = 60}, [1284] = {.lex_state = 60}, @@ -14481,23 +14485,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1287] = {.lex_state = 64}, [1288] = {.lex_state = 60}, [1289] = {.lex_state = 60}, - [1290] = {.lex_state = 64}, + [1290] = {.lex_state = 60}, [1291] = {.lex_state = 60}, [1292] = {.lex_state = 60}, - [1293] = {.lex_state = 60}, + [1293] = {.lex_state = 64}, [1294] = {.lex_state = 60}, [1295] = {.lex_state = 60}, - [1296] = {.lex_state = 64}, + [1296] = {.lex_state = 60}, [1297] = {.lex_state = 60}, [1298] = {.lex_state = 60}, [1299] = {.lex_state = 60}, [1300] = {.lex_state = 60}, - [1301] = {.lex_state = 64}, - [1302] = {.lex_state = 60}, - [1303] = {.lex_state = 64}, + [1301] = {.lex_state = 60}, + [1302] = {.lex_state = 64}, + [1303] = {.lex_state = 60}, [1304] = {.lex_state = 64}, - [1305] = {.lex_state = 60}, - [1306] = {.lex_state = 64}, + [1305] = {.lex_state = 64}, + [1306] = {.lex_state = 60}, [1307] = {.lex_state = 64}, [1308] = {.lex_state = 64}, [1309] = {.lex_state = 64}, @@ -14511,25 +14515,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1317] = {.lex_state = 64}, [1318] = {.lex_state = 64}, [1319] = {.lex_state = 64}, - [1320] = {.lex_state = 64}, + [1320] = {.lex_state = 65}, [1321] = {.lex_state = 64}, [1322] = {.lex_state = 64}, [1323] = {.lex_state = 64}, - [1324] = {.lex_state = 65}, + [1324] = {.lex_state = 64}, [1325] = {.lex_state = 64}, - [1326] = {.lex_state = 59}, + [1326] = {.lex_state = 64}, [1327] = {.lex_state = 65}, - [1328] = {.lex_state = 65}, - [1329] = {.lex_state = 59}, - [1330] = {.lex_state = 65}, - [1331] = {.lex_state = 33}, - [1332] = {.lex_state = 59}, - [1333] = {.lex_state = 59}, - [1334] = {.lex_state = 65}, - [1335] = {.lex_state = 65}, - [1336] = {.lex_state = 59}, + [1328] = {.lex_state = 59}, + [1329] = {.lex_state = 65}, + [1330] = {.lex_state = 59}, + [1331] = {.lex_state = 59}, + [1332] = {.lex_state = 33}, + [1333] = {.lex_state = 65}, + [1334] = {.lex_state = 59}, + [1335] = {.lex_state = 59}, + [1336] = {.lex_state = 65}, [1337] = {.lex_state = 59}, - [1338] = {.lex_state = 59}, + [1338] = {.lex_state = 64}, [1339] = {.lex_state = 59}, [1340] = {.lex_state = 59}, [1341] = {.lex_state = 59}, @@ -14538,79 +14542,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1344] = {.lex_state = 59}, [1345] = {.lex_state = 65}, [1346] = {.lex_state = 59}, - [1347] = {.lex_state = 59}, + [1347] = {.lex_state = 65}, [1348] = {.lex_state = 59}, - [1349] = {.lex_state = 64}, - [1350] = {.lex_state = 59}, - [1351] = {.lex_state = 59}, - [1352] = {.lex_state = 59}, + [1349] = {.lex_state = 59}, + [1350] = {.lex_state = 65}, + [1351] = {.lex_state = 65}, + [1352] = {.lex_state = 65}, [1353] = {.lex_state = 59}, - [1354] = {.lex_state = 65}, + [1354] = {.lex_state = 59}, [1355] = {.lex_state = 59}, [1356] = {.lex_state = 59}, - [1357] = {.lex_state = 59}, - [1358] = {.lex_state = 59}, + [1357] = {.lex_state = 64}, + [1358] = {.lex_state = 65}, [1359] = {.lex_state = 59}, [1360] = {.lex_state = 59}, [1361] = {.lex_state = 59}, - [1362] = {.lex_state = 59}, + [1362] = {.lex_state = 65}, [1363] = {.lex_state = 59}, - [1364] = {.lex_state = 65}, - [1365] = {.lex_state = 65}, + [1364] = {.lex_state = 59}, + [1365] = {.lex_state = 59}, [1366] = {.lex_state = 59}, - [1367] = {.lex_state = 65}, - [1368] = {.lex_state = 65}, - [1369] = {.lex_state = 65}, - [1370] = {.lex_state = 64}, - [1371] = {.lex_state = 65}, - [1372] = {.lex_state = 65}, + [1367] = {.lex_state = 59}, + [1368] = {.lex_state = 59}, + [1369] = {.lex_state = 59}, + [1370] = {.lex_state = 59}, + [1371] = {.lex_state = 59}, + [1372] = {.lex_state = 59}, [1373] = {.lex_state = 59}, [1374] = {.lex_state = 65}, [1375] = {.lex_state = 65}, - [1376] = {.lex_state = 65}, - [1377] = {.lex_state = 65}, + [1376] = {.lex_state = 59}, + [1377] = {.lex_state = 59}, [1378] = {.lex_state = 65}, - [1379] = {.lex_state = 59}, + [1379] = {.lex_state = 64}, [1380] = {.lex_state = 59}, - [1381] = {.lex_state = 59}, - [1382] = {.lex_state = 65}, + [1381] = {.lex_state = 65}, + [1382] = {.lex_state = 59}, [1383] = {.lex_state = 65}, [1384] = {.lex_state = 59}, - [1385] = {.lex_state = 64}, - [1386] = {.lex_state = 59}, - [1387] = {.lex_state = 64}, - [1388] = {.lex_state = 59}, + [1385] = {.lex_state = 65}, + [1386] = {.lex_state = 65}, + [1387] = {.lex_state = 65}, + [1388] = {.lex_state = 65}, [1389] = {.lex_state = 59}, - [1390] = {.lex_state = 59}, - [1391] = {.lex_state = 59}, + [1390] = {.lex_state = 65}, + [1391] = {.lex_state = 65}, [1392] = {.lex_state = 65}, [1393] = {.lex_state = 59}, [1394] = {.lex_state = 59}, - [1395] = {.lex_state = 64}, - [1396] = {.lex_state = 65}, - [1397] = {.lex_state = 59}, + [1395] = {.lex_state = 59}, + [1396] = {.lex_state = 64}, + [1397] = {.lex_state = 64}, [1398] = {.lex_state = 59}, - [1399] = {.lex_state = 33}, - [1400] = {.lex_state = 33}, + [1399] = {.lex_state = 59}, + [1400] = {.lex_state = 65}, [1401] = {.lex_state = 33}, - [1402] = {.lex_state = 64}, + [1402] = {.lex_state = 33}, [1403] = {.lex_state = 33}, - [1404] = {.lex_state = 64}, + [1404] = {.lex_state = 33}, [1405] = {.lex_state = 33}, [1406] = {.lex_state = 33}, [1407] = {.lex_state = 33}, [1408] = {.lex_state = 33}, [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 65}, + [1410] = {.lex_state = 33}, [1411] = {.lex_state = 33}, [1412] = {.lex_state = 33}, [1413] = {.lex_state = 33}, [1414] = {.lex_state = 33}, - [1415] = {.lex_state = 33}, + [1415] = {.lex_state = 64}, [1416] = {.lex_state = 33}, [1417] = {.lex_state = 33}, - [1418] = {.lex_state = 33}, - [1419] = {.lex_state = 64}, + [1418] = {.lex_state = 65}, + [1419] = {.lex_state = 33}, [1420] = {.lex_state = 33}, [1421] = {.lex_state = 33}, [1422] = {.lex_state = 33}, @@ -14618,26 +14622,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1424] = {.lex_state = 33}, [1425] = {.lex_state = 33}, [1426] = {.lex_state = 33}, - [1427] = {.lex_state = 33}, + [1427] = {.lex_state = 64}, [1428] = {.lex_state = 33}, [1429] = {.lex_state = 64}, [1430] = {.lex_state = 33}, - [1431] = {.lex_state = 65}, + [1431] = {.lex_state = 33}, [1432] = {.lex_state = 33}, - [1433] = {.lex_state = 64}, - [1434] = {.lex_state = 64}, - [1435] = {.lex_state = 33}, + [1433] = {.lex_state = 33}, + [1434] = {.lex_state = 33}, + [1435] = {.lex_state = 64}, [1436] = {.lex_state = 33}, - [1437] = {.lex_state = 64}, - [1438] = {.lex_state = 33}, - [1439] = {.lex_state = 33}, - [1440] = {.lex_state = 64}, + [1437] = {.lex_state = 33}, + [1438] = {.lex_state = 64}, + [1439] = {.lex_state = 64}, + [1440] = {.lex_state = 33}, [1441] = {.lex_state = 64}, - [1442] = {.lex_state = 64}, - [1443] = {.lex_state = 33}, - [1444] = {.lex_state = 33}, - [1445] = {.lex_state = 33}, - [1446] = {.lex_state = 64}, + [1442] = {.lex_state = 33}, + [1443] = {.lex_state = 64}, + [1444] = {.lex_state = 64}, + [1445] = {.lex_state = 64}, + [1446] = {.lex_state = 33}, [1447] = {.lex_state = 64}, [1448] = {.lex_state = 64}, [1449] = {.lex_state = 64}, @@ -14660,11 +14664,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1466] = {.lex_state = 64}, [1467] = {.lex_state = 64}, [1468] = {.lex_state = 64}, - [1469] = {.lex_state = 64}, + [1469] = {.lex_state = 62}, [1470] = {.lex_state = 64}, [1471] = {.lex_state = 64}, [1472] = {.lex_state = 64}, - [1473] = {.lex_state = 62}, + [1473] = {.lex_state = 64}, [1474] = {.lex_state = 64}, [1475] = {.lex_state = 64}, [1476] = {.lex_state = 64}, @@ -14686,16 +14690,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1492] = {.lex_state = 64}, [1493] = {.lex_state = 64}, [1494] = {.lex_state = 64}, - [1495] = {.lex_state = 69}, + [1495] = {.lex_state = 64}, [1496] = {.lex_state = 64}, - [1497] = {.lex_state = 64}, + [1497] = {.lex_state = 69}, [1498] = {.lex_state = 64}, [1499] = {.lex_state = 64}, - [1500] = {.lex_state = 69}, + [1500] = {.lex_state = 64}, [1501] = {.lex_state = 64}, [1502] = {.lex_state = 64}, [1503] = {.lex_state = 64}, - [1504] = {.lex_state = 64}, + [1504] = {.lex_state = 69}, [1505] = {.lex_state = 64}, [1506] = {.lex_state = 64}, [1507] = {.lex_state = 64}, @@ -14707,301 +14711,301 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1513] = {.lex_state = 64}, [1514] = {.lex_state = 64}, [1515] = {.lex_state = 64}, - [1516] = {.lex_state = 62}, - [1517] = {.lex_state = 64}, - [1518] = {.lex_state = 66}, + [1516] = {.lex_state = 64}, + [1517] = {.lex_state = 62}, + [1518] = {.lex_state = 64}, [1519] = {.lex_state = 64}, - [1520] = {.lex_state = 66}, + [1520] = {.lex_state = 62}, [1521] = {.lex_state = 64}, [1522] = {.lex_state = 64}, [1523] = {.lex_state = 64}, [1524] = {.lex_state = 64}, - [1525] = {.lex_state = 66}, + [1525] = {.lex_state = 64}, [1526] = {.lex_state = 64}, [1527] = {.lex_state = 64}, [1528] = {.lex_state = 62}, - [1529] = {.lex_state = 64}, - [1530] = {.lex_state = 64}, - [1531] = {.lex_state = 64}, + [1529] = {.lex_state = 66}, + [1530] = {.lex_state = 66}, + [1531] = {.lex_state = 69}, [1532] = {.lex_state = 64}, [1533] = {.lex_state = 64}, - [1534] = {.lex_state = 62}, - [1535] = {.lex_state = 69}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 64}, + [1534] = {.lex_state = 64}, + [1535] = {.lex_state = 66}, + [1536] = {.lex_state = 64}, + [1537] = {.lex_state = 0}, [1538] = {.lex_state = 64}, [1539] = {.lex_state = 64}, - [1540] = {.lex_state = 0}, + [1540] = {.lex_state = 64}, [1541] = {.lex_state = 64}, [1542] = {.lex_state = 64}, [1543] = {.lex_state = 64}, [1544] = {.lex_state = 64}, [1545] = {.lex_state = 64}, [1546] = {.lex_state = 64}, - [1547] = {.lex_state = 64}, + [1547] = {.lex_state = 0}, [1548] = {.lex_state = 64}, [1549] = {.lex_state = 64}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 140}, + [1550] = {.lex_state = 64}, + [1551] = {.lex_state = 140}, + [1552] = {.lex_state = 60}, [1553] = {.lex_state = 68}, - [1554] = {.lex_state = 140}, + [1554] = {.lex_state = 64}, [1555] = {.lex_state = 140}, - [1556] = {.lex_state = 64}, - [1557] = {.lex_state = 64}, - [1558] = {.lex_state = 140}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 68}, - [1561] = {.lex_state = 140}, + [1556] = {.lex_state = 60}, + [1557] = {.lex_state = 60}, + [1558] = {.lex_state = 68}, + [1559] = {.lex_state = 140}, + [1560] = {.lex_state = 140}, + [1561] = {.lex_state = 68}, [1562] = {.lex_state = 68}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 68}, - [1565] = {.lex_state = 68}, - [1566] = {.lex_state = 64}, + [1563] = {.lex_state = 64}, + [1564] = {.lex_state = 140}, + [1565] = {.lex_state = 60}, + [1566] = {.lex_state = 68}, [1567] = {.lex_state = 66}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 66}, - [1570] = {.lex_state = 64}, - [1571] = {.lex_state = 140}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 64}, + [1568] = {.lex_state = 66}, + [1569] = {.lex_state = 140}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 64}, + [1573] = {.lex_state = 62}, [1574] = {.lex_state = 66}, - [1575] = {.lex_state = 62}, - [1576] = {.lex_state = 66}, + [1575] = {.lex_state = 66}, + [1576] = {.lex_state = 64}, [1577] = {.lex_state = 64}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 140}, + [1578] = {.lex_state = 140}, + [1579] = {.lex_state = 0}, [1580] = {.lex_state = 66}, - [1581] = {.lex_state = 66}, + [1581] = {.lex_state = 140}, [1582] = {.lex_state = 140}, [1583] = {.lex_state = 66}, [1584] = {.lex_state = 66}, - [1585] = {.lex_state = 60}, - [1586] = {.lex_state = 60}, - [1587] = {.lex_state = 62}, + [1585] = {.lex_state = 140}, + [1586] = {.lex_state = 66}, + [1587] = {.lex_state = 64}, [1588] = {.lex_state = 64}, - [1589] = {.lex_state = 66}, - [1590] = {.lex_state = 64}, - [1591] = {.lex_state = 140}, - [1592] = {.lex_state = 140}, - [1593] = {.lex_state = 62}, + [1589] = {.lex_state = 64}, + [1590] = {.lex_state = 62}, + [1591] = {.lex_state = 66}, + [1592] = {.lex_state = 64}, + [1593] = {.lex_state = 66}, [1594] = {.lex_state = 64}, - [1595] = {.lex_state = 66}, - [1596] = {.lex_state = 60}, - [1597] = {.lex_state = 140}, - [1598] = {.lex_state = 66}, - [1599] = {.lex_state = 64}, - [1600] = {.lex_state = 60}, + [1595] = {.lex_state = 140}, + [1596] = {.lex_state = 62}, + [1597] = {.lex_state = 66}, + [1598] = {.lex_state = 140}, + [1599] = {.lex_state = 62}, + [1600] = {.lex_state = 64}, [1601] = {.lex_state = 64}, - [1602] = {.lex_state = 64}, - [1603] = {.lex_state = 0}, + [1602] = {.lex_state = 140}, + [1603] = {.lex_state = 64}, [1604] = {.lex_state = 64}, - [1605] = {.lex_state = 140}, + [1605] = {.lex_state = 64}, [1606] = {.lex_state = 64}, [1607] = {.lex_state = 64}, [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 62}, - [1610] = {.lex_state = 64}, - [1611] = {.lex_state = 140}, + [1609] = {.lex_state = 64}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 64}, [1612] = {.lex_state = 64}, - [1613] = {.lex_state = 64}, - [1614] = {.lex_state = 140}, - [1615] = {.lex_state = 64}, + [1613] = {.lex_state = 140}, + [1614] = {.lex_state = 64}, + [1615] = {.lex_state = 69}, [1616] = {.lex_state = 64}, [1617] = {.lex_state = 64}, - [1618] = {.lex_state = 69}, - [1619] = {.lex_state = 140}, - [1620] = {.lex_state = 69}, - [1621] = {.lex_state = 140}, - [1622] = {.lex_state = 62}, - [1623] = {.lex_state = 69}, - [1624] = {.lex_state = 64}, + [1618] = {.lex_state = 66}, + [1619] = {.lex_state = 69}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 69}, + [1622] = {.lex_state = 69}, + [1623] = {.lex_state = 64}, + [1624] = {.lex_state = 140}, [1625] = {.lex_state = 69}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 140}, + [1626] = {.lex_state = 69}, + [1627] = {.lex_state = 69}, [1628] = {.lex_state = 69}, - [1629] = {.lex_state = 69}, + [1629] = {.lex_state = 62}, [1630] = {.lex_state = 69}, - [1631] = {.lex_state = 66}, - [1632] = {.lex_state = 64}, - [1633] = {.lex_state = 140}, - [1634] = {.lex_state = 140}, - [1635] = {.lex_state = 69}, - [1636] = {.lex_state = 64}, - [1637] = {.lex_state = 66}, + [1631] = {.lex_state = 69}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 64}, + [1635] = {.lex_state = 140}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 140}, [1638] = {.lex_state = 66}, - [1639] = {.lex_state = 0}, + [1639] = {.lex_state = 140}, [1640] = {.lex_state = 69}, - [1641] = {.lex_state = 69}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 64}, - [1645] = {.lex_state = 69}, + [1641] = {.lex_state = 140}, + [1642] = {.lex_state = 66}, + [1643] = {.lex_state = 140}, + [1644] = {.lex_state = 140}, + [1645] = {.lex_state = 140}, [1646] = {.lex_state = 140}, [1647] = {.lex_state = 140}, - [1648] = {.lex_state = 55}, + [1648] = {.lex_state = 140}, [1649] = {.lex_state = 140}, - [1650] = {.lex_state = 140}, + [1650] = {.lex_state = 62}, [1651] = {.lex_state = 140}, - [1652] = {.lex_state = 140}, + [1652] = {.lex_state = 64}, [1653] = {.lex_state = 140}, - [1654] = {.lex_state = 62}, - [1655] = {.lex_state = 140}, - [1656] = {.lex_state = 64}, + [1654] = {.lex_state = 140}, + [1655] = {.lex_state = 64}, + [1656] = {.lex_state = 140}, [1657] = {.lex_state = 140}, [1658] = {.lex_state = 140}, - [1659] = {.lex_state = 140}, + [1659] = {.lex_state = 55}, [1660] = {.lex_state = 140}, - [1661] = {.lex_state = 64}, - [1662] = {.lex_state = 140}, - [1663] = {.lex_state = 66}, - [1664] = {.lex_state = 140}, - [1665] = {.lex_state = 64}, - [1666] = {.lex_state = 38}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 64}, - [1669] = {.lex_state = 62}, - [1670] = {.lex_state = 0}, + [1661] = {.lex_state = 66}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 64}, + [1664] = {.lex_state = 64}, + [1665] = {.lex_state = 38}, + [1666] = {.lex_state = 40}, + [1667] = {.lex_state = 64}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 64}, + [1670] = {.lex_state = 41}, [1671] = {.lex_state = 64}, [1672] = {.lex_state = 64}, - [1673] = {.lex_state = 64}, - [1674] = {.lex_state = 55}, - [1675] = {.lex_state = 62}, - [1676] = {.lex_state = 43}, + [1673] = {.lex_state = 38}, + [1674] = {.lex_state = 38}, + [1675] = {.lex_state = 38}, + [1676] = {.lex_state = 41}, [1677] = {.lex_state = 64}, - [1678] = {.lex_state = 45}, - [1679] = {.lex_state = 64}, - [1680] = {.lex_state = 64}, - [1681] = {.lex_state = 38}, - [1682] = {.lex_state = 43}, - [1683] = {.lex_state = 43}, + [1678] = {.lex_state = 0}, + [1679] = {.lex_state = 41}, + [1680] = {.lex_state = 41}, + [1681] = {.lex_state = 40}, + [1682] = {.lex_state = 64}, + [1683] = {.lex_state = 64}, [1684] = {.lex_state = 64}, - [1685] = {.lex_state = 64}, - [1686] = {.lex_state = 45}, - [1687] = {.lex_state = 38}, - [1688] = {.lex_state = 64}, - [1689] = {.lex_state = 64}, - [1690] = {.lex_state = 0}, + [1685] = {.lex_state = 0}, + [1686] = {.lex_state = 38}, + [1687] = {.lex_state = 64}, + [1688] = {.lex_state = 41}, + [1689] = {.lex_state = 38}, + [1690] = {.lex_state = 140}, [1691] = {.lex_state = 64}, - [1692] = {.lex_state = 64}, - [1693] = {.lex_state = 64}, + [1692] = {.lex_state = 41}, + [1693] = {.lex_state = 40}, [1694] = {.lex_state = 38}, - [1695] = {.lex_state = 62}, - [1696] = {.lex_state = 43}, - [1697] = {.lex_state = 43}, - [1698] = {.lex_state = 43}, - [1699] = {.lex_state = 45}, - [1700] = {.lex_state = 43}, - [1701] = {.lex_state = 62}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 41}, + [1697] = {.lex_state = 64}, + [1698] = {.lex_state = 40}, + [1699] = {.lex_state = 38}, + [1700] = {.lex_state = 64}, + [1701] = {.lex_state = 0}, [1702] = {.lex_state = 64}, [1703] = {.lex_state = 64}, - [1704] = {.lex_state = 140}, - [1705] = {.lex_state = 64}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 45}, - [1708] = {.lex_state = 43}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 64}, + [1707] = {.lex_state = 62}, + [1708] = {.lex_state = 62}, [1709] = {.lex_state = 64}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 66}, - [1712] = {.lex_state = 0}, + [1710] = {.lex_state = 41}, + [1711] = {.lex_state = 64}, + [1712] = {.lex_state = 41}, [1713] = {.lex_state = 64}, - [1714] = {.lex_state = 38}, + [1714] = {.lex_state = 62}, [1715] = {.lex_state = 64}, - [1716] = {.lex_state = 64}, - [1717] = {.lex_state = 64}, - [1718] = {.lex_state = 0}, + [1716] = {.lex_state = 55}, + [1717] = {.lex_state = 62}, + [1718] = {.lex_state = 40}, [1719] = {.lex_state = 64}, [1720] = {.lex_state = 64}, [1721] = {.lex_state = 64}, - [1722] = {.lex_state = 64}, - [1723] = {.lex_state = 38}, + [1722] = {.lex_state = 66}, + [1723] = {.lex_state = 64}, [1724] = {.lex_state = 64}, - [1725] = {.lex_state = 38}, + [1725] = {.lex_state = 64}, [1726] = {.lex_state = 64}, [1727] = {.lex_state = 64}, - [1728] = {.lex_state = 38}, - [1729] = {.lex_state = 38}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 64}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 64}, - [1734] = {.lex_state = 64}, + [1728] = {.lex_state = 64}, + [1729] = {.lex_state = 64}, + [1730] = {.lex_state = 64}, + [1731] = {.lex_state = 0}, + [1732] = {.lex_state = 64}, + [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 38}, [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 43}, - [1737] = {.lex_state = 45}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 45}, - [1741] = {.lex_state = 55}, + [1736] = {.lex_state = 0}, + [1737] = {.lex_state = 64}, + [1738] = {.lex_state = 40}, + [1739] = {.lex_state = 64}, + [1740] = {.lex_state = 0}, + [1741] = {.lex_state = 0}, [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 55}, - [1746] = {.lex_state = 64}, + [1743] = {.lex_state = 64}, + [1744] = {.lex_state = 55}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 40}, [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 40}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 0}, + [1748] = {.lex_state = 55}, + [1749] = {.lex_state = 55}, + [1750] = {.lex_state = 43}, + [1751] = {.lex_state = 43}, [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 55}, - [1754] = {.lex_state = 64}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, [1755] = {.lex_state = 0}, [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 64}, + [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 45}, - [1762] = {.lex_state = 64}, - [1763] = {.lex_state = 0}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 55}, + [1763] = {.lex_state = 43}, [1764] = {.lex_state = 0}, [1765] = {.lex_state = 55}, - [1766] = {.lex_state = 64}, + [1766] = {.lex_state = 0}, [1767] = {.lex_state = 0}, [1768] = {.lex_state = 0}, [1769] = {.lex_state = 0}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 40}, + [1771] = {.lex_state = 64}, [1772] = {.lex_state = 64}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 64}, + [1776] = {.lex_state = 0}, [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 40}, - [1779] = {.lex_state = 64}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, + [1778] = {.lex_state = 64}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 64}, + [1781] = {.lex_state = 64}, + [1782] = {.lex_state = 64}, [1783] = {.lex_state = 55}, [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, + [1785] = {.lex_state = 55}, + [1786] = {.lex_state = 43}, [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 40}, + [1790] = {.lex_state = 64}, + [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 55}, + [1793] = {.lex_state = 64}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, + [1798] = {.lex_state = 64}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 64}, + [1800] = {.lex_state = 40}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, + [1802] = {.lex_state = 64}, [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 64}, + [1804] = {.lex_state = 0}, [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 45}, + [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 40}, - [1809] = {.lex_state = 64}, - [1810] = {.lex_state = 0}, + [1808] = {.lex_state = 0}, + [1809] = {.lex_state = 0}, + [1810] = {.lex_state = 40}, [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, @@ -15011,415 +15015,412 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1817] = {.lex_state = 0}, [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 45}, - [1821] = {.lex_state = 0}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 43}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 55}, + [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 64}, - [1829] = {.lex_state = 64}, + [1827] = {.lex_state = 140}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 140}, [1830] = {.lex_state = 64}, - [1831] = {.lex_state = 55}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 140}, + [1831] = {.lex_state = 140}, + [1832] = {.lex_state = 42}, + [1833] = {.lex_state = 42}, [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 64}, + [1835] = {.lex_state = 42}, [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 140}, - [1841] = {.lex_state = 0}, + [1837] = {.lex_state = 42}, + [1838] = {.lex_state = 64}, + [1839] = {.lex_state = 42}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 140}, [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 140}, + [1844] = {.lex_state = 0}, [1845] = {.lex_state = 140}, - [1846] = {.lex_state = 140}, + [1846] = {.lex_state = 42}, [1847] = {.lex_state = 140}, - [1848] = {.lex_state = 39}, - [1849] = {.lex_state = 140}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 140}, - [1852] = {.lex_state = 55}, - [1853] = {.lex_state = 140}, + [1848] = {.lex_state = 140}, + [1849] = {.lex_state = 0}, + [1850] = {.lex_state = 42}, + [1851] = {.lex_state = 0}, + [1852] = {.lex_state = 0}, + [1853] = {.lex_state = 0}, [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 39}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 140}, - [1858] = {.lex_state = 39}, - [1859] = {.lex_state = 140}, - [1860] = {.lex_state = 140}, - [1861] = {.lex_state = 39}, + [1855] = {.lex_state = 55}, + [1856] = {.lex_state = 42}, + [1857] = {.lex_state = 55}, + [1858] = {.lex_state = 42}, + [1859] = {.lex_state = 64}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 42}, [1862] = {.lex_state = 140}, - [1863] = {.lex_state = 140}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 64}, + [1863] = {.lex_state = 0}, + [1864] = {.lex_state = 64}, + [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 39}, - [1869] = {.lex_state = 64}, - [1870] = {.lex_state = 140}, - [1871] = {.lex_state = 0}, + [1867] = {.lex_state = 64}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 140}, + [1870] = {.lex_state = 42}, + [1871] = {.lex_state = 64}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 140}, [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 39}, - [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, + [1876] = {.lex_state = 42}, + [1877] = {.lex_state = 140}, + [1878] = {.lex_state = 140}, + [1879] = {.lex_state = 140}, + [1880] = {.lex_state = 55}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 140}, + [1883] = {.lex_state = 42}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 64}, - [1887] = {.lex_state = 64}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 140}, - [1890] = {.lex_state = 0}, + [1886] = {.lex_state = 42}, + [1887] = {.lex_state = 0}, + [1888] = {.lex_state = 140}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 140}, [1891] = {.lex_state = 140}, - [1892] = {.lex_state = 39}, - [1893] = {.lex_state = 55}, - [1894] = {.lex_state = 140}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 0}, + [1894] = {.lex_state = 42}, [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 39}, + [1896] = {.lex_state = 140}, + [1897] = {.lex_state = 140}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 39}, - [1900] = {.lex_state = 140}, + [1899] = {.lex_state = 42}, + [1900] = {.lex_state = 0}, [1901] = {.lex_state = 140}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 39}, + [1902] = {.lex_state = 42}, + [1903] = {.lex_state = 0}, [1904] = {.lex_state = 140}, - [1905] = {.lex_state = 140}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 64}, - [1908] = {.lex_state = 39}, - [1909] = {.lex_state = 39}, + [1905] = {.lex_state = 64}, + [1906] = {.lex_state = 42}, + [1907] = {.lex_state = 140}, + [1908] = {.lex_state = 140}, + [1909] = {.lex_state = 0}, [1910] = {.lex_state = 140}, - [1911] = {.lex_state = 39}, + [1911] = {.lex_state = 0}, [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 39}, - [1917] = {.lex_state = 39}, + [1913] = {.lex_state = 64}, + [1914] = {.lex_state = 140}, + [1915] = {.lex_state = 42}, + [1916] = {.lex_state = 140}, + [1917] = {.lex_state = 0}, [1918] = {.lex_state = 140}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 64}, - [1921] = {.lex_state = 39}, + [1919] = {.lex_state = 42}, + [1920] = {.lex_state = 140}, + [1921] = {.lex_state = 0}, [1922] = {.lex_state = 140}, [1923] = {.lex_state = 140}, - [1924] = {.lex_state = 39}, - [1925] = {.lex_state = 39}, + [1924] = {.lex_state = 42}, + [1925] = {.lex_state = 0}, [1926] = {.lex_state = 140}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 39}, - [1929] = {.lex_state = 39}, - [1930] = {.lex_state = 39}, - [1931] = {.lex_state = 0}, + [1928] = {.lex_state = 43}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 0}, + [1931] = {.lex_state = 43}, [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 40}, + [1933] = {.lex_state = 53}, + [1934] = {.lex_state = 53}, + [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 40}, + [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 40}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 40}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 40}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 40}, - [1946] = {.lex_state = 40}, - [1947] = {.lex_state = 40}, - [1948] = {.lex_state = 53}, - [1949] = {.lex_state = 40}, - [1950] = {.lex_state = 40}, - [1951] = {.lex_state = 40}, - [1952] = {.lex_state = 64}, - [1953] = {.lex_state = 64}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 43}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 43}, + [1943] = {.lex_state = 0}, + [1944] = {.lex_state = 43}, + [1945] = {.lex_state = 53}, + [1946] = {.lex_state = 0}, + [1947] = {.lex_state = 53}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 64}, + [1950] = {.lex_state = 53}, + [1951] = {.lex_state = 53}, + [1952] = {.lex_state = 53}, + [1953] = {.lex_state = 0}, [1954] = {.lex_state = 64}, [1955] = {.lex_state = 53}, - [1956] = {.lex_state = 64}, - [1957] = {.lex_state = 40}, - [1958] = {.lex_state = 64}, - [1959] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, + [1957] = {.lex_state = 53}, + [1958] = {.lex_state = 53}, + [1959] = {.lex_state = 43}, [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 53}, + [1962] = {.lex_state = 0}, [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 40}, - [1968] = {.lex_state = 40}, + [1965] = {.lex_state = 43}, + [1966] = {.lex_state = 43}, + [1967] = {.lex_state = 0}, + [1968] = {.lex_state = 53}, [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 64}, - [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 40}, - [1976] = {.lex_state = 53}, - [1977] = {.lex_state = 64}, - [1978] = {.lex_state = 40}, - [1979] = {.lex_state = 53}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 64}, - [1982] = {.lex_state = 40}, - [1983] = {.lex_state = 0}, + [1970] = {.lex_state = 43}, + [1971] = {.lex_state = 53}, + [1972] = {.lex_state = 0}, + [1973] = {.lex_state = 43}, + [1974] = {.lex_state = 43}, + [1975] = {.lex_state = 64}, + [1976] = {.lex_state = 0}, + [1977] = {.lex_state = 53}, + [1978] = {.lex_state = 43}, + [1979] = {.lex_state = 0}, + [1980] = {.lex_state = 43}, + [1981] = {.lex_state = 43}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 43}, [1984] = {.lex_state = 0}, [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 53}, - [1987] = {.lex_state = 40}, - [1988] = {.lex_state = 53}, - [1989] = {.lex_state = 53}, - [1990] = {.lex_state = 53}, - [1991] = {.lex_state = 64}, - [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 0}, + [1986] = {.lex_state = 43}, + [1987] = {.lex_state = 43}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 43}, + [1990] = {.lex_state = 0}, + [1991] = {.lex_state = 0}, + [1992] = {.lex_state = 43}, + [1993] = {.lex_state = 43}, [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 64}, - [1996] = {.lex_state = 40}, - [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0}, + [1995] = {.lex_state = 43}, + [1996] = {.lex_state = 43}, + [1997] = {.lex_state = 64}, + [1998] = {.lex_state = 64}, + [1999] = {.lex_state = 64}, + [2000] = {.lex_state = 43}, + [2001] = {.lex_state = 53}, [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 64}, + [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 40}, - [2008] = {.lex_state = 0}, + [2006] = {.lex_state = 64}, + [2007] = {.lex_state = 0}, + [2008] = {.lex_state = 53}, [2009] = {.lex_state = 53}, - [2010] = {.lex_state = 40}, - [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 40}, + [2010] = {.lex_state = 64}, + [2011] = {.lex_state = 53}, + [2012] = {.lex_state = 0}, [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 64}, - [2015] = {.lex_state = 64}, + [2014] = {.lex_state = 0}, + [2015] = {.lex_state = 53}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 53}, + [2017] = {.lex_state = 0}, [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 0}, - [2020] = {.lex_state = 0}, + [2019] = {.lex_state = 53}, + [2020] = {.lex_state = 64}, [2021] = {.lex_state = 53}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 64}, - [2024] = {.lex_state = 40}, - [2025] = {.lex_state = 53}, + [2022] = {.lex_state = 43}, + [2023] = {.lex_state = 0}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 0}, [2026] = {.lex_state = 53}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, + [2027] = {.lex_state = 43}, + [2028] = {.lex_state = 64}, [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 64}, - [2031] = {.lex_state = 40}, - [2032] = {.lex_state = 0}, + [2030] = {.lex_state = 0}, + [2031] = {.lex_state = 0}, + [2032] = {.lex_state = 64}, [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 64}, + [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 64}, + [2037] = {.lex_state = 0}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 53}, - [2040] = {.lex_state = 53}, + [2039] = {.lex_state = 64}, + [2040] = {.lex_state = 43}, [2041] = {.lex_state = 64}, - [2042] = {.lex_state = 64}, - [2043] = {.lex_state = 64}, + [2042] = {.lex_state = 43}, + [2043] = {.lex_state = 0}, [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 64}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 53}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 64}, + [2047] = {.lex_state = 0}, [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 53}, - [2050] = {.lex_state = 64}, - [2051] = {.lex_state = 64}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 0}, + [2051] = {.lex_state = 0}, [2052] = {.lex_state = 0}, [2053] = {.lex_state = 53}, - [2054] = {.lex_state = 53}, + [2054] = {.lex_state = 0}, [2055] = {.lex_state = 0}, [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 0}, + [2057] = {.lex_state = 64}, [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 64}, + [2059] = {.lex_state = 53}, + [2060] = {.lex_state = 53}, [2061] = {.lex_state = 53}, [2062] = {.lex_state = 0}, [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 53}, - [2065] = {.lex_state = 64}, - [2066] = {.lex_state = 140}, - [2067] = {.lex_state = 53}, - [2068] = {.lex_state = 64}, - [2069] = {.lex_state = 64}, - [2070] = {.lex_state = 64}, - [2071] = {.lex_state = 53}, - [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 64}, - [2074] = {.lex_state = 64}, - [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 53}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 0}, + [2066] = {.lex_state = 53}, + [2067] = {.lex_state = 43}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 53}, + [2070] = {.lex_state = 0}, + [2071] = {.lex_state = 0}, + [2072] = {.lex_state = 53}, + [2073] = {.lex_state = 53}, + [2074] = {.lex_state = 0}, + [2075] = {.lex_state = 43}, + [2076] = {.lex_state = 43}, + [2077] = {.lex_state = 0}, [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 53}, - [2080] = {.lex_state = 40}, - [2081] = {.lex_state = 53}, - [2082] = {.lex_state = 40}, - [2083] = {.lex_state = 40}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 140}, - [2086] = {.lex_state = 64}, + [2079] = {.lex_state = 0}, + [2080] = {.lex_state = 64}, + [2081] = {.lex_state = 64}, + [2082] = {.lex_state = 64}, + [2083] = {.lex_state = 53}, + [2084] = {.lex_state = 43}, + [2085] = {.lex_state = 64}, + [2086] = {.lex_state = 43}, [2087] = {.lex_state = 0}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 64}, - [2090] = {.lex_state = 64}, - [2091] = {.lex_state = 64}, - [2092] = {.lex_state = 64}, + [2090] = {.lex_state = 0}, + [2091] = {.lex_state = 0}, + [2092] = {.lex_state = 0}, [2093] = {.lex_state = 53}, - [2094] = {.lex_state = 40}, - [2095] = {.lex_state = 53}, - [2096] = {.lex_state = 140}, - [2097] = {.lex_state = 53}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 140}, - [2100] = {.lex_state = 53}, + [2094] = {.lex_state = 0}, + [2095] = {.lex_state = 0}, + [2096] = {.lex_state = 64}, + [2097] = {.lex_state = 0}, + [2098] = {.lex_state = 43}, + [2099] = {.lex_state = 43}, + [2100] = {.lex_state = 64}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, [2104] = {.lex_state = 0}, - [2105] = {.lex_state = 53}, + [2105] = {.lex_state = 0}, [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 64}, - [2108] = {.lex_state = 53}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 64}, - [2111] = {.lex_state = 53}, + [2107] = {.lex_state = 0}, + [2108] = {.lex_state = 64}, + [2109] = {.lex_state = 64}, + [2110] = {.lex_state = 0}, + [2111] = {.lex_state = 0}, [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 64}, + [2113] = {.lex_state = 53}, + [2114] = {.lex_state = 43}, + [2115] = {.lex_state = 53}, + [2116] = {.lex_state = 64}, + [2117] = {.lex_state = 53}, [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 64}, - [2120] = {.lex_state = 40}, - [2121] = {.lex_state = 53}, + [2119] = {.lex_state = 0}, + [2120] = {.lex_state = 64}, + [2121] = {.lex_state = 64}, [2122] = {.lex_state = 53}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 53}, + [2123] = {.lex_state = 53}, + [2124] = {.lex_state = 64}, [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, + [2126] = {.lex_state = 64}, + [2127] = {.lex_state = 64}, [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 64}, - [2131] = {.lex_state = 64}, - [2132] = {.lex_state = 140}, - [2133] = {.lex_state = 64}, - [2134] = {.lex_state = 40}, - [2135] = {.lex_state = 0}, + [2129] = {.lex_state = 53}, + [2130] = {.lex_state = 0}, + [2131] = {.lex_state = 0}, + [2132] = {.lex_state = 0}, + [2133] = {.lex_state = 0}, + [2134] = {.lex_state = 64}, + [2135] = {.lex_state = 64}, [2136] = {.lex_state = 0}, [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 53}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 40}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 64}, + [2138] = {.lex_state = 64}, + [2139] = {.lex_state = 140}, + [2140] = {.lex_state = 64}, + [2141] = {.lex_state = 43}, + [2142] = {.lex_state = 53}, + [2143] = {.lex_state = 53}, + [2144] = {.lex_state = 53}, + [2145] = {.lex_state = 140}, + [2146] = {.lex_state = 53}, [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 140}, - [2149] = {.lex_state = 0}, + [2148] = {.lex_state = 64}, + [2149] = {.lex_state = 53}, [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 53}, + [2151] = {.lex_state = 0}, [2152] = {.lex_state = 64}, - [2153] = {.lex_state = 40}, - [2154] = {.lex_state = 53}, - [2155] = {.lex_state = 53}, - [2156] = {.lex_state = 40}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 53}, + [2153] = {.lex_state = 140}, + [2154] = {.lex_state = 140}, + [2155] = {.lex_state = 64}, + [2156] = {.lex_state = 64}, + [2157] = {.lex_state = 64}, + [2158] = {.lex_state = 64}, [2159] = {.lex_state = 53}, [2160] = {.lex_state = 64}, - [2161] = {.lex_state = 40}, + [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 64}, + [2163] = {.lex_state = 53}, + [2164] = {.lex_state = 140}, + [2165] = {.lex_state = 140}, + [2166] = {.lex_state = 53}, + [2167] = {.lex_state = 140}, + [2168] = {.lex_state = 0}, [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 40}, + [2171] = {.lex_state = 0}, [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 40}, + [2173] = {.lex_state = 0}, [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 140}, - [2176] = {.lex_state = 53}, - [2177] = {.lex_state = 53}, - [2178] = {.lex_state = 0}, + [2175] = {.lex_state = 64}, + [2176] = {.lex_state = 64}, + [2177] = {.lex_state = 64}, + [2178] = {.lex_state = 140}, [2179] = {.lex_state = 53}, - [2180] = {.lex_state = 53}, + [2180] = {.lex_state = 0}, [2181] = {.lex_state = 53}, - [2182] = {.lex_state = 53}, + [2182] = {.lex_state = 0}, [2183] = {.lex_state = 0}, [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 53}, + [2185] = {.lex_state = 0}, [2186] = {.lex_state = 53}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 53}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 140}, - [2192] = {.lex_state = 140}, - [2193] = {.lex_state = 140}, - [2194] = {.lex_state = 64}, + [2187] = {.lex_state = 140}, + [2188] = {.lex_state = 53}, + [2189] = {.lex_state = 43}, + [2190] = {.lex_state = 64}, + [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 53}, + [2193] = {.lex_state = 53}, + [2194] = {.lex_state = 0}, [2195] = {.lex_state = 0}, [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 140}, - [2198] = {.lex_state = 53}, - [2199] = {.lex_state = 0}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 64}, + [2199] = {.lex_state = 140}, [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 53}, - [2202] = {.lex_state = 64}, + [2201] = {.lex_state = 43}, + [2202] = {.lex_state = 53}, [2203] = {.lex_state = 53}, - [2204] = {.lex_state = 40}, + [2204] = {.lex_state = 140}, [2205] = {.lex_state = 53}, - [2206] = {.lex_state = 140}, - [2207] = {.lex_state = 64}, + [2206] = {.lex_state = 64}, + [2207] = {.lex_state = 53}, [2208] = {.lex_state = 53}, - [2209] = {.lex_state = 140}, - [2210] = {.lex_state = 40}, + [2209] = {.lex_state = 53}, + [2210] = {.lex_state = 0}, [2211] = {.lex_state = 140}, - [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 53}, - [2216] = {.lex_state = 53}, - [2217] = {.lex_state = 53}, - [2218] = {.lex_state = 140}, - [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 140}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 64}, - [2224] = {.lex_state = 0}, + [2212] = {.lex_state = 140}, + [2213] = {.lex_state = 64}, + [2214] = {.lex_state = 140}, + [2215] = {.lex_state = 64}, + [2216] = {.lex_state = 140}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 64}, + [2219] = {.lex_state = 140}, + [2220] = {.lex_state = 53}, + [2221] = {.lex_state = 53}, + [2222] = {.lex_state = 140}, + [2223] = {.lex_state = 53}, + [2224] = {.lex_state = 64}, [2225] = {.lex_state = 140}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 64}, - [2228] = {.lex_state = 140}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -15572,7 +15573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2187), + [sym_translation_unit] = STATE(2118), [sym_preproc_include] = STATE(52), [sym_preproc_def] = STATE(52), [sym_preproc_function_def] = STATE(52), @@ -15580,24 +15581,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(462), + [sym__old_style_function_definition] = STATE(472), [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(867), + [sym__declaration_modifiers] = STATE(869), [sym__declaration_specifiers] = STATE(1477), [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_ms_call_modifier] = STATE(856), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1128), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym__top_level_expression_statement] = STATE(52), @@ -15611,35 +15612,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(1302), - [sym__expression_not_binary] = STATE(1305), - [sym_conditional_expression] = STATE(1305), - [sym_assignment_expression] = STATE(1305), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(1305), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_sizeof_expression] = STATE(1305), - [sym_alignof_expression] = STATE(1305), - [sym_offsetof_expression] = STATE(1305), - [sym_generic_expression] = STATE(1305), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(1305), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(1305), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(1305), - [sym_concatenated_string] = STATE(1305), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(1305), + [sym__expression] = STATE(1306), + [sym__expression_not_binary] = STATE(1303), + [sym__string] = STATE(1303), + [sym_conditional_expression] = STATE(1303), + [sym_assignment_expression] = STATE(1303), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(1303), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(1303), + [sym_cast_expression] = STATE(1303), + [sym_sizeof_expression] = STATE(1303), + [sym_alignof_expression] = STATE(1303), + [sym_offsetof_expression] = STATE(1303), + [sym_generic_expression] = STATE(1303), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(1303), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(1303), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(1303), + [sym_concatenated_string] = STATE(1303), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(1303), [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -15740,28 +15742,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(14), [sym_preproc_if] = STATE(14), [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1988), - [sym_preproc_elif] = STATE(1988), - [sym_preproc_elifdef] = STATE(1988), + [sym_preproc_else] = STATE(1947), + [sym_preproc_elif] = STATE(1947), + [sym_preproc_elifdef] = STATE(1947), [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(14), [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(14), [sym_labeled_statement] = STATE(14), [sym_expression_statement] = STATE(14), @@ -15777,36 +15779,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(14), [sym_seh_try_statement] = STATE(14), [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -15908,79 +15911,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(10), - [sym_preproc_def] = STATE(10), - [sym_preproc_function_def] = STATE(10), - [sym_preproc_call] = STATE(10), - [sym_preproc_if] = STATE(10), - [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(1955), - [sym_preproc_elif] = STATE(1955), - [sym_preproc_elifdef] = STATE(1955), - [sym_function_definition] = STATE(10), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(7), + [sym_preproc_def] = STATE(7), + [sym_preproc_function_def] = STATE(7), + [sym_preproc_call] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_ifdef] = STATE(7), + [sym_preproc_else] = STATE(2083), + [sym_preproc_elif] = STATE(2083), + [sym_preproc_elifdef] = STATE(2083), + [sym_function_definition] = STATE(7), + [sym__old_style_function_definition] = STATE(141), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym_seh_try_statement] = STATE(10), - [sym_seh_leave_statement] = STATE(10), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_case_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym_seh_try_statement] = STATE(7), + [sym_seh_leave_statement] = STATE(7), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16088,28 +16092,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(14), [sym_preproc_if] = STATE(14), [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(2185), - [sym_preproc_elif] = STATE(2185), - [sym_preproc_elifdef] = STATE(2185), + [sym_preproc_else] = STATE(1933), + [sym_preproc_elif] = STATE(1933), + [sym_preproc_elifdef] = STATE(1933), [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(14), [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(14), [sym_labeled_statement] = STATE(14), [sym_expression_statement] = STATE(14), @@ -16125,36 +16129,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(14), [sym_seh_try_statement] = STATE(14), [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16256,79 +16261,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [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(2205), - [sym_preproc_elif] = STATE(2205), - [sym_preproc_elifdef] = STATE(2205), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(6), + [sym_preproc_def] = STATE(6), + [sym_preproc_function_def] = STATE(6), + [sym_preproc_call] = STATE(6), + [sym_preproc_if] = STATE(6), + [sym_preproc_ifdef] = STATE(6), + [sym_preproc_else] = STATE(2026), + [sym_preproc_elif] = STATE(2026), + [sym_preproc_elifdef] = STATE(2026), + [sym_function_definition] = STATE(6), + [sym__old_style_function_definition] = STATE(141), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_case_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym_seh_try_statement] = STATE(6), + [sym_seh_leave_statement] = STATE(6), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16436,28 +16442,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(14), [sym_preproc_if] = STATE(14), [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1962), - [sym_preproc_elif] = STATE(1962), - [sym_preproc_elifdef] = STATE(1962), + [sym_preproc_else] = STATE(2019), + [sym_preproc_elif] = STATE(2019), + [sym_preproc_elifdef] = STATE(2019), [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(14), [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(14), [sym_labeled_statement] = STATE(14), [sym_expression_statement] = STATE(14), @@ -16473,36 +16479,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(14), [sym_seh_try_statement] = STATE(14), [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16604,79 +16611,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [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(2009), - [sym_preproc_elif] = STATE(2009), - [sym_preproc_elifdef] = STATE(2009), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(2072), + [sym_preproc_elif] = STATE(2072), + [sym_preproc_elifdef] = STATE(2072), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(141), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16778,79 +16786,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [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(1979), - [sym_preproc_elif] = STATE(1979), - [sym_preproc_elifdef] = STATE(1979), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(2093), + [sym_preproc_elif] = STATE(2093), + [sym_preproc_elifdef] = STATE(2093), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(141), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16952,79 +16961,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(2079), - [sym_preproc_elif] = STATE(2079), - [sym_preproc_elifdef] = STATE(2079), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_call] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(2001), + [sym_preproc_elif] = STATE(2001), + [sym_preproc_elifdef] = STATE(2001), + [sym_function_definition] = STATE(8), + [sym__old_style_function_definition] = STATE(141), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(8), + [sym_labeled_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_case_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_goto_statement] = STATE(8), + [sym_seh_try_statement] = STATE(8), + [sym_seh_leave_statement] = STATE(8), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17126,79 +17136,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1989), - [sym_preproc_elif] = STATE(1989), - [sym_preproc_elifdef] = STATE(1989), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1934), + [sym_preproc_elif] = STATE(1934), + [sym_preproc_elifdef] = STATE(1934), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(141), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym_seh_try_statement] = STATE(2), + [sym_seh_leave_statement] = STATE(2), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17300,79 +17311,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(2093), - [sym_preproc_elif] = STATE(2093), - [sym_preproc_elifdef] = STATE(2093), - [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(158), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(1977), + [sym_preproc_elif] = STATE(1977), + [sym_preproc_elifdef] = STATE(1977), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(141), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym_seh_try_statement] = STATE(4), + [sym_seh_leave_statement] = STATE(4), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17474,78 +17486,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2208), - [sym_preproc_elif] = STATE(2208), - [sym_function_definition] = STATE(27), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2142), + [sym_preproc_elif] = STATE(2142), + [sym_function_definition] = STATE(16), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -17651,27 +17664,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(2025), - [sym_preproc_elif] = STATE(2025), + [sym_preproc_else] = STATE(2069), + [sym_preproc_elif] = STATE(2069), [sym_function_definition] = STATE(27), [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17687,36 +17700,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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -17823,24 +17837,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(14), [sym_preproc_ifdef] = STATE(14), [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(158), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(14), [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1476), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1481), [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(864), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(862), [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1130), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(14), [sym_labeled_statement] = STATE(14), [sym_expression_statement] = STATE(14), @@ -17856,36 +17870,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(14), [sym_seh_try_statement] = STATE(14), [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(231), [aux_sym_preproc_include_token1] = ACTIONS(234), [aux_sym_preproc_def_token1] = ACTIONS(237), @@ -17993,27 +18008,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(2071), - [sym_preproc_elif] = STATE(2071), + [sym_preproc_else] = STATE(2015), + [sym_preproc_elif] = STATE(2015), [sym_function_definition] = STATE(27), [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18029,36 +18044,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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18158,78 +18174,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(2095), - [sym_preproc_elif] = STATE(2095), - [sym_function_definition] = STATE(23), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2179), + [sym_preproc_elif] = STATE(2179), + [sym_function_definition] = STATE(27), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18335,27 +18352,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(2017), - [sym_preproc_elif] = STATE(2017), + [sym_preproc_else] = STATE(1955), + [sym_preproc_elif] = STATE(1955), [sym_function_definition] = STATE(27), [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18371,36 +18388,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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18500,78 +18518,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2081), - [sym_preproc_elif] = STATE(2081), - [sym_function_definition] = STATE(15), + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(2117), + [sym_preproc_elif] = STATE(2117), + [sym_function_definition] = STATE(22), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym_seh_try_statement] = STATE(22), + [sym_seh_leave_statement] = STATE(22), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18671,78 +18690,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [19] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1986), - [sym_preproc_elif] = STATE(1986), - [sym_function_definition] = STATE(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(1958), + [sym_preproc_elif] = STATE(1958), + [sym_function_definition] = STATE(27), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18842,78 +18862,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [20] = { - [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(2201), - [sym_preproc_elif] = STATE(2201), - [sym_function_definition] = STATE(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(1971), + [sym_preproc_elif] = STATE(1971), + [sym_function_definition] = STATE(19), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym_seh_try_statement] = STATE(19), + [sym_seh_leave_statement] = STATE(19), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -19013,204 +19034,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1948), - [sym_preproc_elif] = STATE(1948), - [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym_seh_try_statement] = STATE(13), - [sym_seh_leave_statement] = STATE(13), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [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(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(2097), - [sym_preproc_elif] = STATE(2097), + [sym_preproc_else] = STATE(2115), + [sym_preproc_elif] = STATE(2115), [sym_function_definition] = STATE(27), [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19226,41 +19076,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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(397), + [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), @@ -19354,34 +19205,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [23] = { + [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(2138), - [sym_preproc_elif] = STATE(2138), + [sym_preproc_else] = STATE(2143), + [sym_preproc_elif] = STATE(2143), [sym_function_definition] = STATE(27), [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19397,41 +19248,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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(399), + [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), @@ -19525,84 +19377,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1990), - [sym_preproc_elif] = STATE(1990), - [sym_function_definition] = STATE(26), + [23] = { + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(1945), + [sym_preproc_elif] = STATE(1945), + [sym_function_definition] = STATE(17), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym_seh_try_statement] = STATE(17), + [sym_seh_leave_statement] = STATE(17), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(399), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19696,84 +19549,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2026), - [sym_preproc_elif] = STATE(2026), - [sym_function_definition] = STATE(22), + [24] = { + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2021), + [sym_preproc_elif] = STATE(2021), + [sym_function_definition] = STATE(15), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_seh_try_statement] = STATE(15), + [sym_seh_leave_statement] = STATE(15), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(403), + [aux_sym_preproc_if_token2] = ACTIONS(401), + [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), + }, + [25] = { + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(2053), + [sym_preproc_elif] = STATE(2053), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(224), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym_seh_try_statement] = STATE(21), + [sym_seh_leave_statement] = STATE(21), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(403), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19868,78 +19894,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1976), - [sym_preproc_elif] = STATE(1976), - [sym_function_definition] = STATE(27), + [sym_preproc_include] = STATE(13), + [sym_preproc_def] = STATE(13), + [sym_preproc_function_def] = STATE(13), + [sym_preproc_call] = STATE(13), + [sym_preproc_if] = STATE(13), + [sym_preproc_ifdef] = STATE(13), + [sym_preproc_else] = STATE(2073), + [sym_preproc_elif] = STATE(2073), + [sym_function_definition] = STATE(13), [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_case_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_goto_statement] = STATE(13), + [sym_seh_try_statement] = STATE(13), + [sym_seh_leave_statement] = STATE(13), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -20049,21 +20076,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(224), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1478), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1479), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(862), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(864), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1123), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -20079,36 +20106,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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(407), [aux_sym_preproc_include_token1] = ACTIONS(410), [aux_sym_preproc_def_token1] = ACTIONS(413), @@ -20208,76 +20236,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20375,76 +20404,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym_seh_try_statement] = STATE(32), + [sym_seh_leave_statement] = STATE(32), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20542,83 +20572,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [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(362), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym__old_style_function_definition] = STATE(428), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [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_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(865), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(531), + [aux_sym_preproc_include_token1] = ACTIONS(533), + [aux_sym_preproc_def_token1] = ACTIONS(535), + [aux_sym_preproc_if_token1] = ACTIONS(537), + [aux_sym_preproc_if_token2] = ACTIONS(539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(541), + [sym_preproc_directive] = ACTIONS(543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20626,10 +20658,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(545), + [anon_sym___extension__] = ACTIONS(547), + [anon_sym_typedef] = ACTIONS(549), + [anon_sym_extern] = ACTIONS(551), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20639,8 +20671,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(531), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20666,19 +20697,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(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20709,76 +20740,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20807,7 +20839,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(533), + [anon_sym_RBRACE] = ACTIONS(581), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20876,76 +20908,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [32] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20974,7 +21007,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(535), + [anon_sym_RBRACE] = ACTIONS(583), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21043,76 +21076,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [33] = { - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21141,7 +21175,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(585), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21210,76 +21244,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [34] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21308,7 +21343,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(587), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21384,24 +21419,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(35), [sym_preproc_ifdef] = STATE(35), [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(356), + [sym__old_style_function_definition] = STATE(428), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1475), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1476), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(860), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(865), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -21418,43 +21453,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(35), [sym_seh_leave_statement] = STATE(35), [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(541), - [aux_sym_preproc_include_token1] = ACTIONS(544), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [aux_sym_preproc_if_token1] = ACTIONS(550), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(589), + [aux_sym_preproc_include_token1] = ACTIONS(592), + [aux_sym_preproc_def_token1] = ACTIONS(595), + [aux_sym_preproc_if_token1] = ACTIONS(598), [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(553), - [sym_preproc_directive] = ACTIONS(556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(601), + [aux_sym_preproc_ifdef_token2] = ACTIONS(601), + [sym_preproc_directive] = ACTIONS(604), [anon_sym_LPAREN2] = ACTIONS(251), [anon_sym_BANG] = ACTIONS(254), [anon_sym_TILDE] = ACTIONS(254), @@ -21462,10 +21498,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(257), [anon_sym_STAR] = ACTIONS(260), [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym___extension__] = ACTIONS(562), - [anon_sym_typedef] = ACTIONS(565), - [anon_sym_extern] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym___extension__] = ACTIONS(610), + [anon_sym_typedef] = ACTIONS(613), + [anon_sym_extern] = ACTIONS(616), [anon_sym___attribute__] = ACTIONS(275), [anon_sym_LBRACK_LBRACK] = ACTIONS(278), [anon_sym___declspec] = ACTIONS(281), @@ -21475,7 +21511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(284), [anon_sym___thiscall] = ACTIONS(284), [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(619), [anon_sym_signed] = ACTIONS(290), [anon_sym_unsigned] = ACTIONS(290), [anon_sym_long] = ACTIONS(290), @@ -21501,19 +21537,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(302), [anon_sym_struct] = ACTIONS(305), [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(574), - [anon_sym_switch] = ACTIONS(577), - [anon_sym_case] = ACTIONS(580), - [anon_sym_default] = ACTIONS(583), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(589), - [anon_sym_for] = ACTIONS(592), - [anon_sym_return] = ACTIONS(595), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(607), - [anon_sym___leave] = ACTIONS(610), + [anon_sym_if] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(625), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(634), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(640), + [anon_sym_return] = ACTIONS(643), + [anon_sym_break] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_goto] = ACTIONS(652), + [anon_sym___try] = ACTIONS(655), + [anon_sym___leave] = ACTIONS(658), [anon_sym_DASH_DASH] = ACTIONS(350), [anon_sym_PLUS_PLUS] = ACTIONS(350), [anon_sym_sizeof] = ACTIONS(353), @@ -21544,76 +21580,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [36] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21642,7 +21679,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(613), + [anon_sym_RBRACE] = ACTIONS(661), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21718,24 +21755,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(36), [sym_preproc_ifdef] = STATE(36), [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(362), + [sym__old_style_function_definition] = STATE(434), [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -21751,36 +21788,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(36), [sym_seh_try_statement] = STATE(36), [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21809,7 +21847,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(615), + [anon_sym_RBRACE] = ACTIONS(663), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21878,76 +21916,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [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(362), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21976,7 +22015,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(617), + [anon_sym_RBRACE] = ACTIONS(665), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22045,76 +22084,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22143,7 +22183,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(619), + [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22212,76 +22252,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [40] = { - [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(362), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym_seh_try_statement] = STATE(31), + [sym_seh_leave_statement] = STATE(31), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22310,7 +22351,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(621), + [anon_sym_RBRACE] = ACTIONS(669), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22379,84 +22420,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [41] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(356), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(867), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(860), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(629), - [aux_sym_preproc_if_token2] = ACTIONS(631), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(635), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22464,10 +22505,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(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), - [anon_sym_extern] = ACTIONS(643), + [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), @@ -22477,7 +22518,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(645), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(671), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22503,19 +22545,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(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [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), @@ -22546,76 +22588,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [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(362), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym_seh_try_statement] = STATE(43), + [sym_seh_leave_statement] = STATE(43), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22713,76 +22756,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22880,76 +22924,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(45), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23047,76 +23092,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23214,76 +23260,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [46] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(681), + [aux_sym_preproc_include_token1] = ACTIONS(684), + [aux_sym_preproc_def_token1] = ACTIONS(687), + [aux_sym_preproc_if_token1] = ACTIONS(690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(693), + [sym_preproc_directive] = ACTIONS(696), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(254), + [anon_sym_TILDE] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(699), + [anon_sym___extension__] = ACTIONS(702), + [anon_sym_typedef] = ACTIONS(705), + [anon_sym_extern] = ACTIONS(708), + [anon_sym___attribute__] = ACTIONS(275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym___declspec] = ACTIONS(281), + [anon_sym___cdecl] = ACTIONS(284), + [anon_sym___clrcall] = ACTIONS(284), + [anon_sym___stdcall] = ACTIONS(284), + [anon_sym___fastcall] = ACTIONS(284), + [anon_sym___thiscall] = ACTIONS(284), + [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(290), + [anon_sym_unsigned] = ACTIONS(290), + [anon_sym_long] = ACTIONS(290), + [anon_sym_short] = ACTIONS(290), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym___inline] = ACTIONS(293), + [anon_sym___inline__] = ACTIONS(293), + [anon_sym___forceinline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym___thread] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [sym_primitive_type] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(302), + [anon_sym_struct] = ACTIONS(305), + [anon_sym_union] = ACTIONS(308), + [anon_sym_if] = ACTIONS(716), + [anon_sym_switch] = ACTIONS(719), + [anon_sym_case] = ACTIONS(722), + [anon_sym_default] = ACTIONS(725), + [anon_sym_while] = ACTIONS(728), + [anon_sym_do] = ACTIONS(731), + [anon_sym_for] = ACTIONS(734), + [anon_sym_return] = ACTIONS(737), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_goto] = ACTIONS(746), + [anon_sym___try] = ACTIONS(749), + [anon_sym___leave] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(350), + [anon_sym_PLUS_PLUS] = ACTIONS(350), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym___alignof__] = ACTIONS(356), + [anon_sym___alignof] = ACTIONS(356), + [anon_sym__alignof] = ACTIONS(356), + [anon_sym_alignof] = ACTIONS(356), + [anon_sym__Alignof] = ACTIONS(356), + [anon_sym_offsetof] = ACTIONS(359), + [anon_sym__Generic] = ACTIONS(362), + [anon_sym_asm] = ACTIONS(365), + [anon_sym___asm__] = ACTIONS(365), + [sym_number_literal] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(371), + [anon_sym_u_SQUOTE] = ACTIONS(371), + [anon_sym_U_SQUOTE] = ACTIONS(371), + [anon_sym_u8_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_L_DQUOTE] = ACTIONS(374), + [anon_sym_u_DQUOTE] = ACTIONS(374), + [anon_sym_U_DQUOTE] = ACTIONS(374), + [anon_sym_u8_DQUOTE] = ACTIONS(374), + [anon_sym_DQUOTE] = ACTIONS(374), + [sym_true] = ACTIONS(377), + [sym_false] = ACTIONS(377), + [anon_sym_NULL] = ACTIONS(380), + [anon_sym_nullptr] = ACTIONS(380), + [sym_comment] = ACTIONS(3), + }, + [47] = { + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23312,7 +23527,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(681), + [anon_sym_RBRACE] = ACTIONS(755), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23380,84 +23595,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym__old_style_function_definition] = STATE(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [48] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(428), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1476), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [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_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(865), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym_seh_try_statement] = STATE(30), + [sym_seh_leave_statement] = STATE(30), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(531), + [aux_sym_preproc_include_token1] = ACTIONS(533), + [aux_sym_preproc_def_token1] = ACTIONS(535), + [aux_sym_preproc_if_token1] = ACTIONS(537), + [aux_sym_preproc_if_token2] = ACTIONS(757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(541), + [sym_preproc_directive] = ACTIONS(543), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23465,10 +23682,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(545), + [anon_sym___extension__] = ACTIONS(547), + [anon_sym_typedef] = ACTIONS(549), + [anon_sym_extern] = ACTIONS(551), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -23478,8 +23695,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(553), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23505,19 +23721,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(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23547,77 +23763,78 @@ 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(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(362), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(867), + [49] = { + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23646,7 +23863,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(685), + [anon_sym_RBRACE] = ACTIONS(759), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23714,244 +23931,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [49] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [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_ifdef_token1] = ACTIONS(699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(699), - [sym_preproc_directive] = ACTIONS(702), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym___extension__] = ACTIONS(708), - [anon_sym_typedef] = ACTIONS(711), - [anon_sym_extern] = ACTIONS(714), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(717), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = ACTIONS(293), - [anon_sym_const] = ACTIONS(296), - [anon_sym_constexpr] = ACTIONS(296), - [anon_sym_volatile] = ACTIONS(296), - [anon_sym_restrict] = ACTIONS(296), - [anon_sym___restrict__] = ACTIONS(296), - [anon_sym__Atomic] = ACTIONS(296), - [anon_sym__Noreturn] = ACTIONS(296), - [anon_sym_noreturn] = ACTIONS(296), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(722), - [anon_sym_switch] = ACTIONS(725), - [anon_sym_case] = ACTIONS(728), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(734), - [anon_sym_do] = ACTIONS(737), - [anon_sym_for] = ACTIONS(740), - [anon_sym_return] = ACTIONS(743), - [anon_sym_break] = ACTIONS(746), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_goto] = ACTIONS(752), - [anon_sym___try] = ACTIONS(755), - [anon_sym___leave] = ACTIONS(758), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - }, [50] = { - [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(362), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1474), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(867), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1475), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24049,84 +24100,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [51] = { - [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(356), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(867), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym__old_style_function_definition] = STATE(434), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(869), [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(867), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_call_modifier] = STATE(860), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(629), - [aux_sym_preproc_if_token2] = ACTIONS(763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), - [sym_preproc_directive] = ACTIONS(635), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_call_modifier] = STATE(857), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1129), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym_seh_try_statement] = STATE(33), + [sym_seh_leave_statement] = STATE(33), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_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), @@ -24134,10 +24185,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(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), - [anon_sym_extern] = ACTIONS(643), + [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), @@ -24147,7 +24198,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(645), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(763), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -24173,19 +24225,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(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [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), @@ -24223,24 +24275,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(462), + [sym__old_style_function_definition] = STATE(472), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(867), + [sym__declaration_modifiers] = STATE(869), [sym__declaration_specifiers] = STATE(1477), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_ms_call_modifier] = STATE(856), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1128), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -24254,35 +24306,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(1302), - [sym__expression_not_binary] = STATE(1305), - [sym_conditional_expression] = STATE(1305), - [sym_assignment_expression] = STATE(1305), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(1305), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_sizeof_expression] = STATE(1305), - [sym_alignof_expression] = STATE(1305), - [sym_offsetof_expression] = STATE(1305), - [sym_generic_expression] = STATE(1305), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(1305), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(1305), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(1305), - [sym_concatenated_string] = STATE(1305), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(1305), + [sym__expression] = STATE(1306), + [sym__expression_not_binary] = STATE(1303), + [sym__string] = STATE(1303), + [sym_conditional_expression] = STATE(1303), + [sym_assignment_expression] = STATE(1303), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(1303), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(1303), + [sym_cast_expression] = STATE(1303), + [sym_sizeof_expression] = STATE(1303), + [sym_alignof_expression] = STATE(1303), + [sym_offsetof_expression] = STATE(1303), + [sym_generic_expression] = STATE(1303), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(1303), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(1303), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(1303), + [sym_concatenated_string] = STATE(1303), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(1303), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [ts_builtin_sym_end] = ACTIONS(765), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -24384,24 +24437,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(462), + [sym__old_style_function_definition] = STATE(472), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(867), + [sym__declaration_modifiers] = STATE(869), [sym__declaration_specifiers] = STATE(1477), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(867), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_ms_call_modifier] = STATE(856), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1128), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -24415,35 +24468,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(1302), - [sym__expression_not_binary] = STATE(1305), - [sym_conditional_expression] = STATE(1305), - [sym_assignment_expression] = STATE(1305), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(1305), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_sizeof_expression] = STATE(1305), - [sym_alignof_expression] = STATE(1305), - [sym_offsetof_expression] = STATE(1305), - [sym_generic_expression] = STATE(1305), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(1305), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(1305), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(1305), - [sym_concatenated_string] = STATE(1305), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(1305), + [sym__expression] = STATE(1306), + [sym__expression_not_binary] = STATE(1303), + [sym__string] = STATE(1303), + [sym_conditional_expression] = STATE(1303), + [sym_assignment_expression] = STATE(1303), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(1303), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(1303), + [sym_cast_expression] = STATE(1303), + [sym_sizeof_expression] = STATE(1303), + [sym_alignof_expression] = STATE(1303), + [sym_offsetof_expression] = STATE(1303), + [sym_generic_expression] = STATE(1303), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(1303), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(1303), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(1303), + [sym_concatenated_string] = STATE(1303), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(1303), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1115), + [sym_macro_type_specifier] = STATE(1083), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [ts_builtin_sym_end] = ACTIONS(767), [sym_identifier] = ACTIONS(769), [aux_sym_preproc_include_token1] = ACTIONS(772), @@ -24538,76 +24592,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1500), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [aux_sym_preproc_else_token1] = ACTIONS(912), - [aux_sym_preproc_elif_token1] = ACTIONS(912), - [aux_sym_preproc_elifdef_token1] = ACTIONS(912), - [aux_sym_preproc_elifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_if_token2] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [aux_sym_preproc_else_token1] = ACTIONS(913), + [aux_sym_preproc_elif_token1] = ACTIONS(913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym___extension__] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(978), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(987), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_goto] = ACTIONS(993), + [anon_sym___try] = ACTIONS(996), + [anon_sym___leave] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [55] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1500), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token2] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [aux_sym_preproc_else_token1] = ACTIONS(1037), + [aux_sym_preproc_elif_token1] = ACTIONS(1037), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24622,12 +24838,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(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___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(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24655,10 +24871,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -24697,226 +24913,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_if_token2] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [aux_sym_preproc_else_token1] = ACTIONS(917), - [aux_sym_preproc_elif_token1] = ACTIONS(917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym___extension__] = ACTIONS(934), - [anon_sym_typedef] = ACTIONS(937), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(985), - [anon_sym_return] = ACTIONS(988), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(997), - [anon_sym___try] = ACTIONS(1000), - [anon_sym___leave] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, [56] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1500), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(910), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(1035), [aux_sym_preproc_include_token1] = ACTIONS(1039), [aux_sym_preproc_def_token1] = ACTIONS(1039), [aux_sym_preproc_if_token1] = ACTIONS(1039), @@ -25018,65 +25075,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [57] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1500), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(910), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(1035), [aux_sym_preproc_include_token1] = ACTIONS(1041), [aux_sym_preproc_def_token1] = ACTIONS(1041), [aux_sym_preproc_if_token1] = ACTIONS(1041), @@ -25178,65 +25236,66 @@ 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(867), - [sym__declaration_specifiers] = STATE(1482), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1500), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(910), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(1035), [aux_sym_preproc_include_token1] = ACTIONS(1043), [aux_sym_preproc_def_token1] = ACTIONS(1043), [aux_sym_preproc_if_token1] = ACTIONS(1043), @@ -25338,232 +25397,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1488), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(59), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_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(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(62), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_if_token2] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [aux_sym_preproc_else_token1] = ACTIONS(917), - [aux_sym_preproc_elif_token1] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym___extension__] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1057), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1081), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym___try] = ACTIONS(1087), - [anon_sym___leave] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [60] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1093), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [aux_sym_preproc_else_token1] = ACTIONS(912), - [aux_sym_preproc_elif_token1] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [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), @@ -25578,12 +25480,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(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___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), @@ -25611,10 +25513,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(912), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [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), @@ -25653,75 +25555,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), + [60] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1488), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1093), - [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), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(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), @@ -25736,12 +25639,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym___cdecl] = ACTIONS(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), @@ -25769,10 +25672,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), + [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), @@ -25811,22 +25714,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [62] = { + [61] = { [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1488), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -25841,45 +25744,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(60), [sym_seh_try_statement] = STATE(60), [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(1093), - [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), + [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), [anon_sym_TILDE] = ACTIONS(21), @@ -25894,12 +25798,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym___cdecl] = ACTIONS(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(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25927,10 +25831,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), + [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), @@ -25969,75 +25873,76 @@ 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(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1491), - [sym_attribute_specifier] = STATE(867), + [62] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1488), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1093), - [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), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(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), @@ -26052,12 +25957,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(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), @@ -26085,10 +25990,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), + [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), @@ -26127,73 +26032,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [63] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1488), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_if_token2] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [aux_sym_preproc_else_token1] = ACTIONS(913), + [aux_sym_preproc_elif_token1] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym___extension__] = ACTIONS(1053), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1065), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1077), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym___try] = ACTIONS(1089), + [anon_sym___leave] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, [64] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(74), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(68), + [sym_labeled_statement] = STATE(68), + [sym_expression_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_return_statement] = STATE(68), + [sym_break_statement] = STATE(68), + [sym_continue_statement] = STATE(68), + [sym_goto_statement] = STATE(68), + [sym_seh_try_statement] = STATE(68), + [sym_seh_leave_statement] = STATE(68), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(68), [ts_builtin_sym_end] = ACTIONS(1095), [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(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), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26208,12 +26273,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -26241,10 +26306,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(1043), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), + [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), @@ -26284,224 +26349,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym___extension__] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [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(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [66] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1490), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym_seh_try_statement] = STATE(69), - [sym_seh_leave_statement] = STATE(69), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1155), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_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(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1105), [aux_sym_preproc_include_token1] = ACTIONS(1041), [aux_sym_preproc_def_token1] = ACTIONS(1041), [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), [sym_preproc_directive] = ACTIONS(1041), @@ -26512,9 +26423,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(545), + [anon_sym___extension__] = ACTIONS(547), + [anon_sym_typedef] = ACTIONS(549), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -26525,8 +26436,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(499), - [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26552,20 +26462,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(555), [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(557), [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_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26595,22 +26505,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [67] = { + [66] = { [sym_declaration] = STATE(73), [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(73), [sym_labeled_statement] = STATE(73), [sym_expression_statement] = STATE(73), @@ -26625,43 +26535,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(73), [sym_seh_try_statement] = STATE(73), [sym_seh_leave_statement] = STATE(73), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [aux_sym_case_statement_repeat1] = STATE(73), - [sym_identifier] = ACTIONS(1159), - [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), + [sym_identifier] = ACTIONS(1107), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26669,20 +26579,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(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), + [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(645), + [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(1109), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26708,20 +26619,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(647), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1043), + [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), [anon_sym_sizeof] = ACTIONS(81), @@ -26751,69 +26662,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [67] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1490), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1111), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_if_token2] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1129), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1141), + [anon_sym_break] = ACTIONS(1144), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1150), + [anon_sym___try] = ACTIONS(1153), + [anon_sym___leave] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, [68] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1155), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(68), + [sym_labeled_statement] = STATE(68), + [sym_expression_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_return_statement] = STATE(68), + [sym_break_statement] = STATE(68), + [sym_continue_statement] = STATE(68), + [sym_goto_statement] = STATE(68), + [sym_seh_try_statement] = STATE(68), + [sym_seh_leave_statement] = STATE(68), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(68), + [ts_builtin_sym_end] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1161), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_do] = ACTIONS(1185), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1206), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [69] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1490), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym_seh_try_statement] = STATE(72), + [sym_seh_leave_statement] = STATE(72), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1105), [aux_sym_preproc_include_token1] = ACTIONS(1043), [aux_sym_preproc_def_token1] = ACTIONS(1043), [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), [sym_preproc_directive] = ACTIONS(1043), @@ -26824,9 +27051,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(545), + [anon_sym___extension__] = ACTIONS(547), + [anon_sym_typedef] = ACTIONS(549), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -26837,8 +27064,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(1095), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26864,20 +27090,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(555), [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(557), [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(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26907,72 +27133,74 @@ 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(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), + [70] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26980,21 +27208,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1161), + [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), [anon_sym_long] = ACTIONS(43), @@ -27020,20 +27247,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27063,67 +27290,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [71] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(78), + [sym_labeled_statement] = STATE(78), + [sym_expression_statement] = STATE(78), + [sym_if_statement] = STATE(78), + [sym_switch_statement] = STATE(78), + [sym_while_statement] = STATE(78), + [sym_do_statement] = STATE(78), + [sym_for_statement] = STATE(78), + [sym_return_statement] = STATE(78), + [sym_break_statement] = STATE(78), + [sym_continue_statement] = STATE(78), + [sym_goto_statement] = STATE(78), + [sym_seh_try_statement] = STATE(78), + [sym_seh_leave_statement] = STATE(78), [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(72), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1097), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(1107), [aux_sym_preproc_include_token1] = ACTIONS(1041), [aux_sym_preproc_def_token1] = ACTIONS(1041), [aux_sym_preproc_if_token1] = ACTIONS(1041), @@ -27137,9 +27364,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(1099), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -27150,7 +27377,8 @@ 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(41), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1209), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27176,20 +27404,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(1041), - [anon_sym_switch] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(505), [anon_sym_case] = ACTIONS(1041), [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_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), @@ -27219,73 +27447,74 @@ 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(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), + [72] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1490), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(1159), - [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), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1105), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27293,20 +27522,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(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym___extension__] = ACTIONS(547), + [anon_sym_typedef] = ACTIONS(549), [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(645), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27332,20 +27561,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(647), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [anon_sym_if] = ACTIONS(555), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27375,67 +27604,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [73] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1097), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1107), [aux_sym_preproc_include_token1] = ACTIONS(1039), [aux_sym_preproc_def_token1] = ACTIONS(1039), [aux_sym_preproc_if_token1] = ACTIONS(1039), @@ -27449,9 +27678,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(1099), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -27462,7 +27691,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(1095), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27488,20 +27718,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(1101), - [anon_sym___leave] = ACTIONS(1103), + [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), @@ -27531,73 +27761,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), + [74] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1490), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1159), - [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), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1105), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token2] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27605,20 +27836,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(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym___extension__] = ACTIONS(547), + [anon_sym_typedef] = ACTIONS(549), [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(645), + [anon_sym___cdecl] = ACTIONS(1037), + [anon_sym___clrcall] = ACTIONS(1037), + [anon_sym___stdcall] = ACTIONS(1037), + [anon_sym___fastcall] = ACTIONS(1037), + [anon_sym___thiscall] = ACTIONS(1037), + [anon_sym___vectorcall] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27644,20 +27875,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(647), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [anon_sym_if] = ACTIONS(555), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27687,73 +27918,74 @@ 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(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [75] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1163), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(68), + [sym_labeled_statement] = STATE(68), + [sym_expression_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_return_statement] = STATE(68), + [sym_break_statement] = STATE(68), + [sym_continue_statement] = STATE(68), + [sym_goto_statement] = STATE(68), + [sym_seh_try_statement] = STATE(68), + [sym_seh_leave_statement] = STATE(68), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(68), + [ts_builtin_sym_end] = ACTIONS(1211), [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [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), @@ -27768,12 +28000,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(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___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), @@ -27801,10 +28033,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(912), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [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), @@ -27843,73 +28075,231 @@ 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(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), + [76] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [77] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(64), + [ts_builtin_sym_end] = ACTIONS(1109), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27917,20 +28307,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(637), - [anon_sym___extension__] = ACTIONS(639), - [anon_sym_typedef] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(1099), + [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(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(645), + [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), @@ -27956,20 +28346,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(647), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27999,334 +28389,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym___try] = ACTIONS(1207), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [77] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(917), - [aux_sym_preproc_def_token1] = ACTIONS(917), - [aux_sym_preproc_if_token1] = ACTIONS(917), - [aux_sym_preproc_if_token2] = ACTIONS(917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(917), - [sym_preproc_directive] = ACTIONS(917), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym___cdecl] = ACTIONS(917), - [anon_sym___clrcall] = ACTIONS(917), - [anon_sym___stdcall] = ACTIONS(917), - [anon_sym___fastcall] = ACTIONS(917), - [anon_sym___thiscall] = ACTIONS(917), - [anon_sym___vectorcall] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [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(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, [78] = { [sym_declaration] = STATE(76), [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1493), - [sym_attribute_specifier] = STATE(867), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1503), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(76), [sym_labeled_statement] = STATE(76), [sym_expression_statement] = STATE(76), @@ -28341,42 +28419,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(76), [sym_seh_try_statement] = STATE(76), [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [sym_identifier] = ACTIONS(1107), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28391,14 +28470,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___cdecl] = ACTIONS(1037), + [anon_sym___clrcall] = ACTIONS(1037), + [anon_sym___stdcall] = ACTIONS(1037), + [anon_sym___fastcall] = ACTIONS(1037), + [anon_sym___thiscall] = ACTIONS(1037), + [anon_sym___vectorcall] = ACTIONS(1037), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28425,10 +28504,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [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), @@ -28470,19 +28549,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [79] = { [sym_declaration] = STATE(79), [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(79), [sym_labeled_statement] = STATE(79), [sym_expression_statement] = STATE(79), @@ -28497,176 +28576,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(79), [sym_seh_try_statement] = STATE(79), [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [aux_sym_case_statement_repeat1] = STATE(79), [sym_identifier] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym___extension__] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(940), - [anon_sym___attribute__] = ACTIONS(943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(946), - [anon_sym___declspec] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_static] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(940), - [anon_sym_register] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym___inline] = ACTIONS(940), - [anon_sym___inline__] = ACTIONS(940), - [anon_sym___forceinline] = ACTIONS(940), - [anon_sym_thread_local] = ACTIONS(940), - [anon_sym___thread] = ACTIONS(940), - [anon_sym_const] = ACTIONS(958), - [anon_sym_constexpr] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_noreturn] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1179), [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1185), [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1200), [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1210), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1009), - [anon_sym___alignof__] = ACTIONS(1012), - [anon_sym___alignof] = ACTIONS(1012), - [anon_sym__alignof] = ACTIONS(1012), - [anon_sym_alignof] = ACTIONS(1012), - [anon_sym__Alignof] = ACTIONS(1012), - [anon_sym_offsetof] = ACTIONS(1015), - [anon_sym__Generic] = ACTIONS(1018), - [anon_sym_asm] = ACTIONS(1021), - [anon_sym___asm__] = ACTIONS(1021), - [sym_number_literal] = ACTIONS(1024), - [anon_sym_L_SQUOTE] = ACTIONS(1027), - [anon_sym_u_SQUOTE] = ACTIONS(1027), - [anon_sym_U_SQUOTE] = ACTIONS(1027), - [anon_sym_u8_SQUOTE] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [anon_sym_NULL] = ACTIONS(1036), - [anon_sym_nullptr] = ACTIONS(1036), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, [80] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(79), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym_seh_try_statement] = STATE(83), + [sym_seh_leave_statement] = STATE(83), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(83), [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -28709,7 +28790,7 @@ 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(1278), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(59), [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), @@ -28752,19 +28833,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [81] = { [sym_declaration] = STATE(79), [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(79), [sym_labeled_statement] = STATE(79), [sym_expression_statement] = STATE(79), @@ -28779,34 +28860,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(79), [sym_seh_try_statement] = STATE(79), [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [aux_sym_case_statement_repeat1] = STATE(79), [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), @@ -28891,162 +28973,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [82] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [83] = { [sym_declaration] = STATE(81), [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1489), - [sym_attribute_specifier] = STATE(867), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(867), + [sym_ms_declspec_modifier] = STATE(869), [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), [sym_attributed_statement] = STATE(81), [sym_labeled_statement] = STATE(81), [sym_expression_statement] = STATE(81), @@ -29061,34 +29002,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(81), [sym_seh_try_statement] = STATE(81), [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [aux_sym_case_statement_repeat1] = STATE(81), [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), @@ -29132,7 +29074,7 @@ 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(1278), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(59), [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), @@ -29172,49 +29114,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(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(1944), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(1286), + [83] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1499), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(505), + [sym_ms_declspec_modifier] = STATE(869), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29222,11 +29182,136 @@ static const uint16_t ts_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), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [84] = { + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1495), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__for_statement_body] = STATE(2079), + [sym__expression] = STATE(1257), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2050), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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), @@ -29283,47 +29368,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(1983), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1495), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__for_statement_body] = STATE(2024), + [sym__expression] = STATE(1257), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2050), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29393,47 +29479,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2101), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1495), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__for_statement_body] = STATE(2047), + [sym__expression] = STATE(1257), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2050), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29503,47 +29590,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2036), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1495), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__for_statement_body] = STATE(2128), + [sym__expression] = STATE(1257), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2050), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29613,47 +29701,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2190), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1495), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__for_statement_body] = STATE(2102), + [sym__expression] = STATE(1257), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2050), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29723,47 +29812,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(567), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__for_statement_body] = STATE(2062), - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2220), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), + [sym_declaration] = STATE(585), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1495), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__for_statement_body] = STATE(2048), + [sym__expression] = STATE(1257), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2050), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -30038,108 +30128,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [92] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [aux_sym_preproc_else_token1] = ACTIONS(1302), - [aux_sym_preproc_elif_token1] = ACTIONS(1302), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [93] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [anon_sym_COMMA] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym___try] = ACTIONS(1304), + [anon_sym___except] = ACTIONS(1304), + [anon_sym___finally] = ACTIONS(1304), + [anon_sym___leave] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [94] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), @@ -30241,108 +30433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [94] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [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___except] = ACTIONS(1306), - [anon_sym___finally] = 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), - }, [95] = { [sym_identifier] = ACTIONS(1310), [aux_sym_preproc_include_token1] = ACTIONS(1310), @@ -30854,6 +30944,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [100] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [101] = { [sym_identifier] = ACTIONS(1330), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1330), @@ -30955,7 +31147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [101] = { + [102] = { [sym_identifier] = ACTIONS(1334), [aux_sym_preproc_include_token1] = ACTIONS(1334), [aux_sym_preproc_def_token1] = ACTIONS(1334), @@ -31057,7 +31249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [102] = { + [103] = { [sym_identifier] = ACTIONS(1338), [aux_sym_preproc_include_token1] = ACTIONS(1338), [aux_sym_preproc_def_token1] = ACTIONS(1338), @@ -31159,7 +31351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [103] = { + [104] = { [sym_identifier] = ACTIONS(1342), [aux_sym_preproc_include_token1] = ACTIONS(1342), [aux_sym_preproc_def_token1] = ACTIONS(1342), @@ -31261,7 +31453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [104] = { + [105] = { [sym_identifier] = ACTIONS(1346), [aux_sym_preproc_include_token1] = ACTIONS(1346), [aux_sym_preproc_def_token1] = ACTIONS(1346), @@ -31363,108 +31555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [105] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [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___except] = ACTIONS(1330), - [anon_sym___finally] = 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), - }, [106] = { [sym_identifier] = ACTIONS(1350), [aux_sym_preproc_include_token1] = ACTIONS(1350), @@ -32180,6 +32270,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [113] = { + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___except] = ACTIONS(1310), + [anon_sym___finally] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + }, + [114] = { [sym_identifier] = ACTIONS(1366), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1366), @@ -32281,7 +32473,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [114] = { + [115] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [116] = { [sym_identifier] = ACTIONS(1370), [aux_sym_preproc_include_token1] = ACTIONS(1370), [aux_sym_preproc_def_token1] = ACTIONS(1370), @@ -32383,7 +32677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [115] = { + [117] = { [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), @@ -32485,7 +32779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [116] = { + [118] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -32587,7 +32881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [117] = { + [119] = { [sym_identifier] = ACTIONS(1378), [aux_sym_preproc_include_token1] = ACTIONS(1378), [aux_sym_preproc_def_token1] = ACTIONS(1378), @@ -32689,7 +32983,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [118] = { + [120] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [121] = { [sym_identifier] = ACTIONS(1382), [aux_sym_preproc_include_token1] = ACTIONS(1382), [aux_sym_preproc_def_token1] = ACTIONS(1382), @@ -32791,7 +33187,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [119] = { + [122] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + }, + [123] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [aux_sym_preproc_else_token1] = ACTIONS(1304), + [aux_sym_preproc_elif_token1] = ACTIONS(1304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym___try] = ACTIONS(1304), + [anon_sym___leave] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + }, + [124] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [125] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -32893,7 +33595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [120] = { + [126] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -32995,313 +33697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [121] = { - [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), - }, - [122] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [123] = { - [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), - }, - [124] = { + [127] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), @@ -33403,7 +33799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [125] = { + [128] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -33505,7 +33901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [126] = { + [129] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -33607,7 +34003,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [127] = { + [130] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + }, + [131] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -33709,7 +34207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [128] = { + [132] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -33811,415 +34309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [131] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [132] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [133] = { + [133] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -34827,1017 +34917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [139] = { - [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), - }, - [140] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [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), - }, - [142] = { - [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), - }, - [143] = { - [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), - }, - [144] = { - [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), - }, - [145] = { - [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), - }, - [146] = { - [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), - }, - [147] = { - [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), - }, - [148] = { - [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), - }, - [149] = { - [sym_else_clause] = STATE(201), + [sym_else_clause] = STATE(195), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -35895,7 +34975,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(1462), + [anon_sym_else] = ACTIONS(1422), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -35937,6 +35017,1016 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, + [140] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [aux_sym_preproc_else_token1] = ACTIONS(1424), + [aux_sym_preproc_elif_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [aux_sym_preproc_else_token1] = ACTIONS(1428), + [aux_sym_preproc_elif_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [aux_sym_preproc_else_token1] = ACTIONS(1432), + [aux_sym_preproc_elif_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [aux_sym_preproc_else_token1] = ACTIONS(1436), + [aux_sym_preproc_elif_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [aux_sym_preproc_else_token1] = ACTIONS(1440), + [aux_sym_preproc_elif_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [145] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [aux_sym_preproc_else_token1] = ACTIONS(1444), + [aux_sym_preproc_elif_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [aux_sym_preproc_else_token1] = ACTIONS(1448), + [aux_sym_preproc_elif_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [aux_sym_preproc_else_token1] = ACTIONS(1456), + [aux_sym_preproc_elif_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [aux_sym_preproc_else_token1] = ACTIONS(1460), + [aux_sym_preproc_elif_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + }, [150] = { [sym_identifier] = ACTIONS(1464), [aux_sym_preproc_include_token1] = ACTIONS(1464), @@ -37049,1106 +37139,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [161] = { - [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), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [162] = { - [sym_identifier] = ACTIONS(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_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [163] = { - [sym_identifier] = ACTIONS(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), - }, - [164] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_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), + }, + [164] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [aux_sym_preproc_else_token1] = ACTIONS(1354), + [aux_sym_preproc_elif_token1] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, [165] = { - [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_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), }, [166] = { - [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), - }, - [167] = { - [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), - }, - [168] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [aux_sym_preproc_else_token1] = ACTIONS(1302), - [aux_sym_preproc_elif_token1] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [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), - }, - [172] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -38248,7 +37738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [173] = { + [167] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -38348,7 +37838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [174] = { + [168] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -38448,107 +37938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [175] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - }, - [176] = { + [169] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -38648,7 +38038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [177] = { + [170] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -38748,107 +38138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = { + [171] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -38948,7 +38238,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [180] = { + [172] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [173] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -39048,107 +38438,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [181] = { - [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), + [174] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [182] = { + [175] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -39248,7 +38638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [183] = { + [176] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -39348,107 +38738,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [184] = { - [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), + [177] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [185] = { + [178] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [sym_comment] = ACTIONS(3), + }, + [180] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -39548,507 +39138,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [186] = { - [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), - }, - [187] = { - [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), - }, - [188] = { - [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), - }, - [189] = { - [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), - }, - [190] = { - [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), + [181] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [191] = { + [182] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -40148,7 +39338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [192] = { + [183] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -40248,7 +39438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [193] = { + [184] = { [sym_identifier] = ACTIONS(1370), [aux_sym_preproc_include_token1] = ACTIONS(1370), [aux_sym_preproc_def_token1] = ACTIONS(1370), @@ -40348,307 +39538,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [194] = { - [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), - }, - [195] = { - [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), + [185] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [196] = { - [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), + [186] = { + [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), }, - [197] = { + [187] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -40748,207 +39838,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [198] = { - [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), + [188] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [189] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [aux_sym_preproc_else_token1] = ACTIONS(1304), + [aux_sym_preproc_elif_token1] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym___try] = ACTIONS(1304), + [anon_sym___leave] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [200] = { + [190] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [192] = { [sym_identifier] = ACTIONS(1386), [aux_sym_preproc_include_token1] = ACTIONS(1386), [aux_sym_preproc_def_token1] = ACTIONS(1386), @@ -41048,1988 +40338,1402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [193] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [194] = { + [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), }, - [204] = { - [sym_else_clause] = STATE(305), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [195] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [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), [sym_comment] = ACTIONS(3), }, - [206] = { - [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), + [197] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [198] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [208] = { - [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), + [199] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [209] = { - [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), + [200] = { + [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), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_else_clause] = STATE(295), - [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(1510), - [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), + [201] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [211] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [aux_sym_preproc_else_token1] = ACTIONS(1434), - [aux_sym_preproc_elif_token1] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [202] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [aux_sym_preproc_else_token1] = ACTIONS(1402), + [aux_sym_preproc_elif_token1] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [213] = { - [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), + [203] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [214] = { - [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), + [204] = { + [sym_else_clause] = STATE(296), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [215] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [205] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [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), + [206] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [221] = { + [207] = { [sym_identifier] = ACTIONS(1488), [aux_sym_preproc_include_token1] = ACTIONS(1488), [aux_sym_preproc_def_token1] = ACTIONS(1488), @@ -43128,205 +41832,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [208] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [aux_sym_preproc_else_token1] = ACTIONS(1440), + [aux_sym_preproc_elif_token1] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, - [224] = { + [209] = { [sym_identifier] = ACTIONS(1496), [aux_sym_preproc_include_token1] = ACTIONS(1496), [aux_sym_preproc_def_token1] = ACTIONS(1496), @@ -43425,305 +42030,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [210] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [aux_sym_preproc_else_token1] = ACTIONS(1456), + [aux_sym_preproc_elif_token1] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [211] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [aux_sym_preproc_else_token1] = ACTIONS(1406), + [aux_sym_preproc_elif_token1] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [227] = { - [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), + [212] = { + [sym__expression] = STATE(837), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(813), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_identifier] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_COLON] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PERCENT_EQ] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_LT_LT_EQ] = ACTIONS(1512), + [anon_sym_GT_GT_EQ] = ACTIONS(1512), + [anon_sym_AMP_EQ] = ACTIONS(1512), + [anon_sym_CARET_EQ] = ACTIONS(1512), + [anon_sym_PIPE_EQ] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [228] = { - [sym_else_clause] = STATE(302), + [213] = { + [sym_else_clause] = STATE(310), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -43779,7 +42384,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(1512), + [anon_sym_else] = ACTIONS(1524), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -43821,2557 +42426,2281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [229] = { - [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), - }, - [230] = { - [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), + [214] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [aux_sym_preproc_else_token1] = ACTIONS(1448), + [aux_sym_preproc_elif_token1] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, - [231] = { - [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), + [215] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [232] = { - [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), + [216] = { + [sym_else_clause] = STATE(304), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [233] = { - [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), + [217] = { + [sym__expression] = STATE(837), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(813), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(840), + [sym_null] = STATE(814), + [sym_identifier] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PERCENT_EQ] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_LT_LT_EQ] = ACTIONS(1512), + [anon_sym_GT_GT_EQ] = ACTIONS(1512), + [anon_sym_AMP_EQ] = ACTIONS(1512), + [anon_sym_CARET_EQ] = ACTIONS(1512), + [anon_sym_PIPE_EQ] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1532), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [234] = { - [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), - }, - [235] = { - [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), + [218] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [236] = { - [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), + [219] = { + [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), }, - [237] = { - [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), + [220] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [aux_sym_preproc_else_token1] = ACTIONS(1468), + [aux_sym_preproc_elif_token1] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [238] = { - [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), + [221] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [aux_sym_preproc_else_token1] = ACTIONS(1472), + [aux_sym_preproc_elif_token1] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, - [239] = { - [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), + [222] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [aux_sym_preproc_else_token1] = ACTIONS(1460), + [aux_sym_preproc_elif_token1] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [240] = { - [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), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [223] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [aux_sym_preproc_else_token1] = ACTIONS(1444), + [aux_sym_preproc_elif_token1] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [242] = { - [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), + [224] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [aux_sym_preproc_else_token1] = ACTIONS(1428), + [aux_sym_preproc_elif_token1] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, - [243] = { - [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), + [225] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [aux_sym_preproc_else_token1] = ACTIONS(1476), + [aux_sym_preproc_elif_token1] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [244] = { - [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), + [226] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [245] = { - [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), + [227] = { + [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), }, - [246] = { - [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), + [228] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [aux_sym_preproc_else_token1] = ACTIONS(1436), + [aux_sym_preproc_elif_token1] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [247] = { - [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), + [229] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [248] = { - [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), - }, - [249] = { - [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), + [230] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [aux_sym_preproc_else_token1] = ACTIONS(1484), + [aux_sym_preproc_elif_token1] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, - [250] = { - [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), + [231] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [aux_sym_preproc_else_token1] = ACTIONS(1432), + [aux_sym_preproc_elif_token1] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [251] = { - [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), + [232] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [aux_sym_preproc_else_token1] = ACTIONS(1424), + [aux_sym_preproc_elif_token1] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [252] = { - [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), + [233] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [234] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [254] = { - [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), + [235] = { + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [255] = { + [236] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [237] = { + [ts_builtin_sym_end] = ACTIONS(1360), [sym_identifier] = ACTIONS(1358), [aux_sym_preproc_include_token1] = ACTIONS(1358), [aux_sym_preproc_def_token1] = ACTIONS(1358), @@ -46400,7 +44729,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), @@ -46469,301 +44797,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [238] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [239] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [240] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [259] = { + [241] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -46792,7 +45121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -46861,23 +45189,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), + [242] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), [anon_sym___extension__] = ACTIONS(1298), [anon_sym_typedef] = ACTIONS(1298), [anon_sym_extern] = ACTIONS(1298), @@ -46891,6 +45512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -46959,8 +45581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1300), + [246] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -46989,6 +45610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -47057,7 +45679,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [262] = { + [247] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [248] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -47155,105 +45875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [263] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [264] = { + [249] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -47351,105 +45973,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [265] = { - [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), + [250] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [266] = { + [251] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [252] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -47547,301 +46267,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [267] = { - [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), + [253] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [268] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [269] = { - [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), + [254] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [270] = { + [255] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -47939,498 +46561,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [271] = { - [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), + [256] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - }, - [273] = { - [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), - }, - [274] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [275] = { - [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), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1300), + [257] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -48459,6 +46688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -48527,8 +46757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1300), + [258] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -48557,6 +46786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -48625,105 +46855,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [278] = { - [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), - }, - [279] = { + [259] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -48752,7 +46885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -48821,7 +46953,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [280] = { + [260] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -48850,7 +46983,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -48919,7 +47051,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [281] = { + [261] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -48948,7 +47081,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -49017,105 +47149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [282] = { - [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), - }, - [283] = { + [262] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -49144,7 +47179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -49213,7 +47247,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [284] = { + [263] = { + [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), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + }, + [265] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -49311,203 +47541,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [285] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [286] = { - [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), - }, - [287] = { + [266] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -49536,7 +47571,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -49605,7 +47639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [288] = { + [267] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -49703,792 +47737,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [289] = { - [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), + [268] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [269] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [291] = { - [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), + [270] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [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), - }, - [294] = { - [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), - }, - [295] = { - [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), - }, - [296] = { - [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), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1300), + [271] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -50517,6 +48060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50585,8 +48129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1300), + [272] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -50615,6 +48158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -50683,791 +48227,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [300] = { - [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), + [273] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [301] = { - [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), + [274] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - }, - [303] = { - [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), - }, - [304] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1514), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [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), - }, - [305] = { - [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), - }, - [306] = { - [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), + [275] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [307] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), @@ -51565,208 +48619,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [308] = { - [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), - }, - [309] = { - [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), + [277] = { + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [310] = { + [278] = { + [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_if_token2] = ACTIONS(1378), [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), [sym_preproc_directive] = ACTIONS(1378), @@ -51859,208 +48815,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [311] = { - [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), + [279] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [312] = { - [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), + [280] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [313] = { + [281] = { [sym_identifier] = ACTIONS(1386), [aux_sym_preproc_include_token1] = ACTIONS(1386), [aux_sym_preproc_def_token1] = ACTIONS(1386), [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), [sym_preproc_directive] = ACTIONS(1386), @@ -52085,6 +49040,7 @@ 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), @@ -52153,306 +49109,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1532), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [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), - }, - [315] = { - [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), - }, - [316] = { - [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), + [282] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [317] = { + [283] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), [sym_preproc_directive] = ACTIONS(1298), @@ -52477,6 +49236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -52545,12 +49305,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [318] = { + [284] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), [sym_preproc_directive] = ACTIONS(1298), @@ -52643,399 +49403,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [319] = { - [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), - }, - [320] = { - [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), + [285] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [286] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [322] = { - [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), + [287] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [323] = { + [288] = { + [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), + }, + [289] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [ts_builtin_sym_end] = ACTIONS(1336), [sym_identifier] = ACTIONS(1334), [aux_sym_preproc_include_token1] = ACTIONS(1334), [aux_sym_preproc_def_token1] = ACTIONS(1334), @@ -53064,7 +49923,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -53133,110 +49991,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [324] = { - [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), + [291] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym___try] = ACTIONS(1304), + [anon_sym___leave] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [325] = { + [292] = { + [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), [sym_preproc_directive] = ACTIONS(1298), @@ -53329,1384 +50187,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [326] = { - [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), - }, - [327] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [328] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [293] = { + [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), }, - [329] = { - [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), + [294] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [295] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [296] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [333] = { - [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), + [297] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [298] = { + [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), }, - [335] = { - [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), + [299] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [338] = { - [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), - }, - [339] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1336), + [300] = { [sym_identifier] = ACTIONS(1334), [aux_sym_preproc_include_token1] = ACTIONS(1334), [aux_sym_preproc_def_token1] = ACTIONS(1334), [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), [sym_preproc_directive] = ACTIONS(1334), @@ -54799,126 +50971,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [341] = { - [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), + [301] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [342] = { - [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), + [302] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [305] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), [anon_sym___declspec] = ACTIONS(1298), [anon_sym___cdecl] = ACTIONS(1298), [anon_sym___clrcall] = ACTIONS(1298), @@ -54995,109 +51559,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [343] = { - [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), - }, - [344] = { + [307] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, + [309] = { [sym_identifier] = ACTIONS(1338), [aux_sym_preproc_include_token1] = ACTIONS(1338), [aux_sym_preproc_def_token1] = ACTIONS(1338), [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), [sym_preproc_directive] = ACTIONS(1338), @@ -55122,7 +51785,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -55191,224 +51853,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [345] = { - [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), - }, - [346] = { - [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), + [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), }, - [347] = { - [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), + [311] = { + [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), + }, + [312] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [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), @@ -55417,6 +52176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1322), [anon_sym___vectorcall] = ACTIONS(1322), [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), [anon_sym_signed] = ACTIONS(1322), [anon_sym_unsigned] = ACTIONS(1322), [anon_sym_long] = ACTIONS(1322), @@ -55485,305 +52245,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - }, - [349] = { - [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), + [314] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [350] = { - [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), + [315] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [351] = { + [316] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + }, + [317] = { [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), [sym_preproc_directive] = ACTIONS(1374), @@ -55808,7 +52569,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), @@ -55877,5290 +52637,3967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [352] = { - [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), + [318] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [353] = { - [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), + [319] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [354] = { - [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), + [320] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [321] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [356] = { - [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), + [322] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [323] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [358] = { - [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), + [324] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [325] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [326] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [362] = { - [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), - }, - [363] = { - [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), + [327] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [364] = { - [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), + [328] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [365] = { - [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), + [329] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [366] = { - [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), + [330] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [331] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [332] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [333] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - }, - [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_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(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [334] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [373] = { - [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), + [335] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [374] = { - [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), + [336] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [337] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [376] = { - [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), + [338] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [339] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [379] = { - [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), - }, - [380] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [340] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [341] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [382] = { - [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), + [342] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [343] = { + [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), }, - [384] = { - [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), + [344] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [345] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [386] = { - [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), + [346] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym___try] = ACTIONS(1304), + [anon_sym___leave] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [388] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [347] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [348] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [391] = { - [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), - }, - [392] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [349] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [393] = { - [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), + [350] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - }, - [395] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [396] = { - [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), - }, - [397] = { - [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), + [351] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [352] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [399] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), + [353] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [400] = { - [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), + [354] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [401] = { - [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), - }, - [402] = { - [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), - }, - [403] = { - [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), + [355] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [356] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [357] = { + [sym_attribute_declaration] = STATE(357), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(357), + [sym_identifier] = ACTIONS(1534), + [anon_sym_LPAREN2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1567), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1582), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_goto] = ACTIONS(1588), + [anon_sym___try] = ACTIONS(1591), + [anon_sym___leave] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1597), + [anon_sym_sizeof] = ACTIONS(1600), + [anon_sym___alignof__] = ACTIONS(1603), + [anon_sym___alignof] = ACTIONS(1603), + [anon_sym__alignof] = ACTIONS(1603), + [anon_sym_alignof] = ACTIONS(1603), + [anon_sym__Alignof] = ACTIONS(1603), + [anon_sym_offsetof] = ACTIONS(1606), + [anon_sym__Generic] = ACTIONS(1609), + [anon_sym_asm] = ACTIONS(1612), + [anon_sym___asm__] = ACTIONS(1612), + [sym_number_literal] = ACTIONS(1615), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym_u_SQUOTE] = ACTIONS(1618), + [anon_sym_U_SQUOTE] = ACTIONS(1618), + [anon_sym_u8_SQUOTE] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1624), + [sym_false] = ACTIONS(1624), + [anon_sym_NULL] = ACTIONS(1627), + [anon_sym_nullptr] = ACTIONS(1627), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2160), - [sym_attributed_statement] = STATE(2160), - [sym_labeled_statement] = STATE(2160), - [sym_expression_statement] = STATE(2160), - [sym_if_statement] = STATE(2160), - [sym_switch_statement] = STATE(2160), - [sym_case_statement] = STATE(2160), - [sym_while_statement] = STATE(2160), - [sym_do_statement] = STATE(2160), - [sym_for_statement] = STATE(2160), - [sym_return_statement] = STATE(2160), - [sym_break_statement] = STATE(2160), - [sym_continue_statement] = STATE(2160), - [sym_goto_statement] = STATE(2160), - [sym_seh_try_statement] = STATE(2160), - [sym_seh_leave_statement] = STATE(2160), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [358] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(2206), + [sym_attributed_statement] = STATE(2206), + [sym_labeled_statement] = STATE(2206), + [sym_expression_statement] = STATE(2206), + [sym_if_statement] = STATE(2206), + [sym_switch_statement] = STATE(2206), + [sym_case_statement] = STATE(2206), + [sym_while_statement] = STATE(2206), + [sym_do_statement] = STATE(2206), + [sym_for_statement] = STATE(2206), + [sym_return_statement] = STATE(2206), + [sym_break_statement] = STATE(2206), + [sym_continue_statement] = STATE(2206), + [sym_goto_statement] = STATE(2206), + [sym_seh_try_statement] = STATE(2206), + [sym_seh_leave_statement] = STATE(2206), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61169,12 +56606,12 @@ 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(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(1282), @@ -61213,50 +56650,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_attribute_declaration] = STATE(419), - [sym_compound_statement] = STATE(271), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(271), - [sym_expression_statement] = STATE(271), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(271), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(271), - [sym_do_statement] = STATE(271), - [sym_for_statement] = STATE(271), - [sym_return_statement] = STATE(271), - [sym_break_statement] = STATE(271), - [sym_continue_statement] = STATE(271), - [sym_goto_statement] = STATE(271), - [sym_seh_try_statement] = STATE(271), - [sym_seh_leave_statement] = STATE(271), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1542), + [359] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(2198), + [sym_attributed_statement] = STATE(2198), + [sym_labeled_statement] = STATE(2198), + [sym_expression_statement] = STATE(2198), + [sym_if_statement] = STATE(2198), + [sym_switch_statement] = STATE(2198), + [sym_case_statement] = STATE(2198), + [sym_while_statement] = STATE(2198), + [sym_do_statement] = STATE(2198), + [sym_for_statement] = STATE(2198), + [sym_return_statement] = STATE(2198), + [sym_break_statement] = STATE(2198), + [sym_continue_statement] = STATE(2198), + [sym_goto_statement] = STATE(2198), + [sym_seh_try_statement] = STATE(2198), + [sym_seh_leave_statement] = STATE(2198), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61264,22 +56702,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(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61309,146 +56747,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_attribute_declaration] = STATE(408), - [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), + [360] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(2190), + [sym_attributed_statement] = STATE(2190), + [sym_labeled_statement] = STATE(2190), + [sym_expression_statement] = STATE(2190), + [sym_if_statement] = STATE(2190), + [sym_switch_statement] = STATE(2190), + [sym_case_statement] = STATE(2190), + [sym_while_statement] = STATE(2190), + [sym_do_statement] = STATE(2190), + [sym_for_statement] = STATE(2190), + [sym_return_statement] = STATE(2190), + [sym_break_statement] = STATE(2190), + [sym_continue_statement] = STATE(2190), + [sym_goto_statement] = STATE(2190), + [sym_seh_try_statement] = STATE(2190), + [sym_seh_leave_statement] = STATE(2190), [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_case] = ACTIONS(1574), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_goto] = ACTIONS(1598), - [anon_sym___try] = ACTIONS(1601), - [anon_sym___leave] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [409] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(503), - [sym_attributed_statement] = STATE(503), - [sym_labeled_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [sym_if_statement] = STATE(503), - [sym_switch_statement] = STATE(503), - [sym_case_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_seh_try_statement] = STATE(503), - [sym_seh_leave_statement] = STATE(503), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61457,12 +56800,12 @@ 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(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(1282), @@ -61501,50 +56844,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_attribute_declaration] = STATE(451), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1640), + [361] = { + [sym_attribute_declaration] = STATE(436), + [sym_compound_statement] = STATE(192), + [sym_attributed_statement] = STATE(192), + [sym_labeled_statement] = STATE(192), + [sym_expression_statement] = STATE(192), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(192), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(192), + [sym_for_statement] = STATE(192), + [sym_return_statement] = STATE(192), + [sym_break_statement] = STATE(192), + [sym_continue_statement] = STATE(192), + [sym_goto_statement] = STATE(192), + [sym_seh_try_statement] = STATE(192), + [sym_seh_leave_statement] = STATE(192), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61553,7 +56897,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(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -61597,146 +56941,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [411] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1482), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [362] = { + [sym_attribute_declaration] = STATE(362), + [sym_compound_statement] = STATE(181), + [sym_attributed_statement] = STATE(181), + [sym_labeled_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_switch_statement] = STATE(181), + [sym_case_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_seh_try_statement] = STATE(181), + [sym_seh_leave_statement] = STATE(181), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(1640), + [anon_sym_LPAREN2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_switch] = ACTIONS(1652), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1658), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1664), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1679), + [anon_sym___try] = ACTIONS(1682), + [anon_sym___leave] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1597), + [anon_sym_sizeof] = ACTIONS(1600), + [anon_sym___alignof__] = ACTIONS(1603), + [anon_sym___alignof] = ACTIONS(1603), + [anon_sym__alignof] = ACTIONS(1603), + [anon_sym_alignof] = ACTIONS(1603), + [anon_sym__Alignof] = ACTIONS(1603), + [anon_sym_offsetof] = ACTIONS(1606), + [anon_sym__Generic] = ACTIONS(1609), + [anon_sym_asm] = ACTIONS(1612), + [anon_sym___asm__] = ACTIONS(1612), + [sym_number_literal] = ACTIONS(1615), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym_u_SQUOTE] = ACTIONS(1618), + [anon_sym_U_SQUOTE] = ACTIONS(1618), + [anon_sym_u8_SQUOTE] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1624), + [sym_false] = ACTIONS(1624), + [anon_sym_NULL] = ACTIONS(1627), + [anon_sym_nullptr] = ACTIONS(1627), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(316), - [sym_attributed_statement] = STATE(317), - [sym_labeled_statement] = STATE(318), - [sym_expression_statement] = STATE(320), - [sym_if_statement] = STATE(321), - [sym_switch_statement] = STATE(322), - [sym_case_statement] = STATE(325), - [sym_while_statement] = STATE(327), - [sym_do_statement] = STATE(328), - [sym_for_statement] = STATE(330), - [sym_return_statement] = STATE(331), - [sym_break_statement] = STATE(332), - [sym_continue_statement] = STATE(334), - [sym_goto_statement] = STATE(335), - [sym_seh_try_statement] = STATE(336), - [sym_seh_leave_statement] = STATE(337), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), + [363] = { + [sym_attribute_declaration] = STATE(384), + [sym_compound_statement] = STATE(204), + [sym_attributed_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_case_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym_seh_try_statement] = STATE(204), + [sym_seh_leave_statement] = STATE(204), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1688), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61744,22 +57090,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(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61789,50 +57135,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_attribute_declaration] = STATE(449), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [364] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(2175), + [sym_attributed_statement] = STATE(2175), + [sym_labeled_statement] = STATE(2175), + [sym_expression_statement] = STATE(2175), + [sym_if_statement] = STATE(2175), + [sym_switch_statement] = STATE(2175), + [sym_case_statement] = STATE(2175), + [sym_while_statement] = STATE(2175), + [sym_do_statement] = STATE(2175), + [sym_for_statement] = STATE(2175), + [sym_return_statement] = STATE(2175), + [sym_break_statement] = STATE(2175), + [sym_continue_statement] = STATE(2175), + [sym_goto_statement] = STATE(2175), + [sym_seh_try_statement] = STATE(2175), + [sym_seh_leave_statement] = STATE(2175), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61841,12 +57188,12 @@ 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(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(1282), @@ -61885,146 +57232,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(312), - [sym_attributed_statement] = STATE(312), - [sym_labeled_statement] = STATE(312), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(312), - [sym_switch_statement] = STATE(312), - [sym_case_statement] = STATE(312), - [sym_while_statement] = STATE(312), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(312), - [sym_return_statement] = STATE(312), - [sym_break_statement] = STATE(312), - [sym_continue_statement] = STATE(312), - [sym_goto_statement] = STATE(312), - [sym_seh_try_statement] = STATE(312), - [sym_seh_leave_statement] = STATE(312), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), - }, - [415] = { - [sym_attribute_declaration] = STATE(449), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [365] = { + [sym_attribute_declaration] = STATE(384), + [sym_compound_statement] = STATE(335), + [sym_attributed_statement] = STATE(335), + [sym_labeled_statement] = STATE(335), + [sym_expression_statement] = STATE(335), + [sym_if_statement] = STATE(335), + [sym_switch_statement] = STATE(335), + [sym_case_statement] = STATE(335), + [sym_while_statement] = STATE(335), + [sym_do_statement] = STATE(335), + [sym_for_statement] = STATE(335), + [sym_return_statement] = STATE(335), + [sym_break_statement] = STATE(335), + [sym_continue_statement] = STATE(335), + [sym_goto_statement] = STATE(335), + [sym_seh_try_statement] = STATE(335), + [sym_seh_leave_statement] = STATE(335), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1688), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62033,20 +57285,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(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [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(1632), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -62077,146 +57329,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1642), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(1654), - [anon_sym_case] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym___try] = ACTIONS(1684), - [anon_sym___leave] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [417] = { - [sym_attribute_declaration] = STATE(450), - [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(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), + [366] = { + [sym_attribute_declaration] = STATE(436), + [sym_compound_statement] = STATE(177), + [sym_attributed_statement] = STATE(177), + [sym_labeled_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_switch_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_do_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym_return_statement] = STATE(177), + [sym_break_statement] = STATE(177), + [sym_continue_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_seh_try_statement] = STATE(177), + [sym_seh_leave_statement] = STATE(177), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62224,22 +57381,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62269,242 +57426,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_attribute_declaration] = STATE(418), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(418), - [sym_identifier] = ACTIONS(1692), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_case] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_goto] = ACTIONS(1598), - [anon_sym___try] = ACTIONS(1710), - [anon_sym___leave] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [419] = { - [sym_attribute_declaration] = STATE(419), - [sym_compound_statement] = STATE(271), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(271), - [sym_expression_statement] = STATE(271), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(271), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(271), - [sym_do_statement] = STATE(271), - [sym_for_statement] = STATE(271), - [sym_return_statement] = STATE(271), - [sym_break_statement] = STATE(271), - [sym_continue_statement] = STATE(271), - [sym_goto_statement] = STATE(271), - [sym_seh_try_statement] = STATE(271), - [sym_seh_leave_statement] = STATE(271), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(419), - [sym_identifier] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_goto] = ACTIONS(1752), - [anon_sym___try] = ACTIONS(1755), - [anon_sym___leave] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - }, - [420] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(296), - [sym_attributed_statement] = STATE(296), - [sym_labeled_statement] = STATE(296), - [sym_expression_statement] = STATE(296), - [sym_if_statement] = STATE(296), - [sym_switch_statement] = STATE(296), - [sym_case_statement] = STATE(296), - [sym_while_statement] = STATE(296), - [sym_do_statement] = STATE(296), - [sym_for_statement] = STATE(296), - [sym_return_statement] = STATE(296), - [sym_break_statement] = STATE(296), - [sym_continue_statement] = STATE(296), - [sym_goto_statement] = STATE(296), - [sym_seh_try_statement] = STATE(296), - [sym_seh_leave_statement] = STATE(296), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), + [367] = { + [sym_attribute_declaration] = STATE(436), + [sym_compound_statement] = STATE(199), + [sym_attributed_statement] = STATE(199), + [sym_labeled_statement] = STATE(199), + [sym_expression_statement] = STATE(199), + [sym_if_statement] = STATE(199), + [sym_switch_statement] = STATE(199), + [sym_case_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_do_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_return_statement] = STATE(199), + [sym_break_statement] = STATE(199), + [sym_continue_statement] = STATE(199), + [sym_goto_statement] = STATE(199), + [sym_seh_try_statement] = STATE(199), + [sym_seh_leave_statement] = STATE(199), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62512,22 +57478,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(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62557,50 +57523,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1761), + [368] = { + [sym_attribute_declaration] = STATE(384), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(311), + [sym_labeled_statement] = STATE(311), + [sym_expression_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_switch_statement] = STATE(311), + [sym_case_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_do_statement] = STATE(311), + [sym_for_statement] = STATE(311), + [sym_return_statement] = STATE(311), + [sym_break_statement] = STATE(311), + [sym_continue_statement] = STATE(311), + [sym_goto_statement] = STATE(311), + [sym_seh_try_statement] = STATE(311), + [sym_seh_leave_statement] = STATE(311), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1688), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62609,7 +57576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(499), [anon_sym_if] = ACTIONS(503), [anon_sym_switch] = ACTIONS(505), @@ -62653,146 +57620,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(407), - [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(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [369] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_seh_try_statement] = STATE(232), - [sym_seh_leave_statement] = STATE(232), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), + [370] = { + [sym_attribute_declaration] = STATE(436), + [sym_compound_statement] = STATE(139), + [sym_attributed_statement] = STATE(139), + [sym_labeled_statement] = STATE(139), + [sym_expression_statement] = STATE(139), + [sym_if_statement] = STATE(139), + [sym_switch_statement] = STATE(139), + [sym_case_statement] = STATE(139), + [sym_while_statement] = STATE(139), + [sym_do_statement] = STATE(139), + [sym_for_statement] = STATE(139), + [sym_return_statement] = STATE(139), + [sym_break_statement] = STATE(139), + [sym_continue_statement] = STATE(139), + [sym_goto_statement] = STATE(139), + [sym_seh_try_statement] = STATE(139), + [sym_seh_leave_statement] = STATE(139), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62800,22 +57769,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(1536), - [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(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62845,146 +57814,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(448), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), - }, - [425] = { - [sym_attribute_declaration] = STATE(450), - [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), + [371] = { + [sym_attribute_declaration] = STATE(371), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym_seh_try_statement] = STATE(349), + [sym_seh_leave_statement] = STATE(349), [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(371), [sym_identifier] = ACTIONS(1690), + [anon_sym_LPAREN2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_goto] = ACTIONS(1729), + [anon_sym___try] = ACTIONS(1732), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1597), + [anon_sym_sizeof] = ACTIONS(1600), + [anon_sym___alignof__] = ACTIONS(1603), + [anon_sym___alignof] = ACTIONS(1603), + [anon_sym__alignof] = ACTIONS(1603), + [anon_sym_alignof] = ACTIONS(1603), + [anon_sym__Alignof] = ACTIONS(1603), + [anon_sym_offsetof] = ACTIONS(1606), + [anon_sym__Generic] = ACTIONS(1609), + [anon_sym_asm] = ACTIONS(1612), + [anon_sym___asm__] = ACTIONS(1612), + [sym_number_literal] = ACTIONS(1615), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym_u_SQUOTE] = ACTIONS(1618), + [anon_sym_U_SQUOTE] = ACTIONS(1618), + [anon_sym_u8_SQUOTE] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1624), + [sym_false] = ACTIONS(1624), + [anon_sym_NULL] = ACTIONS(1627), + [anon_sym_nullptr] = ACTIONS(1627), + [sym_comment] = ACTIONS(3), + }, + [372] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [373] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [374] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(105), + [sym_attributed_statement] = STATE(105), + [sym_labeled_statement] = STATE(105), + [sym_expression_statement] = STATE(105), + [sym_if_statement] = STATE(105), + [sym_switch_statement] = STATE(105), + [sym_case_statement] = STATE(105), + [sym_while_statement] = STATE(105), + [sym_do_statement] = STATE(105), + [sym_for_statement] = STATE(105), + [sym_return_statement] = STATE(105), + [sym_break_statement] = STATE(105), + [sym_continue_statement] = STATE(105), + [sym_goto_statement] = STATE(105), + [sym_seh_try_statement] = STATE(105), + [sym_seh_leave_statement] = STATE(105), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62992,22 +58157,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63037,50 +58202,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym_seh_try_statement] = STATE(240), - [sym_seh_leave_statement] = STATE(240), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [375] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [376] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(341), + [sym_attributed_statement] = STATE(341), + [sym_labeled_statement] = STATE(341), + [sym_expression_statement] = STATE(341), + [sym_if_statement] = STATE(341), + [sym_switch_statement] = STATE(341), + [sym_case_statement] = STATE(341), + [sym_while_statement] = STATE(341), + [sym_do_statement] = STATE(341), + [sym_for_statement] = STATE(341), + [sym_return_statement] = STATE(341), + [sym_break_statement] = STATE(341), + [sym_continue_statement] = STATE(341), + [sym_goto_statement] = STATE(341), + [sym_seh_try_statement] = STATE(341), + [sym_seh_leave_statement] = STATE(341), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63089,12 +58352,12 @@ 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(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(1282), @@ -63133,50 +58396,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(342), - [sym_switch_statement] = STATE(276), - [sym_case_statement] = STATE(260), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(243), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(237), - [sym_seh_try_statement] = STATE(235), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [377] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [378] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(114), + [sym_attributed_statement] = STATE(114), + [sym_labeled_statement] = STATE(114), + [sym_expression_statement] = STATE(114), + [sym_if_statement] = STATE(114), + [sym_switch_statement] = STATE(114), + [sym_case_statement] = STATE(114), + [sym_while_statement] = STATE(114), + [sym_do_statement] = STATE(114), + [sym_for_statement] = STATE(114), + [sym_return_statement] = STATE(114), + [sym_break_statement] = STATE(114), + [sym_continue_statement] = STATE(114), + [sym_goto_statement] = STATE(114), + [sym_seh_try_statement] = STATE(114), + [sym_seh_leave_statement] = STATE(114), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63184,22 +58545,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(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [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(1632), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63229,50 +58590,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(210), - [sym_attributed_statement] = STATE(210), - [sym_labeled_statement] = STATE(210), - [sym_expression_statement] = STATE(210), - [sym_if_statement] = STATE(210), - [sym_switch_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_do_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_return_statement] = STATE(210), - [sym_break_statement] = STATE(210), - [sym_continue_statement] = STATE(210), - [sym_goto_statement] = STATE(210), - [sym_seh_try_statement] = STATE(210), - [sym_seh_leave_statement] = STATE(210), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), + [379] = { + [sym__expression] = STATE(911), + [sym__expression_not_binary] = STATE(928), + [sym__string] = STATE(928), + [sym_conditional_expression] = STATE(928), + [sym_assignment_expression] = STATE(928), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(928), + [sym_binary_expression] = STATE(928), + [sym_update_expression] = STATE(928), + [sym_cast_expression] = STATE(928), + [sym_sizeof_expression] = STATE(928), + [sym_alignof_expression] = STATE(928), + [sym_offsetof_expression] = STATE(928), + [sym_generic_expression] = STATE(928), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(928), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(928), + [sym_parenthesized_expression] = STATE(928), + [sym_initializer_list] = STATE(956), + [sym_char_literal] = STATE(928), + [sym_concatenated_string] = STATE(928), + [sym_string_literal] = STATE(852), + [sym_null] = STATE(928), + [sym_identifier] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PERCENT_EQ] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_LT_LT_EQ] = ACTIONS(1512), + [anon_sym_GT_GT_EQ] = ACTIONS(1512), + [anon_sym_AMP_EQ] = ACTIONS(1512), + [anon_sym_CARET_EQ] = ACTIONS(1512), + [anon_sym_PIPE_EQ] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1746), + [anon_sym___alignof__] = ACTIONS(1748), + [anon_sym___alignof] = ACTIONS(1748), + [anon_sym__alignof] = ACTIONS(1748), + [anon_sym_alignof] = ACTIONS(1748), + [anon_sym__Alignof] = ACTIONS(1748), + [anon_sym_offsetof] = ACTIONS(1750), + [anon_sym__Generic] = ACTIONS(1752), + [anon_sym_asm] = ACTIONS(1754), + [anon_sym___asm__] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1756), + [anon_sym_L_SQUOTE] = ACTIONS(1758), + [anon_sym_u_SQUOTE] = ACTIONS(1758), + [anon_sym_U_SQUOTE] = ACTIONS(1758), + [anon_sym_u8_SQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_L_DQUOTE] = ACTIONS(1760), + [anon_sym_u_DQUOTE] = ACTIONS(1760), + [anon_sym_U_DQUOTE] = ACTIONS(1760), + [anon_sym_u8_DQUOTE] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym_true] = ACTIONS(1762), + [sym_false] = ACTIONS(1762), + [anon_sym_NULL] = ACTIONS(1764), + [anon_sym_nullptr] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + }, + [380] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [381] = { + [sym_attribute_declaration] = STATE(417), + [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(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63280,22 +58836,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63325,338 +58881,245 @@ 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(449), - [sym_compound_statement] = STATE(2070), - [sym_attributed_statement] = STATE(2070), - [sym_labeled_statement] = STATE(2070), - [sym_expression_statement] = STATE(2070), - [sym_if_statement] = STATE(2070), - [sym_switch_statement] = STATE(2070), - [sym_case_statement] = STATE(2070), - [sym_while_statement] = STATE(2070), - [sym_do_statement] = STATE(2070), - [sym_for_statement] = STATE(2070), - [sym_return_statement] = STATE(2070), - [sym_break_statement] = STATE(2070), - [sym_continue_statement] = STATE(2070), - [sym_goto_statement] = STATE(2070), - [sym_seh_try_statement] = STATE(2070), - [sym_seh_leave_statement] = STATE(2070), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [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), - }, - [430] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(228), - [sym_attributed_statement] = STATE(228), - [sym_labeled_statement] = STATE(228), - [sym_expression_statement] = STATE(228), - [sym_if_statement] = STATE(228), - [sym_switch_statement] = STATE(228), - [sym_case_statement] = STATE(228), - [sym_while_statement] = STATE(228), - [sym_do_statement] = STATE(228), - [sym_for_statement] = STATE(228), - [sym_return_statement] = STATE(228), - [sym_break_statement] = STATE(228), - [sym_continue_statement] = STATE(228), - [sym_goto_statement] = STATE(228), - [sym_seh_try_statement] = STATE(228), - [sym_seh_leave_statement] = STATE(228), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2019), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_if] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_return] = ACTIONS(661), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_goto] = ACTIONS(667), - [anon_sym___try] = ACTIONS(669), - [anon_sym___leave] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [382] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, - [431] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(287), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(283), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(280), - [sym_case_statement] = STATE(279), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(270), - [sym_for_statement] = STATE(266), - [sym_return_statement] = STATE(264), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(258), - [sym_seh_try_statement] = STATE(257), - [sym_seh_leave_statement] = STATE(256), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), + [383] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(326), - [sym_attributed_statement] = STATE(326), - [sym_labeled_statement] = STATE(326), - [sym_expression_statement] = STATE(326), - [sym_if_statement] = STATE(326), - [sym_switch_statement] = STATE(326), - [sym_case_statement] = STATE(326), - [sym_while_statement] = STATE(326), - [sym_do_statement] = STATE(326), - [sym_for_statement] = STATE(326), - [sym_return_statement] = STATE(326), - [sym_break_statement] = STATE(326), - [sym_continue_statement] = STATE(326), - [sym_goto_statement] = STATE(326), - [sym_seh_try_statement] = STATE(326), - [sym_seh_leave_statement] = STATE(326), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), + [384] = { + [sym_attribute_declaration] = STATE(371), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym_seh_try_statement] = STATE(349), + [sym_seh_leave_statement] = STATE(349), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1688), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63665,7 +59128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(499), [anon_sym_if] = ACTIONS(503), [anon_sym_switch] = ACTIONS(505), @@ -63709,818 +59172,827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(122), - [sym_attributed_statement] = STATE(125), - [sym_labeled_statement] = STATE(126), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(128), - [sym_switch_statement] = STATE(129), - [sym_case_statement] = STATE(131), - [sym_while_statement] = STATE(132), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(120), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(111), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(109), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), - }, - [434] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(179), - [sym_labeled_statement] = STATE(180), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(183), - [sym_switch_statement] = STATE(189), - [sym_case_statement] = STATE(191), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(194), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(162), - [sym_break_statement] = STATE(173), - [sym_continue_statement] = STATE(177), - [sym_goto_statement] = STATE(185), - [sym_seh_try_statement] = STATE(176), - [sym_seh_leave_statement] = STATE(172), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), + [385] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym__expression] = STATE(921), - [sym__expression_not_binary] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(928), - [sym_unary_expression] = STATE(928), - [sym_binary_expression] = STATE(928), - [sym_update_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_alignof_expression] = STATE(928), - [sym_offsetof_expression] = STATE(928), - [sym_generic_expression] = STATE(928), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_gnu_asm_expression] = STATE(928), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(928), - [sym_initializer_list] = STATE(965), - [sym_char_literal] = STATE(928), - [sym_concatenated_string] = STATE(928), - [sym_string_literal] = STATE(849), - [sym_null] = STATE(928), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1771), - [anon_sym___alignof__] = ACTIONS(1773), - [anon_sym___alignof] = ACTIONS(1773), - [anon_sym__alignof] = ACTIONS(1773), - [anon_sym_alignof] = ACTIONS(1773), - [anon_sym__Alignof] = ACTIONS(1773), - [anon_sym_offsetof] = ACTIONS(1775), - [anon_sym__Generic] = ACTIONS(1777), - [anon_sym_asm] = ACTIONS(1779), - [anon_sym___asm__] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1783), - [anon_sym_u_SQUOTE] = ACTIONS(1783), - [anon_sym_U_SQUOTE] = ACTIONS(1783), - [anon_sym_u8_SQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [anon_sym_NULL] = ACTIONS(1789), - [anon_sym_nullptr] = ACTIONS(1789), + [386] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_attribute_declaration] = STATE(410), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), - }, - [437] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(118), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), + [387] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(342), - [sym_switch_statement] = STATE(276), - [sym_case_statement] = STATE(260), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(243), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(237), - [sym_seh_try_statement] = STATE(235), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [388] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_attribute_declaration] = STATE(424), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), + [389] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(106), - [sym_attributed_statement] = STATE(106), - [sym_labeled_statement] = STATE(106), - [sym_expression_statement] = STATE(106), - [sym_if_statement] = STATE(106), - [sym_switch_statement] = STATE(106), - [sym_case_statement] = STATE(106), - [sym_while_statement] = STATE(106), - [sym_do_statement] = STATE(106), - [sym_for_statement] = STATE(106), - [sym_return_statement] = STATE(106), - [sym_break_statement] = STATE(106), - [sym_continue_statement] = STATE(106), - [sym_goto_statement] = STATE(106), - [sym_seh_try_statement] = STATE(106), - [sym_seh_leave_statement] = STATE(106), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), + [390] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2168), - [sym_attributed_statement] = STATE(2168), - [sym_labeled_statement] = STATE(2168), - [sym_expression_statement] = STATE(2168), - [sym_if_statement] = STATE(2168), - [sym_switch_statement] = STATE(2168), - [sym_case_statement] = STATE(2168), - [sym_while_statement] = STATE(2168), - [sym_do_statement] = STATE(2168), - [sym_for_statement] = STATE(2168), - [sym_return_statement] = STATE(2168), - [sym_break_statement] = STATE(2168), - [sym_continue_statement] = STATE(2168), - [sym_goto_statement] = STATE(2168), - [sym_seh_try_statement] = STATE(2168), - [sym_seh_leave_statement] = STATE(2168), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [391] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [392] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [393] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(1954), + [sym_attributed_statement] = STATE(1954), + [sym_labeled_statement] = STATE(1954), + [sym_expression_statement] = STATE(1954), + [sym_if_statement] = STATE(1954), + [sym_switch_statement] = STATE(1954), + [sym_case_statement] = STATE(1954), + [sym_while_statement] = STATE(1954), + [sym_do_statement] = STATE(1954), + [sym_for_statement] = STATE(1954), + [sym_return_statement] = STATE(1954), + [sym_break_statement] = STATE(1954), + [sym_continue_statement] = STATE(1954), + [sym_goto_statement] = STATE(1954), + [sym_seh_try_statement] = STATE(1954), + [sym_seh_leave_statement] = STATE(1954), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64529,12 +60001,12 @@ 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(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(1282), @@ -64573,338 +60045,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_attribute_declaration] = STATE(410), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), - }, - [443] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(184), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym_seh_try_statement] = STATE(184), - [sym_seh_leave_statement] = STATE(184), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), - }, - [444] = { - [sym_attribute_declaration] = STATE(424), - [sym_compound_statement] = STATE(124), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_case_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym_seh_try_statement] = STATE(124), - [sym_seh_leave_statement] = STATE(124), - [sym__expression] = STATE(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), - }, - [445] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), + [394] = { + [sym_attribute_declaration] = STATE(384), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym_seh_try_statement] = STATE(281), + [sym_seh_leave_statement] = STATE(281), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1688), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64913,7 +60098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), [anon_sym_LBRACE] = ACTIONS(499), [anon_sym_if] = ACTIONS(503), [anon_sym_switch] = ACTIONS(505), @@ -64957,50 +60142,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2152), - [sym_attributed_statement] = STATE(2152), - [sym_labeled_statement] = STATE(2152), - [sym_expression_statement] = STATE(2152), - [sym_if_statement] = STATE(2152), - [sym_switch_statement] = STATE(2152), - [sym_case_statement] = STATE(2152), - [sym_while_statement] = STATE(2152), - [sym_do_statement] = STATE(2152), - [sym_for_statement] = STATE(2152), - [sym_return_statement] = STATE(2152), - [sym_break_statement] = STATE(2152), - [sym_continue_statement] = STATE(2152), - [sym_goto_statement] = STATE(2152), - [sym_seh_try_statement] = STATE(2152), - [sym_seh_leave_statement] = STATE(2152), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), + [395] = { + [sym_attribute_declaration] = STATE(384), + [sym_compound_statement] = STATE(272), + [sym_attributed_statement] = STATE(271), + [sym_labeled_statement] = STATE(267), + [sym_expression_statement] = STATE(265), + [sym_if_statement] = STATE(258), + [sym_switch_statement] = STATE(257), + [sym_case_statement] = STATE(256), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(254), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(252), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(248), + [sym_goto_statement] = STATE(283), + [sym_seh_try_statement] = STATE(246), + [sym_seh_leave_statement] = STATE(245), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1688), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65009,20 +60195,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(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [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(1632), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -65053,1342 +60239,1074 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_attribute_declaration] = STATE(421), - [sym_compound_statement] = STATE(204), - [sym_attributed_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_switch_statement] = STATE(204), - [sym_case_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_goto_statement] = STATE(204), - [sym_seh_try_statement] = STATE(204), - [sym_seh_leave_statement] = STATE(204), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), - }, - [448] = { - [sym_attribute_declaration] = STATE(448), - [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(1238), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2162), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1791), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_goto] = ACTIONS(1830), - [anon_sym___try] = ACTIONS(1833), - [anon_sym___leave] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), + [396] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_attribute_declaration] = STATE(418), - [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(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(418), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [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), + [397] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_attribute_declaration] = STATE(408), - [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(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [398] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym_attribute_declaration] = STATE(451), - [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(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_goto] = ACTIONS(1878), - [anon_sym___try] = ACTIONS(1881), - [anon_sym___leave] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1610), - [anon_sym___alignof__] = ACTIONS(1613), - [anon_sym___alignof] = ACTIONS(1613), - [anon_sym__alignof] = ACTIONS(1613), - [anon_sym_alignof] = ACTIONS(1613), - [anon_sym__Alignof] = ACTIONS(1613), - [anon_sym_offsetof] = ACTIONS(1616), - [anon_sym__Generic] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1622), - [anon_sym___asm__] = ACTIONS(1622), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1628), - [anon_sym_u_SQUOTE] = ACTIONS(1628), - [anon_sym_U_SQUOTE] = ACTIONS(1628), - [anon_sym_u8_SQUOTE] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [anon_sym_NULL] = ACTIONS(1637), - [anon_sym_nullptr] = ACTIONS(1637), + [399] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(2107), - [sym_attributed_statement] = STATE(2107), - [sym_labeled_statement] = STATE(2107), - [sym_expression_statement] = STATE(2107), - [sym_if_statement] = STATE(2107), - [sym_switch_statement] = STATE(2107), - [sym_case_statement] = STATE(2107), - [sym_while_statement] = STATE(2107), - [sym_do_statement] = STATE(2107), - [sym_for_statement] = STATE(2107), - [sym_return_statement] = STATE(2107), - [sym_break_statement] = STATE(2107), - [sym_continue_statement] = STATE(2107), - [sym_goto_statement] = STATE(2107), - [sym_seh_try_statement] = STATE(2107), - [sym_seh_leave_statement] = STATE(2107), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2113), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1540), - [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), + [400] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym_seh_try_statement] = STATE(240), - [sym_seh_leave_statement] = STATE(240), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(1963), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), - }, - [454] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(188), - [sym_attributed_statement] = STATE(188), - [sym_labeled_statement] = STATE(188), - [sym_expression_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(188), - [sym_return_statement] = STATE(188), - [sym_break_statement] = STATE(188), - [sym_continue_statement] = STATE(188), - [sym_goto_statement] = STATE(188), - [sym_seh_try_statement] = STATE(188), - [sym_seh_leave_statement] = STATE(188), - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2137), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1536), - [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), + [401] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [455] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1466), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [402] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [456] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [403] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym__expression] = STATE(985), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1891), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [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), + [404] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, - [459] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [405] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [406] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1416), + [407] = { [sym_identifier] = ACTIONS(1414), [aux_sym_preproc_include_token1] = ACTIONS(1414), [aux_sym_preproc_def_token1] = ACTIONS(1414), @@ -66403,6 +61321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -66416,6 +61335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -66452,6 +61372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -66481,1922 +61403,924 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym___extension__] = ACTIONS(1895), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_auto] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym___inline] = ACTIONS(1895), - [anon_sym___inline__] = ACTIONS(1895), - [anon_sym___forceinline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym___thread] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym___restrict__] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym__Noreturn] = ACTIONS(1895), - [anon_sym_noreturn] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1895), - [anon_sym___alignof__] = ACTIONS(1895), - [anon_sym___alignof] = ACTIONS(1895), - [anon_sym__alignof] = ACTIONS(1895), - [anon_sym_alignof] = ACTIONS(1895), - [anon_sym__Alignof] = ACTIONS(1895), - [anon_sym_offsetof] = ACTIONS(1895), - [anon_sym__Generic] = ACTIONS(1895), - [anon_sym_asm] = ACTIONS(1895), - [anon_sym___asm__] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [anon_sym_NULL] = ACTIONS(1895), - [anon_sym_nullptr] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [464] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [465] = { - [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), + [408] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [466] = { - [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), + [409] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [467] = { - [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), + [410] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [468] = { - [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), + [411] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym___extension__] = ACTIONS(1899), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_auto] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym___inline] = ACTIONS(1899), - [anon_sym___inline__] = ACTIONS(1899), - [anon_sym___forceinline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym___thread] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym___restrict__] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym__Noreturn] = ACTIONS(1899), - [anon_sym_noreturn] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1899), - [anon_sym___alignof__] = ACTIONS(1899), - [anon_sym___alignof] = ACTIONS(1899), - [anon_sym__alignof] = ACTIONS(1899), - [anon_sym_alignof] = ACTIONS(1899), - [anon_sym__Alignof] = ACTIONS(1899), - [anon_sym_offsetof] = ACTIONS(1899), - [anon_sym__Generic] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym___asm__] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [anon_sym_NULL] = ACTIONS(1899), - [anon_sym_nullptr] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [412] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [413] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [473] = { - [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), + [414] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(241), + [sym_attributed_statement] = STATE(284), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(234), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(307), + [sym_case_statement] = STATE(315), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(261), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(266), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(344), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(259), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [474] = { - [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), + [415] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_goto_statement] = STATE(263), + [sym_seh_try_statement] = STATE(263), + [sym_seh_leave_statement] = STATE(263), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [475] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), + [416] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(341), + [sym_attributed_statement] = STATE(341), + [sym_labeled_statement] = STATE(341), + [sym_expression_statement] = STATE(341), + [sym_if_statement] = STATE(341), + [sym_switch_statement] = STATE(341), + [sym_case_statement] = STATE(341), + [sym_while_statement] = STATE(341), + [sym_do_statement] = STATE(341), + [sym_for_statement] = STATE(341), + [sym_return_statement] = STATE(341), + [sym_break_statement] = STATE(341), + [sym_continue_statement] = STATE(341), + [sym_goto_statement] = STATE(341), + [sym_seh_try_statement] = STATE(341), + [sym_seh_leave_statement] = STATE(341), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1766), + [anon_sym_LPAREN2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_case] = ACTIONS(1778), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_goto] = ACTIONS(1802), + [anon_sym___try] = ACTIONS(1805), + [anon_sym___leave] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1597), + [anon_sym_sizeof] = ACTIONS(1600), + [anon_sym___alignof__] = ACTIONS(1603), + [anon_sym___alignof] = ACTIONS(1603), + [anon_sym__alignof] = ACTIONS(1603), + [anon_sym_alignof] = ACTIONS(1603), + [anon_sym__Alignof] = ACTIONS(1603), + [anon_sym_offsetof] = ACTIONS(1606), + [anon_sym__Generic] = ACTIONS(1609), + [anon_sym_asm] = ACTIONS(1612), + [anon_sym___asm__] = ACTIONS(1612), + [sym_number_literal] = ACTIONS(1615), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym_u_SQUOTE] = ACTIONS(1618), + [anon_sym_U_SQUOTE] = ACTIONS(1618), + [anon_sym_u8_SQUOTE] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1624), + [sym_false] = ACTIONS(1624), + [anon_sym_NULL] = ACTIONS(1627), + [anon_sym_nullptr] = ACTIONS(1627), [sym_comment] = ACTIONS(3), }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [478] = { - [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), - }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [480] = { - [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), - }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [482] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2213), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [417] = { + [sym_attribute_declaration] = STATE(357), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(357), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68404,23 +62328,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68450,42 +62373,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [483] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2141), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [418] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(122), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_case_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym_seh_try_statement] = STATE(122), + [sym_seh_leave_statement] = STATE(122), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68493,23 +62425,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68539,42 +62470,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [484] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1984), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [419] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(131), + [sym_attributed_statement] = STATE(100), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(133), + [sym_case_statement] = STATE(132), + [sym_while_statement] = STATE(125), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(118), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(111), + [sym_seh_try_statement] = STATE(110), + [sym_seh_leave_statement] = STATE(109), + [sym__expression] = STATE(1221), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2033), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1738), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68582,23 +62522,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68628,42 +62567,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [485] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2004), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [420] = { + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(241), + [sym_attributed_statement] = STATE(284), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(234), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(307), + [sym_case_statement] = STATE(315), + [sym_while_statement] = STATE(275), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(261), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(266), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(344), + [sym_seh_try_statement] = STATE(260), + [sym_seh_leave_statement] = STATE(259), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68671,23 +62619,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68717,42 +62664,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1942), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [421] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(213), + [sym_attributed_statement] = STATE(213), + [sym_labeled_statement] = STATE(213), + [sym_expression_statement] = STATE(213), + [sym_if_statement] = STATE(213), + [sym_switch_statement] = STATE(213), + [sym_case_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_do_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_return_statement] = STATE(213), + [sym_break_statement] = STATE(213), + [sym_continue_statement] = STATE(213), + [sym_goto_statement] = STATE(213), + [sym_seh_try_statement] = STATE(213), + [sym_seh_leave_statement] = STATE(213), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1810), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68760,23 +62716,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_if] = ACTIONS(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68806,42 +62761,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2212), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [422] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(298), + [sym_attributed_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_case_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym_seh_try_statement] = STATE(298), + [sym_seh_leave_statement] = STATE(298), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1810), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68849,23 +62813,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_if] = ACTIONS(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68895,42 +62858,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2226), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [423] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(302), + [sym_attributed_statement] = STATE(302), + [sym_labeled_statement] = STATE(302), + [sym_expression_statement] = STATE(302), + [sym_if_statement] = STATE(302), + [sym_switch_statement] = STATE(302), + [sym_case_statement] = STATE(302), + [sym_while_statement] = STATE(302), + [sym_do_statement] = STATE(302), + [sym_for_statement] = STATE(302), + [sym_return_statement] = STATE(302), + [sym_break_statement] = STATE(302), + [sym_continue_statement] = STATE(302), + [sym_goto_statement] = STATE(302), + [sym_seh_try_statement] = STATE(302), + [sym_seh_leave_statement] = STATE(302), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1810), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68938,23 +62910,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_if] = ACTIONS(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68984,131 +62955,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1936), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [424] = { + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(280), + [sym_attributed_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym_seh_try_statement] = STATE(280), + [sym_seh_leave_statement] = STATE(280), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_switch] = ACTIONS(1824), + [anon_sym_case] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1851), + [anon_sym___try] = ACTIONS(1854), + [anon_sym___leave] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1597), + [anon_sym_sizeof] = ACTIONS(1600), + [anon_sym___alignof__] = ACTIONS(1603), + [anon_sym___alignof] = ACTIONS(1603), + [anon_sym__alignof] = ACTIONS(1603), + [anon_sym_alignof] = ACTIONS(1603), + [anon_sym__Alignof] = ACTIONS(1603), + [anon_sym_offsetof] = ACTIONS(1606), + [anon_sym__Generic] = ACTIONS(1609), + [anon_sym_asm] = ACTIONS(1612), + [anon_sym___asm__] = ACTIONS(1612), + [sym_number_literal] = ACTIONS(1615), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym_u_SQUOTE] = ACTIONS(1618), + [anon_sym_U_SQUOTE] = ACTIONS(1618), + [anon_sym_u8_SQUOTE] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1624), + [sym_false] = ACTIONS(1624), + [anon_sym_NULL] = ACTIONS(1627), + [anon_sym_nullptr] = ACTIONS(1627), [sym_comment] = ACTIONS(3), }, - [490] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1965), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [425] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(319), + [sym_attributed_statement] = STATE(319), + [sym_labeled_statement] = STATE(319), + [sym_expression_statement] = STATE(319), + [sym_if_statement] = STATE(319), + [sym_switch_statement] = STATE(319), + [sym_case_statement] = STATE(319), + [sym_while_statement] = STATE(319), + [sym_do_statement] = STATE(319), + [sym_for_statement] = STATE(319), + [sym_return_statement] = STATE(319), + [sym_break_statement] = STATE(319), + [sym_continue_statement] = STATE(319), + [sym_goto_statement] = STATE(319), + [sym_seh_try_statement] = STATE(319), + [sym_seh_leave_statement] = STATE(319), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1810), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69116,23 +63104,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_if] = ACTIONS(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69162,42 +63149,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2178), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [426] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(321), + [sym_attributed_statement] = STATE(322), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(324), + [sym_if_statement] = STATE(326), + [sym_switch_statement] = STATE(327), + [sym_case_statement] = STATE(328), + [sym_while_statement] = STATE(329), + [sym_do_statement] = STATE(330), + [sym_for_statement] = STATE(331), + [sym_return_statement] = STATE(332), + [sym_break_statement] = STATE(333), + [sym_continue_statement] = STATE(334), + [sym_goto_statement] = STATE(336), + [sym_seh_try_statement] = STATE(337), + [sym_seh_leave_statement] = STATE(338), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1810), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69205,23 +63201,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_if] = ACTIONS(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69251,42 +63246,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2136), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [427] = { + [sym_attribute_declaration] = STATE(427), + [sym_compound_statement] = STATE(341), + [sym_attributed_statement] = STATE(341), + [sym_labeled_statement] = STATE(341), + [sym_expression_statement] = STATE(341), + [sym_if_statement] = STATE(341), + [sym_switch_statement] = STATE(341), + [sym_case_statement] = STATE(341), + [sym_while_statement] = STATE(341), + [sym_do_statement] = STATE(341), + [sym_for_statement] = STATE(341), + [sym_return_statement] = STATE(341), + [sym_break_statement] = STATE(341), + [sym_continue_statement] = STATE(341), + [sym_goto_statement] = STATE(341), + [sym_seh_try_statement] = STATE(341), + [sym_seh_leave_statement] = STATE(341), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_case] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_goto] = ACTIONS(1802), + [anon_sym___try] = ACTIONS(1881), + [anon_sym___leave] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_PLUS_PLUS] = ACTIONS(1597), + [anon_sym_sizeof] = ACTIONS(1600), + [anon_sym___alignof__] = ACTIONS(1603), + [anon_sym___alignof] = ACTIONS(1603), + [anon_sym__alignof] = ACTIONS(1603), + [anon_sym_alignof] = ACTIONS(1603), + [anon_sym__Alignof] = ACTIONS(1603), + [anon_sym_offsetof] = ACTIONS(1606), + [anon_sym__Generic] = ACTIONS(1609), + [anon_sym_asm] = ACTIONS(1612), + [anon_sym___asm__] = ACTIONS(1612), + [sym_number_literal] = ACTIONS(1615), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym_u_SQUOTE] = ACTIONS(1618), + [anon_sym_U_SQUOTE] = ACTIONS(1618), + [anon_sym_u8_SQUOTE] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1624), + [sym_false] = ACTIONS(1624), + [anon_sym_NULL] = ACTIONS(1627), + [anon_sym_nullptr] = ACTIONS(1627), + [sym_comment] = ACTIONS(3), + }, + [428] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [429] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [430] = { + [sym_attribute_declaration] = STATE(436), + [sym_compound_statement] = STATE(198), + [sym_attributed_statement] = STATE(201), + [sym_labeled_statement] = STATE(175), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(182), + [sym_switch_statement] = STATE(183), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(193), + [sym_do_statement] = STATE(173), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(171), + [sym_break_statement] = STATE(170), + [sym_continue_statement] = STATE(169), + [sym_goto_statement] = STATE(168), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(166), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69294,23 +63589,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69340,42 +63634,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [493] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1938), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [431] = { + [sym_attribute_declaration] = STATE(427), + [sym_compound_statement] = STATE(341), + [sym_attributed_statement] = STATE(341), + [sym_labeled_statement] = STATE(341), + [sym_expression_statement] = STATE(341), + [sym_if_statement] = STATE(341), + [sym_switch_statement] = STATE(341), + [sym_case_statement] = STATE(341), + [sym_while_statement] = STATE(341), + [sym_do_statement] = STATE(341), + [sym_for_statement] = STATE(341), + [sym_return_statement] = STATE(341), + [sym_break_statement] = STATE(341), + [sym_continue_statement] = STATE(341), + [sym_goto_statement] = STATE(341), + [sym_seh_try_statement] = STATE(341), + [sym_seh_leave_statement] = STATE(341), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(1808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69383,23 +63686,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69429,42 +63731,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2103), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [432] = { + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_goto_statement] = STATE(263), + [sym_seh_try_statement] = STATE(263), + [sym_seh_leave_statement] = STATE(263), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69472,23 +63783,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69518,42 +63828,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [495] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(1931), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [433] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [434] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [435] = { + [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), + }, + [436] = { + [sym_attribute_declaration] = STATE(362), + [sym_compound_statement] = STATE(181), + [sym_attributed_statement] = STATE(181), + [sym_labeled_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym_if_statement] = STATE(181), + [sym_switch_statement] = STATE(181), + [sym_case_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_seh_try_statement] = STATE(181), + [sym_seh_leave_statement] = STATE(181), + [sym__expression] = STATE(1220), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(1638), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69561,23 +64171,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69607,42 +64216,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2145), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2087), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), + [437] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [438] = { + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(305), + [sym_attributed_statement] = STATE(305), + [sym_labeled_statement] = STATE(305), + [sym_expression_statement] = STATE(305), + [sym_if_statement] = STATE(305), + [sym_switch_statement] = STATE(305), + [sym_case_statement] = STATE(305), + [sym_while_statement] = STATE(305), + [sym_do_statement] = STATE(305), + [sym_for_statement] = STATE(305), + [sym_return_statement] = STATE(305), + [sym_break_statement] = STATE(305), + [sym_continue_statement] = STATE(305), + [sym_goto_statement] = STATE(305), + [sym_seh_try_statement] = STATE(305), + [sym_seh_leave_statement] = STATE(305), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1808), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69650,23 +64365,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___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69696,66 +64410,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [497] = { - [sym_type_qualifier] = STATE(1290), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(820), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_type_descriptor] = STATE(2142), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__type_definition_type_repeat1] = STATE(1290), - [aux_sym_sized_type_specifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [439] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(3), + }, + [440] = { + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(216), + [sym_attributed_statement] = STATE(216), + [sym_labeled_statement] = STATE(216), + [sym_expression_statement] = STATE(216), + [sym_if_statement] = STATE(216), + [sym_switch_statement] = STATE(216), + [sym_case_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_do_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_return_statement] = STATE(216), + [sym_break_statement] = STATE(216), + [sym_continue_statement] = STATE(216), + [sym_goto_statement] = STATE(216), + [sym_seh_try_statement] = STATE(216), + [sym_seh_leave_statement] = STATE(216), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -69785,328 +64604,756 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [498] = { - [sym_identifier] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_LPAREN2] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym___extension__] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym___attribute__] = ACTIONS(1907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1909), - [anon_sym___declspec] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_signed] = ACTIONS(1907), - [anon_sym_unsigned] = ACTIONS(1907), - [anon_sym_long] = ACTIONS(1907), - [anon_sym_short] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_EQ] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_auto] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_inline] = ACTIONS(1907), - [anon_sym___inline] = ACTIONS(1907), - [anon_sym___inline__] = ACTIONS(1907), - [anon_sym___forceinline] = ACTIONS(1907), - [anon_sym_thread_local] = ACTIONS(1907), - [anon_sym___thread] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_constexpr] = ACTIONS(1907), - [anon_sym_volatile] = ACTIONS(1907), - [anon_sym_restrict] = ACTIONS(1907), - [anon_sym___restrict__] = ACTIONS(1907), - [anon_sym__Atomic] = ACTIONS(1907), - [anon_sym__Noreturn] = ACTIONS(1907), - [anon_sym_noreturn] = ACTIONS(1907), - [sym_primitive_type] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [anon_sym_COLON] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_union] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_switch] = ACTIONS(1907), - [anon_sym_case] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_goto] = ACTIONS(1907), - [anon_sym___try] = ACTIONS(1907), - [anon_sym___leave] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [anon_sym_PLUS_PLUS] = ACTIONS(1909), - [anon_sym_sizeof] = ACTIONS(1907), - [anon_sym___alignof__] = ACTIONS(1907), - [anon_sym___alignof] = ACTIONS(1907), - [anon_sym__alignof] = ACTIONS(1907), - [anon_sym_alignof] = ACTIONS(1907), - [anon_sym__Alignof] = ACTIONS(1907), - [anon_sym_offsetof] = ACTIONS(1907), - [anon_sym__Generic] = ACTIONS(1907), - [anon_sym_asm] = ACTIONS(1907), - [anon_sym___asm__] = ACTIONS(1907), - [sym_number_literal] = ACTIONS(1909), - [anon_sym_L_SQUOTE] = ACTIONS(1909), - [anon_sym_u_SQUOTE] = ACTIONS(1909), - [anon_sym_U_SQUOTE] = ACTIONS(1909), - [anon_sym_u8_SQUOTE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_L_DQUOTE] = ACTIONS(1909), - [anon_sym_u_DQUOTE] = ACTIONS(1909), - [anon_sym_U_DQUOTE] = ACTIONS(1909), - [anon_sym_u8_DQUOTE] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym_true] = ACTIONS(1907), - [sym_false] = ACTIONS(1907), - [anon_sym_NULL] = ACTIONS(1907), - [anon_sym_nullptr] = ACTIONS(1907), + [441] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [499] = { - [sym_identifier] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym___extension__] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym___attribute__] = ACTIONS(1911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1913), - [anon_sym___declspec] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_signed] = ACTIONS(1911), - [anon_sym_unsigned] = ACTIONS(1911), - [anon_sym_long] = ACTIONS(1911), - [anon_sym_short] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_auto] = ACTIONS(1911), - [anon_sym_register] = ACTIONS(1911), - [anon_sym_inline] = ACTIONS(1911), - [anon_sym___inline] = ACTIONS(1911), - [anon_sym___inline__] = ACTIONS(1911), - [anon_sym___forceinline] = ACTIONS(1911), - [anon_sym_thread_local] = ACTIONS(1911), - [anon_sym___thread] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_constexpr] = ACTIONS(1911), - [anon_sym_volatile] = ACTIONS(1911), - [anon_sym_restrict] = ACTIONS(1911), - [anon_sym___restrict__] = ACTIONS(1911), - [anon_sym__Atomic] = ACTIONS(1911), - [anon_sym__Noreturn] = ACTIONS(1911), - [anon_sym_noreturn] = ACTIONS(1911), - [sym_primitive_type] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_switch] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_goto] = ACTIONS(1911), - [anon_sym___try] = ACTIONS(1911), - [anon_sym___leave] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_sizeof] = ACTIONS(1911), - [anon_sym___alignof__] = ACTIONS(1911), - [anon_sym___alignof] = ACTIONS(1911), - [anon_sym__alignof] = ACTIONS(1911), - [anon_sym_alignof] = ACTIONS(1911), - [anon_sym__Alignof] = ACTIONS(1911), - [anon_sym_offsetof] = ACTIONS(1911), - [anon_sym__Generic] = ACTIONS(1911), - [anon_sym_asm] = ACTIONS(1911), - [anon_sym___asm__] = ACTIONS(1911), - [sym_number_literal] = ACTIONS(1913), - [anon_sym_L_SQUOTE] = ACTIONS(1913), - [anon_sym_u_SQUOTE] = ACTIONS(1913), - [anon_sym_U_SQUOTE] = ACTIONS(1913), - [anon_sym_u8_SQUOTE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_L_DQUOTE] = ACTIONS(1913), - [anon_sym_u_DQUOTE] = ACTIONS(1913), - [anon_sym_U_DQUOTE] = ACTIONS(1913), - [anon_sym_u8_DQUOTE] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [anon_sym_NULL] = ACTIONS(1911), - [anon_sym_nullptr] = ACTIONS(1911), + [442] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [500] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [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), + [443] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [501] = { - [sym__expression] = STATE(835), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1921), + [444] = { + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [445] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [446] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + }, + [447] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [448] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(503), + [sym_attributed_statement] = STATE(503), + [sym_labeled_statement] = STATE(503), + [sym_expression_statement] = STATE(503), + [sym_if_statement] = STATE(503), + [sym_switch_statement] = STATE(503), + [sym_case_statement] = STATE(503), + [sym_while_statement] = STATE(503), + [sym_do_statement] = STATE(503), + [sym_for_statement] = STATE(503), + [sym_return_statement] = STATE(503), + [sym_break_statement] = STATE(503), + [sym_continue_statement] = STATE(503), + [sym_goto_statement] = STATE(503), + [sym_seh_try_statement] = STATE(503), + [sym_seh_leave_statement] = STATE(503), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -70116,8 +65363,6 @@ 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(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -70135,230 +65380,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [502] = { - [sym__expression] = STATE(921), - [sym__expression_not_binary] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(952), - [sym_unary_expression] = STATE(928), - [sym_binary_expression] = STATE(928), - [sym_update_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_alignof_expression] = STATE(928), - [sym_offsetof_expression] = STATE(928), - [sym_generic_expression] = STATE(928), - [sym_subscript_expression] = STATE(952), - [sym_call_expression] = STATE(952), - [sym_gnu_asm_expression] = STATE(928), - [sym_field_expression] = STATE(952), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(952), - [sym_initializer_list] = STATE(965), - [sym_char_literal] = STATE(928), - [sym_concatenated_string] = STATE(928), - [sym_string_literal] = STATE(849), - [sym_null] = STATE(928), - [sym_identifier] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1927), - [anon_sym___alignof__] = ACTIONS(1773), - [anon_sym___alignof] = ACTIONS(1773), - [anon_sym__alignof] = ACTIONS(1773), - [anon_sym_alignof] = ACTIONS(1773), - [anon_sym__Alignof] = ACTIONS(1773), - [anon_sym_offsetof] = ACTIONS(1775), - [anon_sym__Generic] = ACTIONS(1777), - [anon_sym_asm] = ACTIONS(1779), - [anon_sym___asm__] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1783), - [anon_sym_u_SQUOTE] = ACTIONS(1783), - [anon_sym_U_SQUOTE] = ACTIONS(1783), - [anon_sym_u8_SQUOTE] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1783), - [anon_sym_L_DQUOTE] = ACTIONS(1785), - [anon_sym_u_DQUOTE] = ACTIONS(1785), - [anon_sym_U_DQUOTE] = ACTIONS(1785), - [anon_sym_u8_DQUOTE] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [anon_sym_NULL] = ACTIONS(1789), - [anon_sym_nullptr] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - }, - [503] = { - [sym_else_clause] = STATE(295), - [sym_identifier] = 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_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(1929), - [anon_sym_switch] = 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), - }, - [504] = { - [sym__expression] = STATE(985), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_initializer_list] = STATE(809), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [sym_identifier] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1933), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_LT_LT] = ACTIONS(1516), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1516), - [anon_sym_sizeof] = ACTIONS(1937), + [449] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(282), + [sym_attributed_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym_seh_try_statement] = STATE(282), + [sym_seh_leave_statement] = STATE(282), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -70368,8 +65460,6 @@ 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(1522), - [anon_sym_DASH_GT] = ACTIONS(1516), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -70387,2225 +65477,3080 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [505] = { - [sym_identifier] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1948), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [anon_sym___inline] = ACTIONS(1946), - [anon_sym___inline__] = ACTIONS(1946), - [anon_sym___forceinline] = ACTIONS(1946), - [anon_sym_thread_local] = ACTIONS(1946), - [anon_sym___thread] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_constexpr] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym___restrict__] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym__Noreturn] = ACTIONS(1946), - [anon_sym_noreturn] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_switch] = ACTIONS(1944), - [anon_sym_case] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_goto] = ACTIONS(1944), - [anon_sym___try] = ACTIONS(1944), - [anon_sym___leave] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_sizeof] = ACTIONS(1944), - [anon_sym___alignof__] = ACTIONS(1944), - [anon_sym___alignof] = ACTIONS(1944), - [anon_sym__alignof] = ACTIONS(1944), - [anon_sym_alignof] = ACTIONS(1944), - [anon_sym__Alignof] = ACTIONS(1944), - [anon_sym_offsetof] = ACTIONS(1944), - [anon_sym__Generic] = ACTIONS(1944), - [anon_sym_asm] = ACTIONS(1944), - [anon_sym___asm__] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(1942), - [anon_sym_L_SQUOTE] = ACTIONS(1942), - [anon_sym_u_SQUOTE] = ACTIONS(1942), - [anon_sym_U_SQUOTE] = ACTIONS(1942), - [anon_sym_u8_SQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_L_DQUOTE] = ACTIONS(1942), - [anon_sym_u_DQUOTE] = ACTIONS(1942), - [anon_sym_U_DQUOTE] = ACTIONS(1942), - [anon_sym_u8_DQUOTE] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(1942), - [sym_true] = ACTIONS(1944), - [sym_false] = ACTIONS(1944), - [anon_sym_NULL] = ACTIONS(1944), - [anon_sym_nullptr] = ACTIONS(1944), - [sym_comment] = ACTIONS(3), - }, - [506] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [450] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(305), + [sym_attributed_statement] = STATE(305), + [sym_labeled_statement] = STATE(305), + [sym_expression_statement] = STATE(305), + [sym_if_statement] = STATE(305), + [sym_switch_statement] = STATE(305), + [sym_case_statement] = STATE(305), + [sym_while_statement] = STATE(305), + [sym_do_statement] = STATE(305), + [sym_for_statement] = STATE(305), + [sym_return_statement] = STATE(305), + [sym_break_statement] = STATE(305), + [sym_continue_statement] = STATE(305), + [sym_goto_statement] = STATE(305), + [sym_seh_try_statement] = STATE(305), + [sym_seh_leave_statement] = STATE(305), + [sym__expression] = STATE(1225), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), [anon_sym_u8_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [507] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [451] = { + [sym_attribute_declaration] = STATE(431), + [sym_compound_statement] = STATE(282), + [sym_attributed_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym_seh_try_statement] = STATE(282), + [sym_seh_leave_statement] = STATE(282), + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2094), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1101), + [anon_sym___leave] = ACTIONS(1103), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [508] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1979), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [452] = { + [sym_attribute_declaration] = STATE(424), + [sym_compound_statement] = STATE(280), + [sym_attributed_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym_seh_try_statement] = STATE(280), + [sym_seh_leave_statement] = STATE(280), + [sym__expression] = STATE(1217), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(1935), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_attributed_declarator_repeat1] = STATE(424), + [sym_identifier] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_if] = ACTIONS(555), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_case] = ACTIONS(559), + [anon_sym_default] = ACTIONS(561), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_return] = ACTIONS(569), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_goto] = ACTIONS(575), + [anon_sym___try] = ACTIONS(577), + [anon_sym___leave] = ACTIONS(579), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [509] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), + [453] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [510] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), + [454] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [511] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1973), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), + [455] = { + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, - [512] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [456] = { + [sym__expression] = STATE(991), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(814), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(814), + [sym_initializer_list] = STATE(813), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_identifier] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1518), + [anon_sym_GT_GT] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PERCENT_EQ] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_LT_LT_EQ] = ACTIONS(1512), + [anon_sym_GT_GT_EQ] = ACTIONS(1512), + [anon_sym_AMP_EQ] = ACTIONS(1512), + [anon_sym_CARET_EQ] = ACTIONS(1512), + [anon_sym_PIPE_EQ] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1891), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), [anon_sym_u8_DQUOTE] = ACTIONS(95), [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [513] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), + [457] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [514] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), - }, - [515] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), + [458] = { + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [516] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), + [459] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [517] = { - [sym_string_literal] = STATE(774), - [aux_sym_sized_type_specifier_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1967), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1975), - [anon_sym_SLASH_EQ] = ACTIONS(1975), - [anon_sym_PERCENT_EQ] = ACTIONS(1975), - [anon_sym_PLUS_EQ] = ACTIONS(1975), - [anon_sym_DASH_EQ] = ACTIONS(1975), - [anon_sym_LT_LT_EQ] = ACTIONS(1975), - [anon_sym_GT_GT_EQ] = ACTIONS(1975), - [anon_sym_AMP_EQ] = ACTIONS(1975), - [anon_sym_CARET_EQ] = ACTIONS(1975), - [anon_sym_PIPE_EQ] = ACTIONS(1975), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), - [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), + [460] = { + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, - [518] = { - [sym_type_qualifier] = STATE(519), - [sym__expression] = STATE(1297), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), - }, - [519] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1269), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), - }, - [520] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1278), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [461] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [521] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1293), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [462] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [522] = { - [sym_type_qualifier] = STATE(521), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [463] = { + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, - [523] = { - [sym_type_qualifier] = STATE(525), - [sym__expression] = STATE(1264), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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_type_qualifier] = STATE(520), - [sym__expression] = STATE(1275), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(520), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [464] = { + [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), }, - [525] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1288), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [465] = { + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [526] = { - [sym_type_qualifier] = STATE(527), - [sym__expression] = STATE(1283), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [466] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, - [527] = { - [sym_type_qualifier] = STATE(852), - [sym__expression] = STATE(1266), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(1020), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym__type_definition_type_repeat1] = STATE(852), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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), + [467] = { + [ts_builtin_sym_end] = ACTIONS(1893), + [sym_identifier] = ACTIONS(1895), + [aux_sym_preproc_include_token1] = ACTIONS(1895), + [aux_sym_preproc_def_token1] = ACTIONS(1895), + [aux_sym_preproc_if_token1] = ACTIONS(1895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), + [sym_preproc_directive] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym___extension__] = ACTIONS(1895), + [anon_sym_typedef] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym___attribute__] = ACTIONS(1895), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), + [anon_sym___declspec] = ACTIONS(1895), + [anon_sym___cdecl] = ACTIONS(1895), + [anon_sym___clrcall] = ACTIONS(1895), + [anon_sym___stdcall] = ACTIONS(1895), + [anon_sym___fastcall] = ACTIONS(1895), + [anon_sym___thiscall] = ACTIONS(1895), + [anon_sym___vectorcall] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1895), + [anon_sym_unsigned] = ACTIONS(1895), + [anon_sym_long] = ACTIONS(1895), + [anon_sym_short] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1895), + [anon_sym_auto] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_inline] = ACTIONS(1895), + [anon_sym___inline] = ACTIONS(1895), + [anon_sym___inline__] = ACTIONS(1895), + [anon_sym___forceinline] = ACTIONS(1895), + [anon_sym_thread_local] = ACTIONS(1895), + [anon_sym___thread] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_constexpr] = ACTIONS(1895), + [anon_sym_volatile] = ACTIONS(1895), + [anon_sym_restrict] = ACTIONS(1895), + [anon_sym___restrict__] = ACTIONS(1895), + [anon_sym__Atomic] = ACTIONS(1895), + [anon_sym__Noreturn] = ACTIONS(1895), + [anon_sym_noreturn] = ACTIONS(1895), + [sym_primitive_type] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_struct] = ACTIONS(1895), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_switch] = ACTIONS(1895), + [anon_sym_case] = ACTIONS(1895), + [anon_sym_default] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_goto] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_sizeof] = ACTIONS(1895), + [anon_sym___alignof__] = ACTIONS(1895), + [anon_sym___alignof] = ACTIONS(1895), + [anon_sym__alignof] = ACTIONS(1895), + [anon_sym_alignof] = ACTIONS(1895), + [anon_sym__Alignof] = ACTIONS(1895), + [anon_sym_offsetof] = ACTIONS(1895), + [anon_sym__Generic] = ACTIONS(1895), + [anon_sym_asm] = ACTIONS(1895), + [anon_sym___asm__] = ACTIONS(1895), + [sym_number_literal] = ACTIONS(1893), + [anon_sym_L_SQUOTE] = ACTIONS(1893), + [anon_sym_u_SQUOTE] = ACTIONS(1893), + [anon_sym_U_SQUOTE] = ACTIONS(1893), + [anon_sym_u8_SQUOTE] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_L_DQUOTE] = ACTIONS(1893), + [anon_sym_u_DQUOTE] = ACTIONS(1893), + [anon_sym_U_DQUOTE] = ACTIONS(1893), + [anon_sym_u8_DQUOTE] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym_true] = ACTIONS(1895), + [sym_false] = ACTIONS(1895), + [anon_sym_NULL] = ACTIONS(1895), + [anon_sym_nullptr] = ACTIONS(1895), [sym_comment] = ACTIONS(3), }, - [528] = { - [sym__expression] = STATE(1200), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1802), - [sym_initializer_pair] = STATE(1802), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_COMMA] = ACTIONS(2037), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(2043), - [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), + [468] = { + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [529] = { - [sym__expression] = STATE(1191), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1814), - [sym_initializer_pair] = STATE(1814), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(2043), - [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), + [469] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [530] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(2043), - [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), + [470] = { + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [531] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(2043), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [471] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [532] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(2043), - [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), + [472] = { + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [aux_sym_preproc_include_token1] = ACTIONS(1899), + [aux_sym_preproc_def_token1] = ACTIONS(1899), + [aux_sym_preproc_if_token1] = ACTIONS(1899), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), + [sym_preproc_directive] = ACTIONS(1899), + [anon_sym_LPAREN2] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym___extension__] = ACTIONS(1899), + [anon_sym_typedef] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym___attribute__] = ACTIONS(1899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), + [anon_sym___declspec] = ACTIONS(1899), + [anon_sym___cdecl] = ACTIONS(1899), + [anon_sym___clrcall] = ACTIONS(1899), + [anon_sym___stdcall] = ACTIONS(1899), + [anon_sym___fastcall] = ACTIONS(1899), + [anon_sym___thiscall] = ACTIONS(1899), + [anon_sym___vectorcall] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_signed] = ACTIONS(1899), + [anon_sym_unsigned] = ACTIONS(1899), + [anon_sym_long] = ACTIONS(1899), + [anon_sym_short] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1899), + [anon_sym_auto] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_inline] = ACTIONS(1899), + [anon_sym___inline] = ACTIONS(1899), + [anon_sym___inline__] = ACTIONS(1899), + [anon_sym___forceinline] = ACTIONS(1899), + [anon_sym_thread_local] = ACTIONS(1899), + [anon_sym___thread] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_constexpr] = ACTIONS(1899), + [anon_sym_volatile] = ACTIONS(1899), + [anon_sym_restrict] = ACTIONS(1899), + [anon_sym___restrict__] = ACTIONS(1899), + [anon_sym__Atomic] = ACTIONS(1899), + [anon_sym__Noreturn] = ACTIONS(1899), + [anon_sym_noreturn] = ACTIONS(1899), + [sym_primitive_type] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_switch] = ACTIONS(1899), + [anon_sym_case] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_sizeof] = ACTIONS(1899), + [anon_sym___alignof__] = ACTIONS(1899), + [anon_sym___alignof] = ACTIONS(1899), + [anon_sym__alignof] = ACTIONS(1899), + [anon_sym_alignof] = ACTIONS(1899), + [anon_sym__Alignof] = ACTIONS(1899), + [anon_sym_offsetof] = ACTIONS(1899), + [anon_sym__Generic] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym___asm__] = ACTIONS(1899), + [sym_number_literal] = ACTIONS(1897), + [anon_sym_L_SQUOTE] = ACTIONS(1897), + [anon_sym_u_SQUOTE] = ACTIONS(1897), + [anon_sym_U_SQUOTE] = ACTIONS(1897), + [anon_sym_u8_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_L_DQUOTE] = ACTIONS(1897), + [anon_sym_u_DQUOTE] = ACTIONS(1897), + [anon_sym_U_DQUOTE] = ACTIONS(1897), + [anon_sym_u8_DQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [anon_sym_NULL] = ACTIONS(1899), + [anon_sym_nullptr] = ACTIONS(1899), [sym_comment] = ACTIONS(3), }, - [533] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = 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(2043), - [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), + [473] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [534] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2124), - [sym_preproc_elif_in_field_declaration_list] = STATE(2124), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2124), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), - [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), + [474] = { + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [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___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_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), + }, + [476] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [477] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + }, + [478] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [479] = { + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [480] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [481] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [482] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1229), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2038), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(1994), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72615,67 +68560,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [535] = { - [sym_preproc_def] = STATE(542), - [sym_preproc_function_def] = STATE(542), - [sym_preproc_call] = STATE(542), - [sym_preproc_if_in_field_declaration_list] = STATE(542), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(542), - [sym_preproc_else_in_field_declaration_list] = STATE(2021), - [sym_preproc_elif_in_field_declaration_list] = STATE(2021), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2021), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(542), - [sym_field_declaration] = STATE(542), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(542), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [483] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2023), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72685,67 +68650,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [536] = { - [sym_preproc_def] = STATE(537), - [sym_preproc_function_def] = STATE(537), - [sym_preproc_call] = STATE(537), - [sym_preproc_if_in_field_declaration_list] = STATE(537), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(537), - [sym_preproc_else_in_field_declaration_list] = STATE(2064), - [sym_preproc_elif_in_field_declaration_list] = STATE(2064), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2064), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(537), - [sym_field_declaration] = STATE(537), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(537), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [484] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2078), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72755,67 +68740,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [537] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2049), - [sym_preproc_elif_in_field_declaration_list] = STATE(2049), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2049), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [485] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2088), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72825,51 +68830,9 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [538] = { - [sym__expression] = STATE(1244), - [sym__expression_not_binary] = STATE(820), - [sym_conditional_expression] = STATE(820), - [sym_assignment_expression] = STATE(820), - [sym_pointer_expression] = STATE(910), - [sym_unary_expression] = STATE(820), - [sym_binary_expression] = STATE(820), - [sym_update_expression] = STATE(820), - [sym_cast_expression] = STATE(820), - [sym_sizeof_expression] = STATE(820), - [sym_alignof_expression] = STATE(820), - [sym_offsetof_expression] = STATE(820), - [sym_generic_expression] = STATE(820), - [sym_subscript_expression] = STATE(910), - [sym_call_expression] = STATE(910), - [sym_gnu_asm_expression] = STATE(820), - [sym_field_expression] = STATE(910), - [sym_compound_literal_expression] = STATE(820), - [sym_parenthesized_expression] = STATE(910), - [sym_initializer_list] = STATE(1881), - [sym_initializer_pair] = STATE(1881), - [sym_subscript_designator] = STATE(1608), - [sym_subscript_range_designator] = STATE(1608), - [sym_field_designator] = STATE(1608), - [sym_char_literal] = STATE(820), - [sym_concatenated_string] = STATE(820), - [sym_string_literal] = STATE(776), - [sym_null] = STATE(820), - [aux_sym_initializer_pair_repeat1] = STATE(1608), - [sym_identifier] = ACTIONS(2035), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(2041), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72882,7 +68845,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72900,62 +68862,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_preproc_def] = STATE(543), - [sym_preproc_function_def] = STATE(543), - [sym_preproc_call] = STATE(543), - [sym_preproc_if_in_field_declaration_list] = STATE(543), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(543), - [sym_preproc_else_in_field_declaration_list] = STATE(2203), - [sym_preproc_elif_in_field_declaration_list] = STATE(2203), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2203), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(543), - [sym_field_declaration] = STATE(543), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(543), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2081), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [486] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(1938), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72965,67 +68920,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [540] = { - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1349), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_ms_based_modifier] = STATE(2001), - [sym__declarator] = STATE(1614), - [sym__abstract_declarator] = STATE(1704), - [sym_parenthesized_declarator] = STATE(1537), - [sym_abstract_parenthesized_declarator] = STATE(1650), - [sym_attributed_declarator] = STATE(1537), - [sym_pointer_declarator] = STATE(1537), - [sym_abstract_pointer_declarator] = STATE(1650), - [sym_function_declarator] = STATE(1537), - [sym_abstract_function_declarator] = STATE(1650), - [sym_array_declarator] = STATE(1537), - [sym_abstract_array_declarator] = STATE(1650), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym_variadic_parameter] = STATE(1743), - [sym_parameter_list] = STATE(1653), - [sym_parameter_declaration] = STATE(1743), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2085), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_LPAREN2] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2091), + [487] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2013), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(2093), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2095), - [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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73035,67 +69010,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [541] = { - [sym_preproc_def] = STATE(534), - [sym_preproc_function_def] = STATE(534), - [sym_preproc_call] = STATE(534), - [sym_preproc_if_in_field_declaration_list] = STATE(534), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), - [sym_preproc_else_in_field_declaration_list] = STATE(2053), - [sym_preproc_elif_in_field_declaration_list] = STATE(2053), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2053), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(534), - [sym_field_declaration] = STATE(534), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [488] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(1976), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73105,67 +69100,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [542] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2067), - [sym_preproc_elif_in_field_declaration_list] = STATE(2067), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2067), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [489] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2049), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73175,67 +69190,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [543] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(2189), - [sym_preproc_elif_in_field_declaration_list] = STATE(2189), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2189), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [490] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1229), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2038), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(1982), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73245,64 +69280,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [544] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2186), - [sym_preproc_elif_in_field_declaration_list] = STATE(2186), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [491] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2036), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73312,64 +69370,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [545] = { - [sym_preproc_def] = STATE(546), - [sym_preproc_function_def] = STATE(546), - [sym_preproc_call] = STATE(546), - [sym_preproc_if_in_field_declaration_list] = STATE(546), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(546), - [sym_preproc_else_in_field_declaration_list] = STATE(2159), - [sym_preproc_elif_in_field_declaration_list] = STATE(2159), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(546), - [sym_field_declaration] = STATE(546), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(546), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [492] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1229), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2038), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(1967), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73379,64 +69460,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [546] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2182), - [sym_preproc_elif_in_field_declaration_list] = STATE(2182), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [493] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1229), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2038), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(1939), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73446,64 +69550,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [547] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(2100), - [sym_preproc_elif_in_field_declaration_list] = STATE(2100), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [494] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(1972), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73513,64 +69640,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [548] = { - [sym_preproc_def] = STATE(553), - [sym_preproc_function_def] = STATE(553), - [sym_preproc_call] = STATE(553), - [sym_preproc_if_in_field_declaration_list] = STATE(553), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), - [sym_preproc_else_in_field_declaration_list] = STATE(2181), - [sym_preproc_elif_in_field_declaration_list] = STATE(2181), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(553), - [sym_field_declaration] = STATE(553), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [495] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2051), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73580,64 +69730,87 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [549] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym_preproc_else_in_field_declaration_list] = STATE(2054), - [sym_preproc_elif_in_field_declaration_list] = STATE(2054), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [496] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2171), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73647,131 +69820,87 @@ 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(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [550] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2047), - [sym_preproc_elif_in_field_declaration_list] = STATE(2047), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [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_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [551] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2077), - [sym_preproc_elif_in_field_declaration_list] = STATE(2077), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [497] = { + [sym_type_qualifier] = STATE(1277), + [sym__type_specifier] = STATE(1312), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_comma_expression] = STATE(2064), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_type_descriptor] = STATE(2063), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__type_definition_type_repeat1] = STATE(1277), + [aux_sym_sized_type_specifier_repeat1] = STATE(1323), + [sym_identifier] = ACTIONS(1901), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_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_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -73781,960 +69910,4405 @@ 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(51), + [anon_sym_enum] = ACTIONS(1905), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), }, - [552] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1469), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2127), - [aux_sym_preproc_def_token1] = ACTIONS(2130), - [aux_sym_preproc_if_token1] = ACTIONS(2133), - [aux_sym_preproc_if_token2] = ACTIONS(2136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), - [aux_sym_preproc_else_token1] = ACTIONS(2136), - [aux_sym_preproc_elif_token1] = ACTIONS(2136), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2136), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2136), - [sym_preproc_directive] = ACTIONS(2141), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2153), - [anon_sym___declspec] = ACTIONS(2156), - [anon_sym_signed] = ACTIONS(2159), - [anon_sym_unsigned] = ACTIONS(2159), - [anon_sym_long] = ACTIONS(2159), - [anon_sym_short] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_auto] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_inline] = ACTIONS(2147), - [anon_sym___inline] = ACTIONS(2147), - [anon_sym___inline__] = ACTIONS(2147), - [anon_sym___forceinline] = ACTIONS(2147), - [anon_sym_thread_local] = ACTIONS(2147), - [anon_sym___thread] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2171), + [498] = { + [sym__expression] = STATE(837), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(894), + [sym_initializer_list] = STATE(813), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(840), + [sym_null] = STATE(814), + [sym_identifier] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1911), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2215), - [sym_preproc_elif_in_field_declaration_list] = STATE(2215), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [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), + [499] = { + [sym_identifier] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_LPAREN2] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym___extension__] = ACTIONS(1913), + [anon_sym_extern] = ACTIONS(1913), + [anon_sym___attribute__] = ACTIONS(1913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1915), + [anon_sym___declspec] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1913), + [anon_sym_auto] = ACTIONS(1913), + [anon_sym_register] = ACTIONS(1913), + [anon_sym_inline] = ACTIONS(1913), + [anon_sym___inline] = ACTIONS(1913), + [anon_sym___inline__] = ACTIONS(1913), + [anon_sym___forceinline] = ACTIONS(1913), + [anon_sym_thread_local] = ACTIONS(1913), + [anon_sym___thread] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_constexpr] = ACTIONS(1913), + [anon_sym_volatile] = ACTIONS(1913), + [anon_sym_restrict] = ACTIONS(1913), + [anon_sym___restrict__] = ACTIONS(1913), + [anon_sym__Atomic] = ACTIONS(1913), + [anon_sym__Noreturn] = ACTIONS(1913), + [anon_sym_noreturn] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_switch] = ACTIONS(1913), + [anon_sym_case] = ACTIONS(1913), + [anon_sym_default] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_do] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_goto] = ACTIONS(1913), + [anon_sym___try] = ACTIONS(1913), + [anon_sym___leave] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1913), + [anon_sym___alignof__] = ACTIONS(1913), + [anon_sym___alignof] = ACTIONS(1913), + [anon_sym__alignof] = ACTIONS(1913), + [anon_sym_alignof] = ACTIONS(1913), + [anon_sym__Alignof] = ACTIONS(1913), + [anon_sym_offsetof] = ACTIONS(1913), + [anon_sym__Generic] = ACTIONS(1913), + [anon_sym_asm] = ACTIONS(1913), + [anon_sym___asm__] = ACTIONS(1913), + [sym_number_literal] = ACTIONS(1915), + [anon_sym_L_SQUOTE] = ACTIONS(1915), + [anon_sym_u_SQUOTE] = ACTIONS(1915), + [anon_sym_U_SQUOTE] = ACTIONS(1915), + [anon_sym_u8_SQUOTE] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1915), + [anon_sym_L_DQUOTE] = ACTIONS(1915), + [anon_sym_u_DQUOTE] = ACTIONS(1915), + [anon_sym_U_DQUOTE] = ACTIONS(1915), + [anon_sym_u8_DQUOTE] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [anon_sym_NULL] = ACTIONS(1913), + [anon_sym_nullptr] = ACTIONS(1913), [sym_comment] = ACTIONS(3), }, - [554] = { - [sym_preproc_def] = STATE(544), - [sym_preproc_function_def] = STATE(544), - [sym_preproc_call] = STATE(544), - [sym_preproc_if_in_field_declaration_list] = STATE(544), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(544), - [sym_preproc_else_in_field_declaration_list] = STATE(2198), - [sym_preproc_elif_in_field_declaration_list] = STATE(2198), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(544), - [sym_field_declaration] = STATE(544), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(544), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [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), + [500] = { + [sym_identifier] = ACTIONS(1917), + [anon_sym_COMMA] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym___extension__] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym___attribute__] = ACTIONS(1917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1919), + [anon_sym___declspec] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_signed] = ACTIONS(1917), + [anon_sym_unsigned] = ACTIONS(1917), + [anon_sym_long] = ACTIONS(1917), + [anon_sym_short] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_auto] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_inline] = ACTIONS(1917), + [anon_sym___inline] = ACTIONS(1917), + [anon_sym___inline__] = ACTIONS(1917), + [anon_sym___forceinline] = ACTIONS(1917), + [anon_sym_thread_local] = ACTIONS(1917), + [anon_sym___thread] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_constexpr] = ACTIONS(1917), + [anon_sym_volatile] = ACTIONS(1917), + [anon_sym_restrict] = ACTIONS(1917), + [anon_sym___restrict__] = ACTIONS(1917), + [anon_sym__Atomic] = ACTIONS(1917), + [anon_sym__Noreturn] = ACTIONS(1917), + [anon_sym_noreturn] = ACTIONS(1917), + [sym_primitive_type] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_COLON] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_switch] = ACTIONS(1917), + [anon_sym_case] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_goto] = ACTIONS(1917), + [anon_sym___try] = ACTIONS(1917), + [anon_sym___leave] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(1917), + [anon_sym___alignof] = ACTIONS(1917), + [anon_sym__alignof] = ACTIONS(1917), + [anon_sym_alignof] = ACTIONS(1917), + [anon_sym__Alignof] = ACTIONS(1917), + [anon_sym_offsetof] = ACTIONS(1917), + [anon_sym__Generic] = ACTIONS(1917), + [anon_sym_asm] = ACTIONS(1917), + [anon_sym___asm__] = ACTIONS(1917), + [sym_number_literal] = ACTIONS(1919), + [anon_sym_L_SQUOTE] = ACTIONS(1919), + [anon_sym_u_SQUOTE] = ACTIONS(1919), + [anon_sym_U_SQUOTE] = ACTIONS(1919), + [anon_sym_u8_SQUOTE] = ACTIONS(1919), + [anon_sym_SQUOTE] = ACTIONS(1919), + [anon_sym_L_DQUOTE] = ACTIONS(1919), + [anon_sym_u_DQUOTE] = ACTIONS(1919), + [anon_sym_U_DQUOTE] = ACTIONS(1919), + [anon_sym_u8_DQUOTE] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [anon_sym_NULL] = ACTIONS(1917), + [anon_sym_nullptr] = ACTIONS(1917), [sym_comment] = ACTIONS(3), }, - [555] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2158), - [sym_preproc_elif_in_field_declaration_list] = STATE(2158), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [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), + [501] = { + [sym__expression] = STATE(837), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(813), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_identifier] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [556] = { - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_field_declaration_list] = STATE(551), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), - [sym_preproc_else_in_field_declaration_list] = STATE(2061), - [sym_preproc_elif_in_field_declaration_list] = STATE(2061), - [sym__declaration_modifiers] = STATE(867), - [sym__declaration_specifiers] = STATE(1466), - [sym_attribute_specifier] = STATE(867), - [sym_attribute_declaration] = STATE(867), - [sym_ms_declspec_modifier] = STATE(867), - [sym_storage_class_specifier] = STATE(867), - [sym_type_qualifier] = STATE(867), - [sym__type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(1115), - [sym_enum_specifier] = STATE(1115), - [sym_struct_specifier] = STATE(1115), - [sym_union_specifier] = STATE(1115), - [sym__field_declaration_list_item] = STATE(551), - [sym_field_declaration] = STATE(551), - [sym_macro_type_specifier] = STATE(1115), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), - [aux_sym__declaration_specifiers_repeat1] = STATE(867), - [aux_sym_sized_type_specifier_repeat1] = STATE(1080), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), - [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), + [502] = { + [sym__expression] = STATE(911), + [sym__expression_not_binary] = STATE(928), + [sym__string] = STATE(928), + [sym_conditional_expression] = STATE(928), + [sym_assignment_expression] = STATE(928), + [sym_pointer_expression] = STATE(940), + [sym_unary_expression] = STATE(928), + [sym_binary_expression] = STATE(928), + [sym_update_expression] = STATE(928), + [sym_cast_expression] = STATE(928), + [sym_sizeof_expression] = STATE(928), + [sym_alignof_expression] = STATE(928), + [sym_offsetof_expression] = STATE(928), + [sym_generic_expression] = STATE(928), + [sym_subscript_expression] = STATE(940), + [sym_call_expression] = STATE(940), + [sym_gnu_asm_expression] = STATE(928), + [sym_field_expression] = STATE(940), + [sym_compound_literal_expression] = STATE(928), + [sym_parenthesized_expression] = STATE(940), + [sym_initializer_list] = STATE(956), + [sym_char_literal] = STATE(928), + [sym_concatenated_string] = STATE(928), + [sym_string_literal] = STATE(852), + [sym_null] = STATE(928), + [sym_identifier] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1927), + [anon_sym___alignof__] = ACTIONS(1748), + [anon_sym___alignof] = ACTIONS(1748), + [anon_sym__alignof] = ACTIONS(1748), + [anon_sym_alignof] = ACTIONS(1748), + [anon_sym__Alignof] = ACTIONS(1748), + [anon_sym_offsetof] = ACTIONS(1750), + [anon_sym__Generic] = ACTIONS(1752), + [anon_sym_asm] = ACTIONS(1754), + [anon_sym___asm__] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1756), + [anon_sym_L_SQUOTE] = ACTIONS(1758), + [anon_sym_u_SQUOTE] = ACTIONS(1758), + [anon_sym_U_SQUOTE] = ACTIONS(1758), + [anon_sym_u8_SQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_L_DQUOTE] = ACTIONS(1760), + [anon_sym_u_DQUOTE] = ACTIONS(1760), + [anon_sym_U_DQUOTE] = ACTIONS(1760), + [anon_sym_u8_DQUOTE] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym_true] = ACTIONS(1762), + [sym_false] = ACTIONS(1762), + [anon_sym_NULL] = ACTIONS(1764), + [anon_sym_nullptr] = ACTIONS(1764), [sym_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - ACTIONS(2182), 1, - anon_sym_RPAREN, - ACTIONS(2184), 1, - anon_sym___extension__, - STATE(776), 1, - sym_string_literal, - STATE(1195), 1, - sym__expression, - STATE(1816), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [114] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - ACTIONS(2186), 1, - anon_sym_RPAREN, - ACTIONS(2188), 1, - anon_sym___extension__, - STATE(776), 1, - sym_string_literal, - STATE(1192), 1, - sym__expression, - STATE(1759), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [228] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym___attribute__, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, - anon_sym___declspec, - ACTIONS(2162), 1, - sym_primitive_type, - ACTIONS(2165), 1, - anon_sym_enum, - ACTIONS(2168), 1, - anon_sym_struct, - ACTIONS(2171), 1, - anon_sym_union, - ACTIONS(2190), 1, - aux_sym_preproc_def_token1, - ACTIONS(2193), 1, - aux_sym_preproc_if_token1, - ACTIONS(2199), 1, - sym_preproc_directive, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1466), 1, - sym__declaration_specifiers, - ACTIONS(2196), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2136), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(2159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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(559), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2147), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [338] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1915), 1, - sym_identifier, - ACTIONS(2202), 1, - anon_sym___extension__, - STATE(776), 1, - sym_string_literal, - STATE(1228), 1, - sym__expression, - STATE(1843), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [449] = 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(1524), 1, - anon_sym_LBRACE, - ACTIONS(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(835), 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(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [557] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2204), 1, - aux_sym_preproc_def_token1, - ACTIONS(2206), 1, - aux_sym_preproc_if_token1, - ACTIONS(2210), 1, - sym_preproc_directive, - ACTIONS(2212), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1470), 1, - sym__declaration_specifiers, - ACTIONS(2208), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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(589), 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, - [665] = 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(1514), 1, - sym_identifier, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(835), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 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(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [771] = 23, + [503] = { + [sym_else_clause] = STATE(304), + [sym_identifier] = 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_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(1929), + [anon_sym_switch] = 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), + }, + [504] = { + [sym__expression] = STATE(991), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_initializer_list] = STATE(813), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [sym_identifier] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_PIPE_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_EQ_EQ] = ACTIONS(1512), + [anon_sym_BANG_EQ] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_GT_EQ] = ACTIONS(1512), + [anon_sym_LT_EQ] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_DASH_GT] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [505] = { + [sym_identifier] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym___attribute__] = ACTIONS(1946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_signed] = ACTIONS(1946), + [anon_sym_unsigned] = ACTIONS(1946), + [anon_sym_long] = ACTIONS(1946), + [anon_sym_short] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1946), + [anon_sym_auto] = ACTIONS(1946), + [anon_sym_register] = ACTIONS(1946), + [anon_sym_inline] = ACTIONS(1946), + [anon_sym___inline] = ACTIONS(1946), + [anon_sym___inline__] = ACTIONS(1946), + [anon_sym___forceinline] = ACTIONS(1946), + [anon_sym_thread_local] = ACTIONS(1946), + [anon_sym___thread] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [anon_sym_constexpr] = ACTIONS(1946), + [anon_sym_volatile] = ACTIONS(1946), + [anon_sym_restrict] = ACTIONS(1946), + [anon_sym___restrict__] = ACTIONS(1946), + [anon_sym__Atomic] = ACTIONS(1946), + [anon_sym__Noreturn] = ACTIONS(1946), + [anon_sym_noreturn] = ACTIONS(1946), + [sym_primitive_type] = ACTIONS(1946), + [anon_sym_enum] = ACTIONS(1946), + [anon_sym_struct] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym___try] = ACTIONS(1944), + [anon_sym___leave] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1944), + [anon_sym___alignof__] = ACTIONS(1944), + [anon_sym___alignof] = ACTIONS(1944), + [anon_sym__alignof] = ACTIONS(1944), + [anon_sym_alignof] = ACTIONS(1944), + [anon_sym__Alignof] = ACTIONS(1944), + [anon_sym_offsetof] = ACTIONS(1944), + [anon_sym__Generic] = ACTIONS(1944), + [anon_sym_asm] = ACTIONS(1944), + [anon_sym___asm__] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [anon_sym_NULL] = ACTIONS(1944), + [anon_sym_nullptr] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + }, + [506] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [507] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1974), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [508] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1976), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [509] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1978), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [510] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1974), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [511] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1978), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [512] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [513] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1970), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [514] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1985), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [515] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1985), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [516] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [517] = { + [sym_string_literal] = STATE(770), + [aux_sym_sized_type_specifier_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1951), + [anon_sym_LPAREN2] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1959), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym___extension__] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym___attribute__] = ACTIONS(1951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1951), + [anon_sym___based] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1966), + [anon_sym_unsigned] = ACTIONS(1966), + [anon_sym_long] = ACTIONS(1966), + [anon_sym_short] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_auto] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym___inline] = ACTIONS(1951), + [anon_sym___inline__] = ACTIONS(1951), + [anon_sym___forceinline] = ACTIONS(1951), + [anon_sym_thread_local] = ACTIONS(1951), + [anon_sym___thread] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_constexpr] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_restrict] = ACTIONS(1951), + [anon_sym___restrict__] = ACTIONS(1951), + [anon_sym__Atomic] = ACTIONS(1951), + [anon_sym__Noreturn] = ACTIONS(1951), + [anon_sym_noreturn] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1976), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_STAR_EQ] = ACTIONS(1972), + [anon_sym_SLASH_EQ] = ACTIONS(1972), + [anon_sym_PERCENT_EQ] = ACTIONS(1972), + [anon_sym_PLUS_EQ] = ACTIONS(1972), + [anon_sym_DASH_EQ] = ACTIONS(1972), + [anon_sym_LT_LT_EQ] = ACTIONS(1972), + [anon_sym_GT_GT_EQ] = ACTIONS(1972), + [anon_sym_AMP_EQ] = ACTIONS(1972), + [anon_sym_CARET_EQ] = ACTIONS(1972), + [anon_sym_PIPE_EQ] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(1953), + [anon_sym_DASH_GT] = ACTIONS(1953), + [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), + }, + [518] = { + [sym_type_qualifier] = STATE(525), + [sym__expression] = STATE(1289), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1995), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [519] = { + [sym_type_qualifier] = STATE(522), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [520] = { + [sym_type_qualifier] = STATE(521), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [521] = { + [sym_type_qualifier] = STATE(850), + [sym__expression] = STATE(1281), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [522] = { + [sym_type_qualifier] = STATE(850), + [sym__expression] = STATE(1278), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [523] = { + [sym_type_qualifier] = STATE(850), + [sym__expression] = STATE(1297), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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_type_qualifier] = STATE(527), + [sym__expression] = STATE(1264), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(527), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [525] = { + [sym_type_qualifier] = STATE(850), + [sym__expression] = STATE(1300), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [526] = { + [sym_type_qualifier] = STATE(523), + [sym__expression] = STATE(1295), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(523), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [527] = { + [sym_type_qualifier] = STATE(850), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(1021), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(1021), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym__type_definition_type_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(1931), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym___extension__] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_constexpr] = ACTIONS(1993), + [anon_sym_volatile] = ACTIONS(1993), + [anon_sym_restrict] = ACTIONS(1993), + [anon_sym___restrict__] = ACTIONS(1993), + [anon_sym__Atomic] = ACTIONS(1993), + [anon_sym__Noreturn] = ACTIONS(1993), + [anon_sym_noreturn] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1997), + [anon_sym_PLUS_PLUS] = ACTIONS(1997), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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), + }, + [528] = { + [sym__expression] = STATE(1193), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(1816), + [sym_initializer_pair] = STATE(1816), + [sym_subscript_designator] = STATE(1610), + [sym_subscript_range_designator] = STATE(1610), + [sym_field_designator] = STATE(1610), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_initializer_pair_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(2035), + [anon_sym_COMMA] = ACTIONS(2037), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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(2043), + [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), + }, + [529] = { + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(1805), + [sym_initializer_pair] = STATE(1805), + [sym_subscript_designator] = STATE(1610), + [sym_subscript_range_designator] = STATE(1610), + [sym_field_designator] = STATE(1610), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_initializer_pair_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(2035), + [anon_sym_COMMA] = ACTIONS(2045), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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(2043), + [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), + }, + [530] = { + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(1843), + [sym_initializer_pair] = STATE(1843), + [sym_subscript_designator] = STATE(1610), + [sym_subscript_range_designator] = STATE(1610), + [sym_field_designator] = STATE(1610), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_initializer_pair_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(2035), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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(2043), + [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), + }, + [531] = { + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(1843), + [sym_initializer_pair] = STATE(1843), + [sym_subscript_designator] = STATE(1610), + [sym_subscript_range_designator] = STATE(1610), + [sym_field_designator] = STATE(1610), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_initializer_pair_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(2035), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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(2043), + [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), + }, + [532] = { + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(1843), + [sym_initializer_pair] = STATE(1843), + [sym_subscript_designator] = STATE(1610), + [sym_subscript_range_designator] = STATE(1610), + [sym_field_designator] = STATE(1610), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_initializer_pair_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(2035), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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(2043), + [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), + }, + [533] = { + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(1843), + [sym_initializer_pair] = STATE(1843), + [sym_subscript_designator] = STATE(1610), + [sym_subscript_range_designator] = STATE(1610), + [sym_field_designator] = STATE(1610), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_initializer_pair_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(2035), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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(2043), + [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), + }, + [534] = { + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(814), + [sym__string] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(907), + [sym_unary_expression] = STATE(814), + [sym_binary_expression] = STATE(814), + [sym_update_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_alignof_expression] = STATE(814), + [sym_offsetof_expression] = STATE(814), + [sym_generic_expression] = STATE(814), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_gnu_asm_expression] = STATE(814), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(907), + [sym_initializer_list] = STATE(1843), + [sym_initializer_pair] = STATE(1843), + [sym_subscript_designator] = STATE(1610), + [sym_subscript_range_designator] = STATE(1610), + [sym_field_designator] = STATE(1610), + [sym_char_literal] = STATE(814), + [sym_concatenated_string] = STATE(814), + [sym_string_literal] = STATE(792), + [sym_null] = STATE(814), + [aux_sym_initializer_pair_repeat1] = STATE(1610), + [sym_identifier] = ACTIONS(2035), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = 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(2043), + [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), + }, + [535] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(2166), + [sym_preproc_elif_in_field_declaration_list] = STATE(2166), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2166), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [536] = { + [sym_preproc_def] = STATE(540), + [sym_preproc_function_def] = STATE(540), + [sym_preproc_call] = STATE(540), + [sym_preproc_if_in_field_declaration_list] = STATE(540), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), + [sym_preproc_else_in_field_declaration_list] = STATE(1957), + [sym_preproc_elif_in_field_declaration_list] = STATE(1957), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1957), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(540), + [sym_field_declaration] = STATE(540), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [537] = { + [sym_preproc_def] = STATE(535), + [sym_preproc_function_def] = STATE(535), + [sym_preproc_call] = STATE(535), + [sym_preproc_if_in_field_declaration_list] = STATE(535), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), + [sym_preproc_else_in_field_declaration_list] = STATE(2113), + [sym_preproc_elif_in_field_declaration_list] = STATE(2113), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2113), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(535), + [sym_field_declaration] = STATE(535), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [538] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(2060), + [sym_preproc_elif_in_field_declaration_list] = STATE(2060), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2060), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [539] = { + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1338), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_ms_based_modifier] = STATE(1941), + [sym__declarator] = STATE(1613), + [sym__abstract_declarator] = STATE(1690), + [sym_parenthesized_declarator] = STATE(1543), + [sym_abstract_parenthesized_declarator] = STATE(1645), + [sym_attributed_declarator] = STATE(1543), + [sym_pointer_declarator] = STATE(1543), + [sym_abstract_pointer_declarator] = STATE(1645), + [sym_function_declarator] = STATE(1543), + [sym_abstract_function_declarator] = STATE(1645), + [sym_array_declarator] = STATE(1543), + [sym_abstract_array_declarator] = STATE(1645), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym_variadic_parameter] = STATE(1753), + [sym_parameter_list] = STATE(1644), + [sym_parameter_declaration] = STATE(1753), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(2091), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [540] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(1951), + [sym_preproc_elif_in_field_declaration_list] = STATE(1951), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1951), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [541] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(2009), + [sym_preproc_elif_in_field_declaration_list] = STATE(2009), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2009), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [542] = { + [sym_preproc_def] = STATE(538), + [sym_preproc_function_def] = STATE(538), + [sym_preproc_call] = STATE(538), + [sym_preproc_if_in_field_declaration_list] = STATE(538), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(538), + [sym_preproc_else_in_field_declaration_list] = STATE(2066), + [sym_preproc_elif_in_field_declaration_list] = STATE(2066), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2066), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(538), + [sym_field_declaration] = STATE(538), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(538), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [543] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(1968), + [sym_preproc_elif_in_field_declaration_list] = STATE(1968), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1968), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2059), + [aux_sym_preproc_if_token1] = ACTIONS(2061), + [aux_sym_preproc_if_token2] = ACTIONS(2101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), + [sym_preproc_directive] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + }, + [544] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2008), + [sym_preproc_elif_in_field_declaration_list] = STATE(2008), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [545] = { + [sym_preproc_def] = STATE(544), + [sym_preproc_function_def] = STATE(544), + [sym_preproc_call] = STATE(544), + [sym_preproc_if_in_field_declaration_list] = STATE(544), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(544), + [sym_preproc_else_in_field_declaration_list] = STATE(2011), + [sym_preproc_elif_in_field_declaration_list] = STATE(2011), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(544), + [sym_field_declaration] = STATE(544), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(544), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [546] = { + [sym_preproc_def] = STATE(556), + [sym_preproc_function_def] = STATE(556), + [sym_preproc_call] = STATE(556), + [sym_preproc_if_in_field_declaration_list] = STATE(556), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(556), + [sym_preproc_else_in_field_declaration_list] = STATE(2163), + [sym_preproc_elif_in_field_declaration_list] = STATE(2163), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(556), + [sym_field_declaration] = STATE(556), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(556), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2115), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [547] = { + [sym_preproc_def] = STATE(551), + [sym_preproc_function_def] = STATE(551), + [sym_preproc_call] = STATE(551), + [sym_preproc_if_in_field_declaration_list] = STATE(551), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), + [sym_preproc_else_in_field_declaration_list] = STATE(2208), + [sym_preproc_elif_in_field_declaration_list] = STATE(2208), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(551), + [sym_field_declaration] = STATE(551), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [548] = { + [sym_preproc_def] = STATE(552), + [sym_preproc_function_def] = STATE(552), + [sym_preproc_call] = STATE(552), + [sym_preproc_if_in_field_declaration_list] = STATE(552), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), + [sym_preproc_else_in_field_declaration_list] = STATE(1952), + [sym_preproc_elif_in_field_declaration_list] = STATE(1952), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(552), + [sym_field_declaration] = STATE(552), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [549] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2209), + [sym_preproc_elif_in_field_declaration_list] = STATE(2209), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [sym_preproc_def] = STATE(549), + [sym_preproc_function_def] = STATE(549), + [sym_preproc_call] = STATE(549), + [sym_preproc_if_in_field_declaration_list] = STATE(549), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(549), + [sym_preproc_else_in_field_declaration_list] = STATE(2193), + [sym_preproc_elif_in_field_declaration_list] = STATE(2193), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(549), + [sym_field_declaration] = STATE(549), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(549), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [551] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2220), + [sym_preproc_elif_in_field_declaration_list] = STATE(2220), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [552] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(1950), + [sym_preproc_elif_in_field_declaration_list] = STATE(1950), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [553] = { + [sym_preproc_def] = STATE(554), + [sym_preproc_function_def] = STATE(554), + [sym_preproc_call] = STATE(554), + [sym_preproc_if_in_field_declaration_list] = STATE(554), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(554), + [sym_preproc_else_in_field_declaration_list] = STATE(2061), + [sym_preproc_elif_in_field_declaration_list] = STATE(2061), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(554), + [sym_field_declaration] = STATE(554), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [554] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2059), + [sym_preproc_elif_in_field_declaration_list] = STATE(2059), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, + [555] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1465), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2133), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2139), + [aux_sym_preproc_if_token2] = ACTIONS(2142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), + [aux_sym_preproc_else_token1] = ACTIONS(2142), + [aux_sym_preproc_elif_token1] = ACTIONS(2142), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2142), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2142), + [sym_preproc_directive] = ACTIONS(2147), + [anon_sym___extension__] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2153), + [anon_sym___attribute__] = ACTIONS(2156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2159), + [anon_sym___declspec] = ACTIONS(2162), + [anon_sym_signed] = ACTIONS(2165), + [anon_sym_unsigned] = ACTIONS(2165), + [anon_sym_long] = ACTIONS(2165), + [anon_sym_short] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_auto] = ACTIONS(2153), + [anon_sym_register] = ACTIONS(2153), + [anon_sym_inline] = ACTIONS(2153), + [anon_sym___inline] = ACTIONS(2153), + [anon_sym___inline__] = ACTIONS(2153), + [anon_sym___forceinline] = ACTIONS(2153), + [anon_sym_thread_local] = ACTIONS(2153), + [anon_sym___thread] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2150), + [anon_sym_constexpr] = ACTIONS(2150), + [anon_sym_volatile] = ACTIONS(2150), + [anon_sym_restrict] = ACTIONS(2150), + [anon_sym___restrict__] = ACTIONS(2150), + [anon_sym__Atomic] = ACTIONS(2150), + [anon_sym__Noreturn] = ACTIONS(2150), + [anon_sym_noreturn] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2174), + [anon_sym_union] = ACTIONS(2177), + [sym_comment] = ACTIONS(3), + }, + [556] = { + [sym_preproc_def] = STATE(559), + [sym_preproc_function_def] = STATE(559), + [sym_preproc_call] = STATE(559), + [sym_preproc_if_in_field_declaration_list] = STATE(559), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(2192), + [sym_preproc_elif_in_field_declaration_list] = STATE(2192), + [sym__declaration_modifiers] = STATE(869), + [sym__declaration_specifiers] = STATE(1474), + [sym_attribute_specifier] = STATE(869), + [sym_attribute_declaration] = STATE(869), + [sym_ms_declspec_modifier] = STATE(869), + [sym_storage_class_specifier] = STATE(869), + [sym_type_qualifier] = STATE(869), + [sym__type_specifier] = STATE(1072), + [sym_sized_type_specifier] = STATE(1083), + [sym_enum_specifier] = STATE(1083), + [sym_struct_specifier] = STATE(1083), + [sym_union_specifier] = STATE(1083), + [sym__field_declaration_list_item] = STATE(559), + [sym_field_declaration] = STATE(559), + [sym_macro_type_specifier] = STATE(1083), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), + [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(2057), + [aux_sym_preproc_def_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token1] = ACTIONS(2105), + [aux_sym_preproc_if_token2] = ACTIONS(2180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), + [aux_sym_preproc_else_token1] = ACTIONS(2067), + [aux_sym_preproc_elif_token1] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2111), + [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), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -74743,271 +74317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2220), 1, + ACTIONS(2182), 1, anon_sym_RPAREN, - STATE(776), 1, - sym_string_literal, - STATE(1245), 1, - sym__expression, - STATE(2163), 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(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [879] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2127), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym___attribute__, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, - anon_sym___declspec, - ACTIONS(2162), 1, - sym_primitive_type, - ACTIONS(2165), 1, - anon_sym_enum, - ACTIONS(2168), 1, - anon_sym_struct, - ACTIONS(2171), 1, - anon_sym_union, - ACTIONS(2222), 1, - aux_sym_preproc_def_token1, - ACTIONS(2225), 1, - aux_sym_preproc_if_token1, - ACTIONS(2231), 1, - sym_preproc_directive, - ACTIONS(2234), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1470), 1, - sym__declaration_specifiers, - ACTIONS(2228), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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(565), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2147), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [987] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2236), 1, - aux_sym_preproc_def_token1, - ACTIONS(2238), 1, - aux_sym_preproc_if_token1, - ACTIONS(2240), 1, - aux_sym_preproc_if_token2, - ACTIONS(2244), 1, - sym_preproc_directive, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, - sym__declaration_specifiers, - ACTIONS(2242), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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(570), 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, + ACTIONS(2184), 1, 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, - [1095] = 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(1915), 1, - sym_identifier, - ACTIONS(2246), 1, - anon_sym_SEMI, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1239), 1, + STATE(1197), 1, sym__expression, - STATE(2000), 1, - sym_comma_expression, + STATE(1801), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75047,14 +74368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75070,11 +74392,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1203] = 23, + [115] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -75083,101 +74407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2186), 1, anon_sym_RPAREN, - STATE(776), 1, - sym_string_literal, - STATE(1258), 1, - sym__expression, - STATE(2057), 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(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1311] = 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(1915), 1, - sym_identifier, - ACTIONS(2250), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(2188), 1, + anon_sym___extension__, + STATE(792), 1, sym_string_literal, - STATE(1240), 1, + STATE(1200), 1, sym__expression, - STATE(1998), 1, - sym_comma_expression, + STATE(1776), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75217,14 +74458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75240,54 +74482,56 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1419] = 23, + [230] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 1, + ACTIONS(2133), 1, sym_identifier, - ACTIONS(2136), 1, - aux_sym_preproc_if_token2, - ACTIONS(2150), 1, + ACTIONS(2156), 1, anon_sym___attribute__, - ACTIONS(2153), 1, + ACTIONS(2159), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, - anon_sym___declspec, ACTIONS(2162), 1, + anon_sym___declspec, + ACTIONS(2168), 1, sym_primitive_type, - ACTIONS(2165), 1, + ACTIONS(2171), 1, anon_sym_enum, - ACTIONS(2168), 1, + ACTIONS(2174), 1, anon_sym_struct, - ACTIONS(2171), 1, + ACTIONS(2177), 1, anon_sym_union, - ACTIONS(2252), 1, + ACTIONS(2190), 1, aux_sym_preproc_def_token1, - ACTIONS(2255), 1, + ACTIONS(2193), 1, aux_sym_preproc_if_token1, - ACTIONS(2261), 1, + ACTIONS(2199), 1, sym_preproc_directive, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, + STATE(1474), 1, sym__declaration_specifiers, - ACTIONS(2258), 2, + ACTIONS(2196), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2159), 4, + ACTIONS(2142), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(2165), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75295,7 +74539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(570), 8, + STATE(559), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -75304,7 +74548,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(2144), 9, + ACTIONS(2150), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -75314,7 +74558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2147), 10, + ACTIONS(2153), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -75325,114 +74569,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [1527] = 23, + [340] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(1775), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, + ACTIONS(2202), 1, + anon_sym___extension__, + STATE(792), 1, sym_string_literal, - STATE(921), 1, + STATE(1231), 1, sym__expression, - STATE(965), 1, - sym_initializer_list, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + STATE(1909), 1, + sym_compound_statement, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1783), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1785), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1635] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(835), 1, - sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75442,18 +74615,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2276), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75472,14 +74633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75495,7 +74657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1743] = 23, + [452] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75508,16 +74670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2204), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_string_literal, - STATE(1248), 1, + STATE(1259), 1, sym__expression, - STATE(1882), 1, - sym_initializer_list, + STATE(2132), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75557,14 +74719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75580,41 +74743,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1851] = 23, + [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(1915), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1210), 1, + STATE(813), 1, + sym_initializer_list, + STATE(991), 1, sym__expression, - STATE(2058), 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__, @@ -75624,6 +74775,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75642,14 +74805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75665,7 +74829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1959] = 23, + [670] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75678,16 +74842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2206), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_string_literal, - STATE(1257), 1, + STATE(1247), 1, sym__expression, - STATE(1878), 1, - sym_initializer_list, + STATE(2172), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75727,14 +74891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75750,7 +74915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2067] = 23, + [779] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75763,16 +74928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2280), 1, - anon_sym_SEMI, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1255), 1, + STATE(813), 1, + sym_initializer_list, + STATE(837), 1, sym__expression, - STATE(2052), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75812,14 +74977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75835,41 +75001,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2175] = 23, + [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(1915), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1911), 1, + anon_sym_sizeof, + ACTIONS(2208), 1, sym_identifier, - ACTIONS(2282), 1, - anon_sym_SEMI, - STATE(776), 1, - sym_string_literal, - STATE(1219), 1, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + STATE(813), 1, + sym_initializer_list, + STATE(837), 1, sym__expression, - STATE(2046), 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(840), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75879,6 +75033,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1909), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2214), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75897,14 +75063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -75920,7 +75087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2283] = 23, + [997] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75933,15 +75100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2284), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(2216), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_string_literal, - STATE(1241), 1, + STATE(1209), 1, sym__expression, - STATE(2164), 1, + STATE(2170), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75982,14 +75149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76005,7 +75173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2391] = 23, + [1106] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76018,15 +75186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2286), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(2218), 1, + anon_sym_SEMI, + STATE(792), 1, sym_string_literal, - STATE(1260), 1, + STATE(1230), 1, sym__expression, - STATE(2055), 1, + STATE(1988), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76067,14 +75235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76090,7 +75259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2499] = 23, + [1215] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76103,15 +75272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2288), 1, - anon_sym_SEMI, - STATE(776), 1, + ACTIONS(2220), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_string_literal, - STATE(1212), 1, + STATE(1255), 1, sym__expression, - STATE(2118), 1, + STATE(2194), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76152,14 +75321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76175,70 +75345,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2607] = 22, + [1324] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_LBRACE, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(921), 1, - sym__expression, - STATE(965), 1, + STATE(813), 1, sym_initializer_list, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + STATE(837), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -76259,76 +75430,77 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2713] = 23, + [1431] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2296), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + STATE(852), 1, sym_string_literal, - STATE(1235), 1, + STATE(911), 1, sym__expression, - STATE(2125), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + STATE(956), 1, + sym_initializer_list, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2232), 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(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76344,7 +75516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2821] = 23, + [1540] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76357,15 +75529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2298), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(2234), 1, + anon_sym_SEMI, + STATE(792), 1, sym_string_literal, - STATE(1253), 1, + STATE(1206), 1, sym__expression, - STATE(2128), 1, + STATE(1932), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76406,14 +75578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76429,7 +75602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2929] = 23, + [1649] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76442,16 +75615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2236), 1, + anon_sym_SEMI, + STATE(792), 1, sym_string_literal, - STATE(1262), 1, + STATE(1208), 1, sym__expression, - STATE(1879), 1, - sym_initializer_list, + STATE(2031), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76491,14 +75664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76514,7 +75688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3037] = 23, + [1758] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76527,15 +75701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2300), 1, + ACTIONS(2238), 1, anon_sym_RPAREN, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1251), 1, + STATE(1218), 1, sym__expression, - STATE(2127), 1, + STATE(2173), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76576,14 +75750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76599,91 +75774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3145] = 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(1514), 1, - sym_identifier, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(985), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 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(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [3251] = 23, + [1867] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76696,16 +75787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2306), 1, - anon_sym_SEMI, - STATE(776), 1, + STATE(792), 1, sym_string_literal, STATE(1246), 1, sym__expression, - STATE(1971), 1, - sym_comma_expression, + STATE(1842), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76745,14 +75836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -76768,29 +75860,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3359] = 23, + [1976] = 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(1524), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + ACTIONS(2240), 1, + anon_sym_RPAREN, + STATE(792), 1, sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(985), 1, + STATE(1263), 1, sym__expression, + STATE(2131), 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__, @@ -76800,18 +75904,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76830,263 +75922,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [3467] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2204), 1, - aux_sym_preproc_def_token1, - ACTIONS(2206), 1, - aux_sym_preproc_if_token1, - ACTIONS(2210), 1, - sym_preproc_directive, - ACTIONS(2308), 1, - anon_sym_RBRACE, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1470), 1, - sym__declaration_specifiers, - ACTIONS(2208), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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(565), 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, - [3575] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2236), 1, - aux_sym_preproc_def_token1, - ACTIONS(2238), 1, - aux_sym_preproc_if_token1, - ACTIONS(2244), 1, - sym_preproc_directive, - ACTIONS(2310), 1, - aux_sym_preproc_if_token2, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, - sym__declaration_specifiers, - ACTIONS(2242), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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(566), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - 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, - [3683] = 22, + 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, + [2085] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(809), 1, - sym_initializer_list, - STATE(835), 1, + STATE(911), 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(1518), 2, + STATE(956), 1, + sym_initializer_list, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -77107,7 +76031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3789] = 22, + [2192] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77120,14 +76044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2316), 1, - anon_sym_COLON, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1272), 1, + STATE(1260), 1, sym__expression, + STATE(1844), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77167,14 +76093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77190,7 +76117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3894] = 21, + [2301] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77199,17 +76126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, + ACTIONS(1520), 1, + anon_sym_LBRACE, ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2318), 1, - anon_sym_RBRACK, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(813), 1, + sym_initializer_list, + STATE(991), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77229,7 +76158,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77250,8 +76179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -77272,27 +76202,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3997] = 21, + [2408] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - ACTIONS(2320), 1, - anon_sym_RBRACK, - STATE(776), 1, + ACTIONS(2252), 1, + anon_sym_SEMI, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(1205), 1, sym__expression, + STATE(2092), 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__, @@ -77302,18 +76246,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77332,11 +76264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77345,36 +76283,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, - [4100] = 21, + [2517] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - ACTIONS(2322), 1, - anon_sym_RBRACK, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(1250), 1, sym__expression, + STATE(1852), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77384,18 +76332,92 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [2626] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1921), 1, + sym_identifier, + ACTIONS(2254), 1, + anon_sym_SEMI, + STATE(792), 1, + sym_string_literal, + STATE(1213), 1, + sym__expression, + STATE(2133), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 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, @@ -77414,11 +76436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77427,16 +76455,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, - [4203] = 22, + [2735] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77449,14 +76473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2324), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(2256), 1, + anon_sym_SEMI, + STATE(792), 1, sym_string_literal, - STATE(1268), 1, + STATE(1258), 1, sym__expression, + STATE(2111), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77496,14 +76522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77519,7 +76546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4308] = 22, + [2844] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77532,13 +76559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2258), 1, + anon_sym_SEMI, + STATE(792), 1, sym_string_literal, - STATE(1198), 1, + STATE(1202), 1, sym__expression, - STATE(1895), 1, + STATE(1963), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77579,14 +76608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77602,7 +76632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4413] = 21, + [2953] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77611,18 +76641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1520), 1, + anon_sym_LBRACE, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - ACTIONS(2326), 1, - anon_sym_RBRACK, - STATE(776), 1, - sym_string_literal, - STATE(1000), 1, + STATE(813), 1, + sym_initializer_list, + STATE(837), 1, sym__expression, + STATE(840), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77632,16 +76664,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77662,8 +76694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -77684,27 +76717,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4516] = 21, + [3060] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - ACTIONS(2328), 1, - anon_sym_RBRACK, - STATE(776), 1, + ACTIONS(2264), 1, + anon_sym_SEMI, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(1252), 1, sym__expression, + STATE(2112), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77714,18 +76761,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77744,11 +76779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77757,16 +76798,97 @@ 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, - [4619] = 22, + [3169] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + sym_identifier, + ACTIONS(2142), 1, + aux_sym_preproc_if_token2, + ACTIONS(2156), 1, + anon_sym___attribute__, + ACTIONS(2159), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2162), 1, + anon_sym___declspec, + ACTIONS(2168), 1, + sym_primitive_type, + ACTIONS(2171), 1, + anon_sym_enum, + ACTIONS(2174), 1, + anon_sym_struct, + ACTIONS(2177), 1, + anon_sym_union, + ACTIONS(2266), 1, + aux_sym_preproc_def_token1, + ACTIONS(2269), 1, + aux_sym_preproc_if_token1, + ACTIONS(2275), 1, + sym_preproc_directive, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1468), 1, + sym__declaration_specifiers, + ACTIONS(2272), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2165), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(586), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2150), 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(2153), 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, + [3277] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77779,13 +76901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2330), 1, + ACTIONS(2278), 1, anon_sym_COLON, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1267), 1, + STATE(1265), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77826,14 +76948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -77849,27 +76972,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4724] = 21, + [3383] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - ACTIONS(2332), 1, - anon_sym_RBRACK, - STATE(776), 1, + ACTIONS(2280), 1, + anon_sym_COLON, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(1291), 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__, @@ -77879,18 +77014,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3489] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1921), 1, + sym_identifier, + STATE(792), 1, + sym_string_literal, + STATE(1249), 1, + sym__expression, + STATE(2097), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 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, @@ -77909,11 +77116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77922,16 +77135,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, - [4827] = 26, + [3595] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -77950,46 +77159,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, - anon_sym_RPAREN, - ACTIONS(2095), 1, - anon_sym_LBRACK, - ACTIONS(2334), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - anon_sym_STAR, - STATE(1074), 1, + ACTIONS(2282), 1, + aux_sym_preproc_def_token1, + ACTIONS(2284), 1, + aux_sym_preproc_if_token1, + ACTIONS(2288), 1, + sym_preproc_directive, + ACTIONS(2290), 1, + anon_sym_RBRACE, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, + STATE(1471), 1, sym__declaration_specifiers, - STATE(1653), 1, - sym_parameter_list, - STATE(1704), 1, - sym__abstract_declarator, - STATE(1743), 2, - sym_variadic_parameter, - sym_parameter_declaration, + ACTIONS(2286), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1115), 5, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77997,6 +77195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, + STATE(599), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -78018,7 +77225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4940] = 21, + [3703] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78027,17 +77234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2338), 1, + ACTIONS(2292), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(984), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78057,7 +77264,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78078,8 +77285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -78100,39 +77308,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5043] = 22, + [3807] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2340), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2294), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(1284), 1, + STATE(984), 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__, @@ -78142,6 +77338,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78160,16 +77368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78178,44 +77382,121 @@ 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, - [5148] = 22, + [3911] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + sym_identifier, + ACTIONS(2156), 1, + anon_sym___attribute__, + ACTIONS(2159), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2162), 1, + anon_sym___declspec, + ACTIONS(2168), 1, + sym_primitive_type, + ACTIONS(2171), 1, + anon_sym_enum, + ACTIONS(2174), 1, + anon_sym_struct, + ACTIONS(2177), 1, + anon_sym_union, + ACTIONS(2296), 1, + aux_sym_preproc_def_token1, + ACTIONS(2299), 1, + aux_sym_preproc_if_token1, + ACTIONS(2305), 1, + sym_preproc_directive, + ACTIONS(2308), 1, + anon_sym_RBRACE, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1471), 1, + sym__declaration_specifiers, + ACTIONS(2302), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2165), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(593), 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(2150), 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(2153), 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, + [4019] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2342), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2310), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(1299), 1, + STATE(984), 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__, @@ -78225,6 +77506,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78243,16 +77536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78261,44 +77550,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, - [5253] = 22, + [4123] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2344), 1, - anon_sym_COLON, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2312), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(1277), 1, + STATE(984), 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__, @@ -78308,6 +77589,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78326,16 +77619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78344,12 +77633,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, - [5358] = 21, + [4227] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78358,17 +77651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2346), 1, + ACTIONS(2314), 1, anon_sym_RBRACK, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(984), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78388,7 +77681,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78409,8 +77702,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -78431,7 +77725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5461] = 22, + [4331] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78444,13 +77738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2348), 1, + ACTIONS(2316), 1, anon_sym_COLON, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1292), 1, + STATE(1283), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78491,14 +77785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78514,27 +77809,209 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5566] = 21, + [4437] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(2318), 1, + aux_sym_preproc_def_token1, + ACTIONS(2320), 1, + aux_sym_preproc_if_token1, + ACTIONS(2322), 1, + aux_sym_preproc_if_token2, + ACTIONS(2326), 1, + sym_preproc_directive, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1468), 1, + sym__declaration_specifiers, + ACTIONS(2324), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(601), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [4545] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(2282), 1, + aux_sym_preproc_def_token1, + ACTIONS(2284), 1, + aux_sym_preproc_if_token1, + ACTIONS(2288), 1, + sym_preproc_directive, + ACTIONS(2328), 1, + anon_sym_RBRACE, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1471), 1, + sym__declaration_specifiers, + ACTIONS(2286), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(593), 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, + [4653] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - ACTIONS(2350), 1, - anon_sym_RBRACK, - STATE(776), 1, + ACTIONS(2330), 1, + anon_sym_COLON, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(1288), 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__, @@ -78544,18 +78021,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78574,11 +78039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78587,16 +78058,97 @@ 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, - [5669] = 22, + [4759] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(2318), 1, + aux_sym_preproc_def_token1, + ACTIONS(2320), 1, + aux_sym_preproc_if_token1, + ACTIONS(2326), 1, + sym_preproc_directive, + ACTIONS(2332), 1, + aux_sym_preproc_if_token2, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1468), 1, + sym__declaration_specifiers, + ACTIONS(2324), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(586), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + 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, + [4867] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78609,13 +78161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2352), 1, + ACTIONS(2334), 1, anon_sym_COLON, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1289), 1, + STATE(1292), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78656,14 +78208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78679,39 +78232,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5774] = 22, + [4973] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2336), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(1230), 1, + STATE(984), 1, sym__expression, - STATE(2145), 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__, @@ -78721,6 +78262,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78739,16 +78292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78757,32 +78306,48 @@ 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, - [5879] = 21, + [5077] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - ACTIONS(2354), 1, - anon_sym_RBRACK, - STATE(776), 1, + ACTIONS(2338), 1, + anon_sym_COLON, + STATE(792), 1, sym_string_literal, - STATE(1000), 1, + STATE(1296), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78792,18 +78357,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78822,11 +78375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78835,16 +78394,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, - [5982] = 22, + [5183] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78857,14 +78412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2340), 1, + anon_sym_COLON, + STATE(792), 1, sym_string_literal, - STATE(1226), 1, + STATE(1271), 1, sym__expression, - STATE(1966), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78904,14 +78459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -78927,7 +78483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6087] = 20, + [5289] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78936,15 +78492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + ACTIONS(2342), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(879), 1, + STATE(984), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78955,16 +78513,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78985,8 +78543,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79007,7 +78566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6187] = 21, + [5393] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79020,11 +78579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2344), 1, + anon_sym_COLON, + STATE(792), 1, sym_string_literal, - STATE(842), 1, + STATE(1290), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79065,14 +78626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -79088,37 +78650,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6289] = 21, + [5499] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2346), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(1222), 1, + STATE(984), 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__, @@ -79128,107 +78680,39 @@ 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(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6391] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, - anon_sym_offsetof, - ACTIONS(1777), 1, - anon_sym__Generic, - ACTIONS(1781), 1, - sym_number_literal, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, - sym_string_literal, - STATE(911), 1, - sym__expression, - ACTIONS(1765), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79249,69 +78733,77 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6491] = 20, + [5603] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(916), 1, + STATE(1241), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + STATE(2064), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 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(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79320,75 +78812,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, - [6591] = 20, + [5709] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(849), 1, + ACTIONS(2348), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(917), 1, + STATE(984), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79409,66 +78900,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6691] = 20, + [5813] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(849), 1, + ACTIONS(2350), 1, + anon_sym_RBRACK, + STATE(792), 1, sym_string_literal, - STATE(918), 1, + STATE(984), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79489,66 +78983,151 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6791] = 20, + [5917] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2292), 1, + STATE(792), 1, + sym_string_literal, + STATE(1201), 1, + sym__expression, + STATE(1887), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + 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, + [6023] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, + anon_sym_offsetof, + ACTIONS(1752), 1, + anon_sym__Generic, + ACTIONS(1756), 1, + sym_number_literal, + ACTIONS(2242), 1, + sym_identifier, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(922), 1, + STATE(909), 1, sym__expression, - ACTIONS(1765), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79569,66 +79148,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6891] = 20, + [6124] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(924), 1, + STATE(908), 1, sym__expression, - ACTIONS(1765), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79649,66 +79229,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6991] = 20, + [6225] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(906), 1, + STATE(920), 1, sym__expression, - ACTIONS(1765), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79729,66 +79310,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7091] = 20, + [6326] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(907), 1, + STATE(845), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79809,7 +79391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7191] = 20, + [6427] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79818,16 +79400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(983), 1, + STATE(892), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79837,16 +79422,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79867,8 +79449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -79889,7 +79472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7291] = 21, + [6528] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79902,11 +79485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1162), 1, + STATE(1195), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79947,14 +79530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -79970,28 +79554,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7393] = 20, + [6631] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(896), 1, + STATE(1270), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80001,13 +79594,86 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 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(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6734] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + STATE(840), 1, + sym_string_literal, + STATE(888), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80028,8 +79694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -80050,7 +79717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7493] = 20, + [6835] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80059,19 +79726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(895), 1, + STATE(877), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80081,13 +79745,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80108,8 +79775,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -80130,37 +79798,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7593] = 21, + [6936] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1199), 1, + STATE(901), 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__, @@ -80170,6 +79829,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80188,16 +79856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80206,12 +79870,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, - [7695] = 21, + [7037] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80220,16 +79888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1291), 1, + STATE(902), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80239,16 +79910,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80269,16 +79937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80287,12 +79951,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, - [7797] = 21, + [7138] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80305,11 +79973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1160), 1, + STATE(1299), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80350,14 +80018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80373,7 +80042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7899] = 20, + [7241] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80382,15 +80051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(2356), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(843), 1, + STATE(903), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -80404,13 +80073,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80431,8 +80100,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -80453,7 +80123,170 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7999] = 21, + [7342] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(792), 1, + sym_string_literal, + STATE(904), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(814), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7443] = 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(1931), 1, + sym_identifier, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + STATE(792), 1, + sym_string_literal, + STATE(1274), 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(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + 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(1021), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7546] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80466,11 +80299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1157), 1, + STATE(1165), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80511,14 +80344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80534,28 +80368,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8101] = 20, + [7649] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(893), 1, + STATE(1157), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80565,15 +80408,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80592,11 +80426,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80605,16 +80445,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, - [8201] = 21, + [7752] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80627,11 +80463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1270), 1, + STATE(1150), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80672,14 +80508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80695,7 +80532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8303] = 21, + [7855] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80708,11 +80545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1153), 1, + STATE(1145), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80753,14 +80590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80776,7 +80614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8405] = 21, + [7958] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80789,11 +80627,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1152), 1, + STATE(1159), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80834,14 +80672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80857,7 +80696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8507] = 21, + [8061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80870,11 +80709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1150), 1, + STATE(1155), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80915,14 +80754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -80938,7 +80778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8609] = 21, + [8164] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80951,11 +80791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1148), 1, + STATE(1147), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80996,14 +80836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -81019,7 +80860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8711] = 21, + [8267] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81032,11 +80873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(837), 1, + STATE(1161), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81077,14 +80918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -81100,7 +80942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8813] = 21, + [8370] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81113,11 +80955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1147), 1, + STATE(845), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81158,14 +81000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -81181,25 +81024,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8915] = 20, + [8473] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(987), 1, + STATE(1152), 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__, @@ -81209,18 +81064,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81239,11 +81082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81252,90 +81101,94 @@ 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, - [9015] = 14, + [8576] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, - anon_sym_const, - ACTIONS(1955), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1961), 1, - anon_sym_STAR, - ACTIONS(1971), 1, - anon_sym_EQ, - STATE(774), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1921), 1, + sym_identifier, + STATE(792), 1, sym_string_literal, - STATE(1079), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1964), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2358), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + STATE(1262), 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, - ACTIONS(1967), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1953), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [9103] = 20, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8679] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81344,16 +81197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(989), 1, + STATE(832), 1, sym__expression, + STATE(840), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81363,16 +81216,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81393,8 +81246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81415,66 +81269,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9203] = 20, + [8780] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(990), 1, + STATE(921), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81495,66 +81350,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9303] = 20, + [8881] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(991), 1, + STATE(922), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81575,7 +81431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9403] = 20, + [8982] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81584,19 +81440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(891), 1, + STATE(844), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81606,13 +81459,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81633,8 +81489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81655,7 +81512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9503] = 20, + [9083] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81664,16 +81521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(992), 1, + STATE(905), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81683,16 +81543,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81713,8 +81570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81735,7 +81593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9603] = 20, + [9184] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81744,15 +81602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2352), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(993), 1, + STATE(842), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81763,16 +81621,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81793,8 +81651,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81815,7 +81674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9703] = 20, + [9285] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81824,16 +81683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(995), 1, + STATE(890), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81843,16 +81705,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81873,8 +81732,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81895,7 +81755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9803] = 20, + [9386] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81904,16 +81764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(972), 1, + STATE(898), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81923,16 +81786,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81953,8 +81813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -81975,66 +81836,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9903] = 20, + [9487] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(997), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -82055,7 +81917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10003] = 20, + [9588] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82064,15 +81926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1001), 1, + STATE(1139), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -82083,16 +81945,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82113,11 +81975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82126,16 +81994,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, - [10103] = 20, + [9691] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82144,15 +82008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(999), 1, + STATE(1131), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -82163,16 +82027,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82193,8 +82057,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9794] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, + anon_sym_offsetof, + ACTIONS(1752), 1, + anon_sym__Generic, + ACTIONS(1756), 1, + sym_number_literal, + ACTIONS(2242), 1, + sym_identifier, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(852), 1, + sym_string_literal, + STATE(923), 1, + sym__expression, + ACTIONS(1740), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1748), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1758), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1760), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -82215,7 +82162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10203] = 20, + [9895] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82224,16 +82171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(1002), 1, + STATE(832), 1, sym__expression, + STATE(840), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82243,16 +82190,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82273,11 +82220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82286,16 +82239,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, - [10303] = 21, + [9998] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82304,15 +82253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1206), 1, + STATE(880), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -82323,16 +82272,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82353,16 +82302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82371,12 +82316,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, - [10405] = 21, + [10099] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82389,11 +82338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1149), 1, + STATE(1148), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82434,14 +82383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82457,7 +82407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10507] = 21, + [10202] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82470,11 +82420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1163), 1, + STATE(1153), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82515,14 +82465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82538,66 +82489,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10609] = 20, + [10305] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2360), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(1005), 1, + STATE(915), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -82618,25 +82570,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10709] = 21, + [10406] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1220), 1, + STATE(1286), 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__, @@ -82646,18 +82610,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82676,14 +82628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -82699,69 +82652,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10811] = 20, + [10509] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(2354), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(915), 1, + STATE(981), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(1021), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82770,75 +82729,72 @@ 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, - [10911] = 20, + [10612] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(914), 1, + STATE(842), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -82859,74 +82815,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11011] = 21, + [10713] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(2242), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(852), 1, sym_string_literal, - STATE(1271), 1, + STATE(917), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1740), 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(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82935,12 +82887,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, - [11113] = 20, + [10814] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82949,15 +82905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(831), 1, + STATE(891), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -82971,13 +82927,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82998,8 +82954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83020,25 +82977,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11213] = 21, + [10915] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1202), 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__, @@ -83048,18 +83017,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83078,14 +83035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -83101,7 +83059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11315] = 20, + [11018] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83110,15 +83068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(842), 1, + STATE(887), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83135,10 +83093,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83159,8 +83117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83181,7 +83140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11415] = 20, + [11119] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83190,15 +83149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(831), 1, + STATE(844), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83209,16 +83168,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83239,8 +83198,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11222] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, + anon_sym_offsetof, + ACTIONS(1752), 1, + anon_sym__Generic, + ACTIONS(1756), 1, + sym_number_literal, + ACTIONS(2242), 1, + sym_identifier, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(852), 1, + sym_string_literal, + STATE(924), 1, + sym__expression, + ACTIONS(1740), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1748), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1758), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1760), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83261,66 +83303,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11515] = 20, + [11323] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(887), 1, + STATE(913), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83341,7 +83384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11615] = 20, + [11424] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83350,16 +83393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(884), 1, + STATE(844), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -83369,16 +83415,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83399,8 +83442,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83421,66 +83465,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11715] = 20, + [11525] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(894), 1, + STATE(912), 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(1518), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83501,37 +83546,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11815] = 21, + [11626] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1155), 1, + STATE(986), 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__, @@ -83541,6 +83574,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83559,16 +83604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83577,79 +83618,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, - [11917] = 21, + [11727] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(2242), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(852), 1, sym_string_literal, - STATE(1274), 1, + STATE(918), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1740), 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(1742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83658,12 +83699,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, - [12019] = 20, + [11828] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83672,15 +83717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1937), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(994), 1, + STATE(980), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83691,16 +83736,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83721,11 +83766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(1021), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83734,75 +83785,72 @@ 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, - [12119] = 20, + [11931] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2362), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(840), 1, sym_string_literal, - STATE(912), 1, + STATE(881), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83823,66 +83871,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12219] = 20, + [12032] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1746), 1, anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(908), 1, + STATE(919), 1, sym__expression, - ACTIONS(1765), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -83903,37 +83952,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12319] = 21, + [12133] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + STATE(840), 1, sym_string_literal, - STATE(1295), 1, + STATE(876), 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__, @@ -83943,6 +83980,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1528), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1530), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2262), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83961,16 +84010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83979,12 +84024,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, - [12421] = 21, + [12234] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83993,15 +84042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1201), 1, + STATE(1133), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84012,16 +84061,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84042,14 +84091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84065,25 +84115,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12523] = 21, + [12337] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1209), 1, + STATE(1298), 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__, @@ -84093,18 +84155,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84123,14 +84173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84146,7 +84197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12625] = 21, + [12440] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -84159,11 +84210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1193), 1, + STATE(1251), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -84204,14 +84255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84227,74 +84279,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12727] = 21, + [12543] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(840), 1, sym_string_literal, - STATE(1167), 1, + STATE(885), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84303,158 +84351,82 @@ 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, - [12829] = 21, + [12644] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2226), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + STATE(852), 1, sym_string_literal, - STATE(1250), 1, + STATE(1170), 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, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1762), 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(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [12931] = 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(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1282), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2232), 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(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84470,7 +84442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13033] = 21, + [12747] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84479,16 +84451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, - sym_string_literal, - STATE(999), 1, + STATE(834), 1, sym__expression, + STATE(840), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84498,16 +84470,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84528,16 +84500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84546,74 +84514,84 @@ 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, - [13135] = 20, + [12848] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2302), 1, + ACTIONS(2226), 1, + sym_identifier, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(1000), 1, + STATE(1175), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2304), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(940), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84622,83 +84600,75 @@ 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, - [13235] = 21, + [12951] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(2242), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(1214), 1, + STATE(910), 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(1933), 2, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84707,12 +84677,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, - [13337] = 21, + [13052] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84721,15 +84695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1002), 1, + STATE(845), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84740,16 +84714,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84770,16 +84744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84788,12 +84758,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, - [13439] = 21, + [13153] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84802,15 +84776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2364), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1005), 1, + STATE(1136), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84821,16 +84795,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84851,14 +84825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -84874,66 +84849,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13541] = 20, + [13256] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(920), 1, + STATE(832), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -84954,37 +84930,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13641] = 21, + [13357] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1285), 1, + STATE(1222), 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__, @@ -84994,6 +84958,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85012,14 +84988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85035,74 +85012,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13743] = 21, + [13460] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(1169), 1, + STATE(984), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85111,12 +85084,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, - [13845] = 21, + [13561] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85125,15 +85102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1286), 1, + STATE(878), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85144,16 +85121,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85174,16 +85151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85192,12 +85165,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, - [13947] = 21, + [13662] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85206,15 +85183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1137), 1, + STATE(1216), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85225,16 +85202,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85255,14 +85232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85278,7 +85256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14049] = 21, + [13765] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85287,15 +85265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2208), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1136), 1, + STATE(1143), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85306,16 +85284,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85336,14 +85314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85359,7 +85338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14151] = 21, + [13868] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85368,15 +85347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(837), 1, + STATE(986), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85387,16 +85366,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85417,14 +85396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85440,37 +85420,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14253] = 21, + [13971] = 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(1915), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, STATE(1224), 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__, @@ -85480,6 +85448,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1997), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85498,14 +85478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85521,7 +85502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14355] = 21, + [14074] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85530,15 +85511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1135), 1, + STATE(1240), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85549,16 +85530,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85579,14 +85560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85602,7 +85584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14457] = 21, + [14177] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85611,15 +85593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1133), 1, + STATE(1248), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85630,16 +85612,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85660,14 +85642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85683,72 +85666,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14559] = 21, + [14280] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(1181), 1, + STATE(1238), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85764,7 +85748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14661] = 21, + [14383] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85773,15 +85757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1134), 1, + STATE(1236), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85792,16 +85776,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85822,14 +85806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -85845,7 +85830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14763] = 21, + [14486] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85854,15 +85839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1532), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1132), 1, + STATE(886), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85873,16 +85858,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85903,16 +85888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85921,77 +85902,82 @@ 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, - [14865] = 21, + [14587] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(1131), 1, + STATE(1176), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86007,7 +85993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14967] = 21, + [14690] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86016,15 +86002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1130), 1, + STATE(985), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86035,16 +86021,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86065,14 +86051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86088,72 +86075,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15069] = 21, + [14793] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(915), 1, + STATE(1235), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86169,7 +86157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15171] = 21, + [14896] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86184,9 +86172,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1236), 1, + STATE(1215), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86227,14 +86215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86250,7 +86239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15273] = 21, + [14999] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86259,15 +86248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1141), 1, + STATE(1266), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86278,16 +86267,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86308,14 +86297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86331,72 +86321,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15375] = 21, + [15102] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(908), 1, + STATE(1210), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86412,7 +86403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15477] = 21, + [15205] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86427,9 +86418,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(994), 1, + STATE(1284), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86470,14 +86461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86493,9 +86485,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15579] = 21, + [15308] = 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, @@ -86503,15 +86499,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(157), 1, sym_number_literal, ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1142), 1, + STATE(1146), 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__, @@ -86521,18 +86525,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2276), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86551,14 +86543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86574,7 +86567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15681] = 21, + [15411] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86583,15 +86576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1215), 1, + STATE(1142), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86602,16 +86595,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86632,14 +86625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86655,72 +86649,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15783] = 21, + [15514] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2226), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2360), 1, + anon_sym_LPAREN2, + STATE(852), 1, sym_string_literal, - STATE(1273), 1, + STATE(912), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2232), 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(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86736,7 +86731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15885] = 21, + [15617] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86745,16 +86740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1522), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1218), 1, + STATE(889), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86764,16 +86762,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1514), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1516), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2224), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86794,16 +86789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86812,12 +86803,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, - [15987] = 20, + [15718] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86826,19 +86821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(888), 1, + STATE(884), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86848,13 +86840,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1528), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86875,8 +86870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -86897,37 +86893,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16087] = 21, + [15819] = 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(1915), 1, + ACTIONS(1911), 1, + anon_sym_sizeof, + ACTIONS(2208), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2210), 1, + anon_sym_LPAREN2, + STATE(840), 1, sym_string_literal, - STATE(831), 1, + STATE(1134), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86937,6 +86921,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1909), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2214), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86955,14 +86951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -86978,28 +86975,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16189] = 20, + [15922] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(832), 1, + STATE(1194), 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__, @@ -87009,15 +87015,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87036,11 +87033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87049,81 +87052,78 @@ 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, - [16289] = 21, + [16025] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2366), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(912), 1, + STATE(1242), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(1021), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87139,7 +87139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16391] = 20, + [16128] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87148,15 +87148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1937), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(876), 1, + STATE(1204), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87167,16 +87167,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1933), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1935), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87197,11 +87197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(1021), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87210,18 +87216,105 @@ 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, - [16491] = 21, + [16231] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2085), 1, + anon_sym_RPAREN, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_LPAREN2, + ACTIONS(2364), 1, + anon_sym_STAR, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1338), 1, + sym__declaration_specifiers, + STATE(1644), 1, + sym_parameter_list, + STATE(1690), 1, + sym__abstract_declarator, + STATE(1753), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1645), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [16344] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, @@ -87229,15 +87322,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(157), 1, sym_number_literal, ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1138), 1, + STATE(1196), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87247,18 +87348,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1919), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2276), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87277,14 +87366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87300,7 +87390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16593] = 21, + [16447] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87309,15 +87399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1143), 1, + STATE(1017), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87328,16 +87418,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87358,16 +87448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87376,12 +87462,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, - [16695] = 21, + [16548] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87390,15 +87480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2208), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1140), 1, + STATE(1141), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87409,16 +87499,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87439,14 +87529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87462,7 +87553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16797] = 20, + [16651] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87471,15 +87562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2368), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(843), 1, + STATE(1140), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87490,16 +87581,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87520,11 +87611,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87533,16 +87630,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, - [16897] = 21, + [16754] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87551,15 +87644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2208), 1, sym_identifier, - ACTIONS(2370), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(843), 1, + STATE(1144), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87570,16 +87663,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87600,14 +87693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -87623,66 +87717,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16999] = 20, + [16857] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(909), 1, + STATE(1016), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -87703,7 +87798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17099] = 20, + [16958] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87712,15 +87807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(875), 1, + STATE(1015), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87731,16 +87826,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87761,8 +87856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -87783,37 +87879,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17199] = 21, + [17059] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1159), 1, + STATE(1014), 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__, @@ -87823,6 +87907,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87841,16 +87937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87859,42 +87951,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, - [17301] = 21, + [17160] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1298), 1, + STATE(899), 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__, @@ -87904,6 +87991,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87922,16 +88018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87940,71 +88032,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, - [17403] = 20, + [17261] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(913), 1, + STATE(1013), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -88025,7 +88122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17503] = 20, + [17362] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88034,19 +88131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(842), 1, + STATE(1012), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88056,13 +88150,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88083,8 +88180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -88105,74 +88203,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17603] = 21, + [17463] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(1171), 1, + STATE(1285), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1789), 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(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17566] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + STATE(792), 1, + sym_string_literal, + STATE(1011), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88181,37 +88357,41 @@ 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, - [17705] = 21, + [17667] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1173), 1, + STATE(913), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88220,38 +88400,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88267,32 +88448,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17807] = 21, + [17770] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1175), 1, + STATE(1168), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88301,38 +88482,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88348,32 +88530,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17909] = 21, + [17873] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1176), 1, + STATE(1172), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88382,38 +88564,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88429,32 +88612,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18011] = 21, + [17976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1177), 1, + STATE(1183), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88463,38 +88646,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88510,32 +88694,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18113] = 21, + [18079] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1178), 1, + STATE(1182), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88544,38 +88728,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88591,32 +88776,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18215] = 21, + [18182] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1179), 1, + STATE(1181), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88625,38 +88810,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88672,32 +88858,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18317] = 21, + [18285] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1182), 1, + STATE(1178), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88706,38 +88892,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88753,32 +88940,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18419] = 21, + [18388] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(906), 1, + STATE(1171), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88787,38 +88974,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88834,32 +89022,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18521] = 21, + [18491] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1168), 1, + STATE(1174), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -88868,38 +89056,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88915,72 +89104,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18623] = 21, + [18594] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2226), 1, sym_identifier, - STATE(776), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + STATE(852), 1, sym_string_literal, - STATE(1265), 1, + STATE(910), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2232), 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(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -88996,32 +89186,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18725] = 21, + [18697] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(1756), 1, sym_number_literal, ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2264), 1, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(852), 1, sym_string_literal, - STATE(1172), 1, + STATE(1167), 1, sym__expression, - ACTIONS(1779), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1789), 2, + ACTIONS(1764), 2, anon_sym_NULL, anon_sym_nullptr, ACTIONS(1923), 2, @@ -89030,38 +89220,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2268), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2270), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(952), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -89077,7 +89268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18827] = 20, + [18800] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89086,19 +89277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(889), 1, + STATE(1010), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89108,13 +89296,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89135,8 +89326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -89157,152 +89349,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18927] = 20, + [18901] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1927), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2226), 1, + sym_identifier, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(837), 1, + STATE(1177), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1754), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1762), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2314), 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(820), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19027] = 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(1915), 1, - sym_identifier, - STATE(776), 1, - sym_string_literal, - STATE(1194), 1, - sym__expression, - ACTIONS(21), 2, + ACTIONS(1925), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2232), 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(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -89318,7 +89431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19129] = 21, + [19004] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89327,15 +89440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, - anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(831), 1, + STATE(1009), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89346,16 +89459,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89376,16 +89489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89394,12 +89503,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, - [19231] = 21, + [19105] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89408,15 +89521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1208), 1, + STATE(998), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89427,16 +89540,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89457,16 +89570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89475,12 +89584,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, - [19333] = 20, + [19206] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89489,19 +89602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(903), 1, + STATE(997), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89511,13 +89621,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89538,8 +89651,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -89560,7 +89674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19433] = 21, + [19307] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89569,15 +89683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1300), 1, + STATE(985), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89588,16 +89702,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89618,16 +89732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89636,12 +89746,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, - [19535] = 20, + [19408] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89650,19 +89764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1891), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(900), 1, + STATE(980), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89672,13 +89783,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1887), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1889), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89699,8 +89813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -89721,37 +89836,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19635] = 21, + [19509] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1891), 1, + anon_sym_sizeof, + ACTIONS(2366), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1294), 1, + STATE(981), 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__, @@ -89761,6 +89864,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1887), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1889), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2250), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89779,16 +89894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89797,77 +89908,82 @@ 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, + [19610] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1750), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1752), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1756), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1927), 1, + anon_sym_sizeof, + ACTIONS(2226), 1, sym_identifier, - ACTIONS(2372), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(852), 1, sym_string_literal, - STATE(843), 1, + STATE(924), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1923), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1925), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2230), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2232), 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(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(940), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(928), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -89883,25 +89999,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19839] = 20, + [19713] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(877), 1, + STATE(832), 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__, @@ -89911,18 +90039,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89941,11 +90057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89954,34 +90076,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, - [19939] = 20, + [19816] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(878), 1, + STATE(844), 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__, @@ -89991,18 +90121,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90021,11 +90139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90034,46 +90158,33 @@ 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, - [20039] = 21, + [19919] = 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(1915), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(776), 1, + ACTIONS(1522), 1, + anon_sym_sizeof, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(792), 1, sym_string_literal, - STATE(1196), 1, + STATE(834), 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__, @@ -90083,6 +90194,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1514), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1516), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90101,16 +90221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90119,12 +90235,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, - [20141] = 20, + [20020] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90133,15 +90253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(832), 1, + STATE(1132), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90152,16 +90272,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90182,11 +90302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90195,34 +90321,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, - [20241] = 21, + [20123] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1261), 1, + STATE(1301), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90232,18 +90366,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90262,14 +90384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -90285,7 +90408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20343] = 21, + [20226] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90294,15 +90417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2368), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(1207), 1, + STATE(842), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90313,16 +90436,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90343,14 +90466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -90366,7 +90490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20445] = 21, + [20329] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90375,15 +90499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2272), 1, + ACTIONS(2208), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(842), 1, + STATE(1135), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90394,16 +90518,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1917), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1919), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2276), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90424,14 +90548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -90447,25 +90572,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20547] = 21, + [20432] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2370), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1249), 1, + STATE(842), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90475,18 +90612,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90505,14 +90630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1020), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -90528,7 +90654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20649] = 20, + [20535] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90537,19 +90663,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1526), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2312), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(898), 1, + STATE(845), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90559,13 +90682,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(2212), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90586,11 +90712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90599,37 +90731,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, - [20749] = 20, + [20638] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1526), 1, - anon_sym_sizeof, - ACTIONS(2312), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(897), 1, + STATE(1214), 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__, @@ -90639,35 +90776,109 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1518), 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(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [20741] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_sizeof, + ACTIONS(1750), 1, + anon_sym_offsetof, + ACTIONS(1752), 1, + anon_sym__Generic, + ACTIONS(1756), 1, + sym_number_literal, + ACTIONS(2242), 1, + sym_identifier, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(852), 1, + sym_string_literal, + STATE(914), 1, + sym__expression, + ACTIONS(1740), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1520), 2, + ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2314), 2, + ACTIONS(1754), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1762), 2, + sym_true, + sym_false, + ACTIONS(1764), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2230), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1748), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1758), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(928), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -90688,7 +90899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20849] = 21, + [20842] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -90701,11 +90912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1915), 1, + ACTIONS(1921), 1, sym_identifier, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(1197), 1, + STATE(1282), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -90746,14 +90957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(910), 5, + STATE(907), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(820), 16, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -90769,7 +90981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20951] = 20, + [20945] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90778,15 +90990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, + ACTIONS(1510), 1, sym_identifier, ACTIONS(1532), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(881), 1, + STATE(883), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90803,10 +91015,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1530), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2262), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90827,8 +91039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(814), 22, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, sym_pointer_expression, @@ -90849,25 +91062,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21051] = 20, + [21046] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(886), 1, + STATE(1192), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90877,18 +91102,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21149] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1921), 1, + sym_identifier, + STATE(792), 1, + sym_string_literal, + STATE(1294), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 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, @@ -90907,11 +91202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90920,34 +91221,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, - [21151] = 20, + [21252] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(885), 1, + STATE(1199), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90957,18 +91266,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90987,11 +91284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91000,16 +91303,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, - [21251] = 20, + [21355] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91018,15 +91317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1911), 1, anon_sym_sizeof, - ACTIONS(2214), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2210), 1, anon_sym_LPAREN2, - STATE(776), 1, + STATE(840), 1, sym_string_literal, - STATE(837), 1, + STATE(1137), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91037,16 +91336,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1909), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2216), 2, + ACTIONS(2212), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2218), 2, + ACTIONS(2214), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91067,11 +91366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91080,78 +91385,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, - [21351] = 20, + [21458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1775), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1777), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1781), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2290), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(1937), 1, + anon_sym_sizeof, + ACTIONS(1987), 1, anon_sym_LPAREN2, - STATE(849), 1, + STATE(792), 1, sym_string_literal, - STATE(923), 1, + STATE(1211), 1, sym__expression, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1787), 2, - sym_true, - sym_false, - ACTIONS(1789), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2268), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1933), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1935), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1991), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2294), 2, + ACTIONS(1997), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1773), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1783), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 21, + STATE(1021), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91160,34 +91467,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, - [21451] = 20, + [21561] = 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(1514), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_LPAREN2, - STATE(776), 1, + STATE(792), 1, sym_string_literal, - STATE(883), 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__, @@ -91197,18 +91512,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2216), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2218), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -91227,11 +91530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 21, + STATE(907), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(814), 17, sym__expression_not_binary, + sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91240,77 +91549,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, - [21551] = 21, + [21664] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2374), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_ms_call_modifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, + ACTIONS(1951), 1, + anon_sym_const, + ACTIONS(1955), 1, + anon_sym_LPAREN2, + ACTIONS(1961), 1, + anon_sym_STAR, + ACTIONS(1968), 1, + anon_sym_EQ, + STATE(770), 1, + sym_string_literal, + STATE(1082), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1496), 1, - sym__declaration_specifiers, - STATE(205), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, + ACTIONS(1980), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2372), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(867), 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, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1964), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -91318,18 +91592,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [21652] = 21, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1953), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21752] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91348,17 +91647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2376), 1, + ACTIONS(2374), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(854), 1, sym_ms_call_modifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1501), 1, + STATE(1491), 1, sym__declaration_specifiers, - STATE(153), 3, + STATE(210), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91367,7 +91666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91380,7 +91679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91409,10 +91708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21753] = 6, + [21853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2376), 1, sym_identifier, STATE(773), 2, sym_string_literal, @@ -91423,7 +91722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2382), 16, + ACTIONS(2380), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91440,7 +91739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2380), 33, + ACTIONS(2378), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -91474,7 +91773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21824] = 21, + [21924] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91493,17 +91792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2384), 1, + ACTIONS(2382), 1, anon_sym_LBRACE, - STATE(853), 1, + STATE(859), 1, sym_ms_call_modifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1497), 1, + STATE(1494), 1, sym__declaration_specifiers, - STATE(469), 3, + STATE(403), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91512,7 +91811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91525,7 +91824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91554,7 +91853,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21925] = 21, + [22025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 1, + sym_identifier, + STATE(768), 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(2388), 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(2386), 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, + [22096] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91573,17 +91937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2386), 1, + ACTIONS(2390), 1, anon_sym_LBRACE, - STATE(859), 1, + STATE(861), 1, sym_ms_call_modifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1488), 1, + STATE(1498), 1, sym__declaration_specifiers, - STATE(361), 3, + STATE(382), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91592,7 +91956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91605,7 +91969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91634,7 +91998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22026] = 21, + [22197] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91653,17 +92017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - ACTIONS(2388), 1, + ACTIONS(2392), 1, anon_sym_LBRACE, - STATE(855), 1, + STATE(863), 1, sym_ms_call_modifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1484), 1, + STATE(1493), 1, sym__declaration_specifiers, - STATE(395), 3, + STATE(148), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91672,7 +92036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91685,7 +92049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91714,86 +92078,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22127] = 6, + [22298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(2394), 1, sym_identifier, STATE(773), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2397), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2395), 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(2393), 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, - [22198] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - sym_identifier, - STATE(769), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, + ACTIONS(2401), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2404), 16, + ACTIONS(2399), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91810,7 +92109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2402), 33, + ACTIONS(2397), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -91844,73 +92143,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22269] = 5, + [22369] = 21, ACTIONS(3), 1, sym_comment, - STATE(774), 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(1959), 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(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(1953), 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, - [22337] = 5, + ACTIONS(2404), 1, + anon_sym_LBRACE, + STATE(855), 1, + sym_ms_call_modifier, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1486), 1, + sym__declaration_specifiers, + STATE(479), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [22470] = 5, ACTIONS(3), 1, sym_comment, - STATE(774), 1, + STATE(770), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -91970,7 +92286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22405] = 3, + [22538] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2406), 17, @@ -92030,7 +92346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22468] = 3, + [22601] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2410), 17, @@ -92090,7 +92406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22531] = 3, + [22664] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2414), 20, @@ -92149,7 +92465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22593] = 3, + [22726] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2418), 20, @@ -92208,7 +92524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22655] = 3, + [22788] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 20, @@ -92267,7 +92583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22717] = 3, + [22850] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2426), 20, @@ -92326,7 +92642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22779] = 3, + [22912] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2430), 20, @@ -92385,7 +92701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22841] = 3, + [22974] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2434), 20, @@ -92444,7 +92760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22903] = 3, + [23036] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2438), 20, @@ -92503,7 +92819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22965] = 3, + [23098] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2442), 20, @@ -92562,7 +92878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23027] = 3, + [23160] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2446), 20, @@ -92621,7 +92937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23089] = 3, + [23222] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2450), 20, @@ -92680,10 +92996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23151] = 3, + [23284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 21, + ACTIONS(1915), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92705,7 +93021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1911), 30, + ACTIONS(1913), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -92736,10 +93052,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23210] = 3, + [23343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 21, + ACTIONS(2454), 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(2456), 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, + [23402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92761,7 +93133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1907), 30, + ACTIONS(2454), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -92792,10 +93164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23269] = 3, + [23461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 21, + ACTIONS(1919), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92817,7 +93189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2454), 30, + ACTIONS(1917), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -92848,11 +93220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23328] = 3, + [23520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 17, - aux_sym_preproc_elif_token1, + ACTIONS(2458), 1, + sym_identifier, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2462), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92868,15 +93249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(2456), 34, + ACTIONS(2460), 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_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92885,7 +93261,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -92904,7 +93279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23387] = 20, + [23585] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -92919,21 +93294,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(645), 1, + ACTIONS(553), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(372), 1, + STATE(447), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(844), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -92941,13 +93316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92976,7 +93351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23479] = 20, + [23677] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -92991,21 +93366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(645), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(374), 1, + STATE(152), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(816), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93013,13 +93388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93048,117 +93423,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23571] = 3, + [23769] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2460), 33, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2083), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23629] = 3, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1338), 1, + sym__declaration_specifiers, + STATE(1695), 1, + sym_variadic_parameter, + STATE(1753), 1, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23863] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(2464), 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, - [23687] = 21, + STATE(221), 1, + sym_compound_statement, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1492), 1, + sym__declaration_specifiers, + STATE(833), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23955] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93173,36 +93583,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(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2466), 1, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(2468), 1, - anon_sym_RPAREN, - STATE(1074), 1, + STATE(223), 1, + sym_compound_statement, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(1690), 1, - sym_variadic_parameter, - STATE(1743), 1, - sym_parameter_declaration, + STATE(827), 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(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93231,10 +93640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23781] = 3, + [24047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 17, + ACTIONS(2468), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93252,7 +93661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2472), 33, + ACTIONS(2470), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93286,123 +93695,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23839] = 3, + [24105] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 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(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(2476), 33, + ACTIONS(2083), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2085), 1, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23897] = 3, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1338), 1, + sym__declaration_specifiers, + STATE(1753), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24197] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2480), 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, - [23955] = 20, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(150), 1, + sym_compound_statement, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1492), 1, + sym__declaration_specifiers, + STATE(833), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24289] = 20, 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, @@ -93411,21 +93856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(141), 1, + STATE(476), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(844), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93433,13 +93876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93468,62 +93911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24047] = 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), 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, - [24105] = 20, + [24381] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93538,21 +93926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(645), 1, + ACTIONS(553), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(366), 1, + STATE(412), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(793), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93560,13 +93948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93595,15 +93983,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24197] = 20, + [24473] = 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, @@ -93612,19 +93998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(129), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(474), 1, + STATE(160), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(825), 2, + STATE(794), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93632,13 +94020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93667,7 +94055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24289] = 20, + [24565] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93682,21 +94070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(553), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(400), 1, + STATE(445), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(807), 2, + STATE(802), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93704,13 +94092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93739,10 +94127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24381] = 3, + [24657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 17, + ACTIONS(2472), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93760,7 +94148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2488), 33, + ACTIONS(2474), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93794,7 +94182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24439] = 20, + [24715] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93815,15 +94203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(383), 1, + STATE(429), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(844), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93831,13 +94219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93866,10 +94254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24531] = 3, + [24807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 17, + ACTIONS(2476), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93887,7 +94275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2492), 33, + ACTIONS(2478), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93921,10 +94309,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24589] = 3, + [24865] = 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(201), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(227), 1, + sym_compound_statement, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1492), 1, + sym__declaration_specifiers, + STATE(796), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 17, + ACTIONS(2480), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93942,7 +94402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2496), 33, + ACTIONS(2482), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93976,10 +94436,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24647] = 3, + [25015] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(145), 1, + sym_compound_statement, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1492), 1, + sym__declaration_specifiers, + STATE(800), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 17, + ACTIONS(2484), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93997,7 +94529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2500), 33, + ACTIONS(2486), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94031,10 +94563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24705] = 3, + [25165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 17, + ACTIONS(2488), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94052,7 +94584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2504), 33, + ACTIONS(2490), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94086,226 +94618,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24763] = 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(499), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(380), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(828), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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, - [24855] = 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, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(456), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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, - [24947] = 20, + [25223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2492), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(214), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(821), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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, - [25039] = 3, + ACTIONS(2494), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 17, + ACTIONS(2496), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94323,7 +94694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2508), 33, + ACTIONS(2498), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94357,13 +94728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25097] = 20, + [25339] = 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, @@ -94372,21 +94745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(645), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(393), 1, + STATE(481), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(844), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94394,13 +94765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94429,7 +94800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25189] = 20, + [25431] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94444,21 +94815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, + ACTIONS(553), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(229), 1, + STATE(435), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(844), 2, + STATE(793), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94466,13 +94837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94501,7 +94872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25281] = 20, + [25523] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94516,21 +94887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(143), 1, + STATE(386), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(801), 2, + STATE(825), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94538,13 +94909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94573,10 +94944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25373] = 3, + [25615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 17, + ACTIONS(2500), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94594,7 +94965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2512), 33, + ACTIONS(2502), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94628,10 +94999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25431] = 3, + [25673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 17, + ACTIONS(2504), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94649,7 +95020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2516), 33, + ACTIONS(2506), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94683,157 +95054,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25489] = 20, + [25731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2508), 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(201), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(226), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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, - [25581] = 20, + ACTIONS(2510), 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, + [25789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2512), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2085), 1, + ACTIONS(2514), 33, anon_sym_DOT_DOT_DOT, - ACTIONS(2087), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, - sym__declaration_specifiers, - STATE(1743), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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, - [25673] = 20, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25847] = 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, @@ -94842,21 +95181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(134), 1, + STATE(464), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(844), 2, + STATE(815), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94864,13 +95201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94899,10 +95236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25765] = 3, + [25939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 17, + ACTIONS(2516), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94920,7 +95257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2520), 33, + ACTIONS(2518), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94954,79 +95291,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25823] = 20, + [25997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2520), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(477), 1, - sym_compound_statement, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 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(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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, - [25915] = 20, + ACTIONS(2522), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26055] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95041,21 +95361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(146), 1, + STATE(397), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(823), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95063,13 +95383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95098,15 +95418,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26007] = 20, + [26147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2524), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2526), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26205] = 20, 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, @@ -95115,19 +95488,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(201), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(480), 1, + STATE(218), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(813), 2, + STATE(833), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95135,13 +95510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95170,13 +95545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26099] = 20, + [26297] = 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, @@ -95185,21 +95562,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(2057), 1, sym_identifier, - STATE(364), 1, + STATE(470), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(844), 2, + STATE(801), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95207,13 +95582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95242,7 +95617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26191] = 20, + [26389] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95257,21 +95632,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(2057), 1, sym_identifier, - STATE(230), 1, + STATE(399), 1, sym_compound_statement, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(817), 2, + STATE(806), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95279,13 +95654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95314,10 +95689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26283] = 3, + [26481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 17, + ACTIONS(2528), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95335,7 +95710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2524), 33, + ACTIONS(2530), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95369,52 +95744,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [26341] = 7, + [26539] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2526), 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(2528), 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_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(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2534), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -95425,24 +95768,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, - [26406] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2536), 16, + ACTIONS(1959), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95456,40 +95782,39 @@ 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(2538), 26, + ACTIONS(1953), 18, 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_COLON, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26473] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26604] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 16, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2536), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95506,14 +95831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2544), 33, + ACTIONS(2538), 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, @@ -95521,9 +95845,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, @@ -95538,50 +95860,48 @@ 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, - [26530] = 19, + [26669] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2546), 1, + sym_identifier, + ACTIONS(2555), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(2558), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2561), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(2564), 1, + anon_sym_LBRACE, + ACTIONS(2569), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(2572), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(2575), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(2578), 1, anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, + STATE(1492), 1, sym__declaration_specifiers, - STATE(1842), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, + STATE(833), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2566), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95589,7 +95909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(2549), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95599,7 +95919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2552), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95610,22 +95930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26619] = 8, + [26758] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2546), 16, + ACTIONS(2581), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95642,7 +95962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2548), 26, + ACTIONS(2583), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95669,10 +95989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26686] = 3, + [26825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 16, + ACTIONS(2587), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95689,7 +96009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2552), 33, + ACTIONS(2589), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95723,22 +96043,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26743] = 8, + [26882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2591), 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(2593), 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, - ACTIONS(2532), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(810), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26939] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 16, + ACTIONS(2595), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95755,7 +96129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2556), 26, + ACTIONS(2597), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95782,20 +96156,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26810] = 7, + [27006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2599), 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, - STATE(774), 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(2560), 10, + sym_identifier, + ACTIONS(2601), 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, @@ -95806,7 +96206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [27063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95820,9 +96227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, sym_identifier, - ACTIONS(1953), 18, + ACTIONS(2605), 33, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -95834,16 +96244,38 @@ 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, - [26875] = 3, + [27120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 16, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2462), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95857,12 +96289,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(2564), 33, + ACTIONS(2460), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -95874,11 +96304,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, @@ -95894,7 +96320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26932] = 20, + [27181] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95911,32 +96337,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2566), 1, + ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + ACTIONS(2083), 1, + anon_sym_DOT_DOT_DOT, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1349), 1, + STATE(1338), 1, sym__declaration_specifiers, - STATE(1842), 1, - sym_parameter_declaration, - STATE(1876), 1, + STATE(1900), 2, sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95965,10 +96390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27023] = 3, + [27270] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 16, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2607), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95985,14 +96422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2570), 33, + ACTIONS(2609), 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, @@ -96000,9 +96436,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, @@ -96015,26 +96449,93 @@ 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, - [27080] = 8, + [27337] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2083), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2611), 1, + sym_identifier, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1338), 1, + sym__declaration_specifiers, + STATE(1851), 1, + sym_variadic_parameter, + STATE(1900), 1, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [27428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2572), 16, + ACTIONS(2613), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96051,7 +96552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2574), 26, + ACTIONS(2615), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96078,22 +96579,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27147] = 8, + [27495] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2576), 16, + ACTIONS(2617), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96110,7 +96611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2578), 26, + ACTIONS(2619), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96137,91 +96638,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27214] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2580), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym___attribute__, - ACTIONS(2592), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 1, - anon_sym___declspec, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2603), 1, - sym_primitive_type, - ACTIONS(2606), 1, - anon_sym_enum, - ACTIONS(2609), 1, - anon_sym_struct, - ACTIONS(2612), 1, - anon_sym_union, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__declaration_specifiers, - STATE(844), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 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(2583), 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(2586), 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, - [27303] = 6, + [27562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(2621), 1, sym_identifier, STATE(846), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1785), 5, + ACTIONS(2624), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2382), 13, + ACTIONS(2399), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96235,7 +96666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2380), 27, + ACTIONS(2397), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96263,21 +96694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27365] = 6, + [27624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2627), 1, sym_identifier, STATE(846), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2620), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2395), 13, + ACTIONS(2380), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96291,7 +96722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2393), 27, + ACTIONS(2378), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96319,21 +96750,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27427] = 6, + [27686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - sym_identifier, - STATE(845), 2, + ACTIONS(1968), 1, + anon_sym_EQ, + STATE(770), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1785), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2404), 13, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96346,12 +96787,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2402), 27, + ACTIONS(1953), 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, @@ -96359,47 +96797,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, - [27489] = 7, + [27750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - STATE(774), 1, + ACTIONS(2629), 1, + sym_identifier, + STATE(847), 2, sym_string_literal, - ACTIONS(95), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(2388), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96412,9 +96834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + anon_sym_EQ, + ACTIONS(2386), 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, @@ -96422,22 +96847,82 @@ 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, - [27553] = 5, + [27812] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(850), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2635), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2631), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2633), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [27871] = 5, ACTIONS(3), 1, sym_comment, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -96486,18 +96971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27612] = 5, + [27930] = 5, ACTIONS(3), 1, sym_comment, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1959), 14, + ACTIONS(2462), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96512,7 +96997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(1953), 27, + ACTIONS(2460), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96540,20 +97025,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27671] = 7, + [27989] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2638), 1, anon_sym_EQ, - STATE(847), 1, + STATE(849), 1, sym_string_literal, - ACTIONS(1785), 5, + ACTIONS(1760), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2627), 10, + ACTIONS(2640), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -96596,13 +97081,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27734] = 5, + [28052] = 17, ACTIONS(3), 1, sym_comment, - STATE(852), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, + sym_identifier, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1533), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2633), 9, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96612,45 +97135,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2629), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2631), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [27793] = 17, + 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, + [28134] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96669,24 +97165,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1517), 1, + STATE(1523), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96715,7 +97211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27875] = 17, + [28216] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96734,24 +97230,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1508), 1, + STATE(1505), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96780,7 +97276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27957] = 17, + [28298] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96799,24 +97295,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1522), 1, + STATE(1509), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96845,7 +97341,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28039] = 17, + [28380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(2408), 32, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28434] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96864,24 +97411,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1504), 1, + STATE(1518), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96910,7 +97457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28121] = 3, + [28516] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2410), 14, @@ -96961,58 +97508,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [28175] = 3, + [28570] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(2408), 32, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [28229] = 17, + STATE(1072), 1, + sym__type_specifier, + STATE(1086), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1521), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(869), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [28652] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97031,24 +97592,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1527), 1, + STATE(1506), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97077,7 +97638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28311] = 17, + [28734] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97096,24 +97657,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1507), 1, + STATE(1525), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97142,7 +97703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28393] = 17, + [28816] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97161,24 +97722,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1533), 1, + STATE(1508), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97207,7 +97768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28475] = 17, + [28898] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97226,24 +97787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1072), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1505), 1, + STATE(1514), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(869), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97272,43 +97833,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28557] = 17, + [28980] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_EQ, + ACTIONS(2642), 1, + anon_sym_COLON, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 12, + 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(1953), 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, + [29043] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_EQ, + ACTIONS(1974), 1, + anon_sym_COLON, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 12, + 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(1953), 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, + [29106] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2654), 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, + ACTIONS(2657), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(1074), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1532), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(867), 7, + ACTIONS(2660), 1, + anon_sym___declspec, + ACTIONS(2646), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(868), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97316,7 +97966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(2648), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97326,7 +97976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2651), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -97337,7 +97987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28639] = 17, + ACTIONS(2644), 11, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29171] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97356,24 +98018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(2057), 1, sym_identifier, - STATE(1074), 1, + STATE(1054), 1, sym__type_specifier, - STATE(1080), 1, + STATE(1086), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1511), 1, - sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(867), 7, + STATE(868), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97402,14 +98062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28721] = 8, + [29250] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1968), 1, anon_sym_EQ, - ACTIONS(1979), 1, + ACTIONS(1985), 1, anon_sym_COLON, - STATE(774), 1, + STATE(770), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97417,7 +98077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(1972), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97457,14 +98117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28784] = 8, + [29313] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1968), 1, anon_sym_EQ, - ACTIONS(1973), 1, + ACTIONS(1976), 1, anon_sym_COLON, - STATE(774), 1, + STATE(770), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97472,7 +98132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(1972), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97512,49 +98172,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28847] = 16, + [29376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(1062), 1, - sym__type_specifier, - STATE(1080), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(872), 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, + ACTIONS(2665), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2663), 26, + anon_sym_DASH, + anon_sym_PLUS, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97564,25 +98207,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [28926] = 8, + 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, + [29429] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1968), 1, anon_sym_EQ, - ACTIONS(1977), 1, + ACTIONS(1983), 1, anon_sym_COLON, - STATE(774), 1, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 12, + 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(1953), 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, + [29492] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_EQ, + ACTIONS(1978), 1, + anon_sym_COLON, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 12, + 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(1953), 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, + [29555] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_EQ, + ACTIONS(1970), 1, + anon_sym_COLON, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 12, + 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(1953), 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, + [29618] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2617), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2619), 21, + 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, + anon_sym_PLUS_EQ, + anon_sym_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, + [29690] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, + anon_sym_AMP, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2679), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2617), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2619), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [29766] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2617), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2619), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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, + [29834] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2681), 1, + anon_sym_EQ, + STATE(770), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97590,7 +98577,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1975), 10, + ACTIONS(2683), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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(1953), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [29894] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_PIPE, + ACTIONS(2687), 1, + anon_sym_CARET, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2617), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2679), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97601,12 +98679,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, + sym_identifier, + [29974] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 11, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -97614,38 +98710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + anon_sym_EQ, + ACTIONS(2619), 23, anon_sym_COMMA, - anon_sym_LPAREN2, + 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_LBRACK, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28989] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1983), 1, - anon_sym_COLON, - STATE(774), 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(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97656,51 +98734,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + sym_identifier, + [30038] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, + anon_sym_AMP, + ACTIONS(2685), 1, anon_sym_PIPE, + ACTIONS(2687), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2695), 1, + anon_sym_AMP_AMP, + ACTIONS(2697), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2679), 2, 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, - [29052] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, + ACTIONS(2691), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2636), 1, - anon_sym_COLON, - STATE(774), 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(1975), 10, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2689), 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, @@ -97711,51 +98800,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + sym_identifier, + [30124] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, + anon_sym_AMP, + ACTIONS(2687), 1, + anon_sym_CARET, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2671), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(2679), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2617), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 19, anon_sym_COMMA, - anon_sym_LPAREN2, + 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_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29115] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, - anon_sym_EQ, - ACTIONS(1985), 1, - anon_sym_COLON, - STATE(774), 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(1975), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97766,157 +98862,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + sym_identifier, + [30202] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, + anon_sym_AMP, + ACTIONS(2685), 1, anon_sym_PIPE, + ACTIONS(2687), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2695), 1, + anon_sym_AMP_AMP, + ACTIONS(2697), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2679), 2, 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, - [29178] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2648), 1, - anon_sym___attribute__, - ACTIONS(2651), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2654), 1, - anon_sym___declspec, - ACTIONS(2640), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2701), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2669), 3, anon_sym_STAR, - anon_sym_SEMI, - STATE(872), 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(2642), 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(2645), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2638), 11, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2699), 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, - [29243] = 3, + [30288] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 19, + ACTIONS(2540), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, anon_sym_AMP, - anon_sym_RBRACK, + ACTIONS(2685), 1, + anon_sym_PIPE, + ACTIONS(2687), 1, + anon_sym_CARET, + ACTIONS(2693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2695), 1, + anon_sym_AMP_AMP, + ACTIONS(2697), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2657), 26, + ACTIONS(2667), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [29296] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1971), 1, + ACTIONS(2671), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2679), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2705), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(1981), 1, - anon_sym_COLON, - STATE(774), 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(1975), 10, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2703), 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, @@ -97927,12 +98994,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + sym_identifier, + [30374] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 9, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -97940,56 +99026,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + anon_sym_EQ, + ACTIONS(2619), 23, anon_sym_COMMA, - anon_sym_LPAREN2, + 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_LBRACK, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_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, + [30440] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2677), 1, + anon_sym_AMP, + ACTIONS(2685), 1, + anon_sym_PIPE, + ACTIONS(2687), 1, + anon_sym_CARET, + ACTIONS(2695), 1, + anon_sym_AMP_AMP, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - [29359] = 11, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2617), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2671), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2679), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2669), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_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, + [30522] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, + ACTIONS(2671), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2673), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2663), 3, + ACTIONS(2679), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2669), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 7, + ACTIONS(2617), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2556), 23, + ACTIONS(2619), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97997,11 +99163,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [30596] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2705), 1, + anon_sym_EQ, + ACTIONS(2711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2713), 1, + anon_sym_AMP_AMP, + ACTIONS(2715), 1, + anon_sym_PIPE, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + ACTIONS(2729), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2721), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_QMARK, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2703), 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, @@ -98012,51 +99240,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [29427] = 10, + [30681] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2663), 3, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 9, - aux_sym_preproc_elif_token1, + ACTIONS(2617), 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(2556), 23, + ACTIONS(2619), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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, @@ -98068,55 +99296,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [29493] = 13, + [30748] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + ACTIONS(2701), 1, + anon_sym_EQ, + ACTIONS(2711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2713), 1, + anon_sym_AMP_AMP, + ACTIONS(2715), 1, + anon_sym_PIPE, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + ACTIONS(2729), 1, + anon_sym_QMARK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2669), 2, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2663), 3, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2556), 21, + ACTIONS(2699), 16, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, + anon_sym_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, @@ -98127,55 +99361,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [29565] = 14, + [30833] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2713), 1, + anon_sym_AMP_AMP, + ACTIONS(2715), 1, + anon_sym_PIPE, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2669), 2, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2556), 19, + ACTIONS(2619), 18, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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, @@ -98187,56 +99424,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [29639] = 15, + [30914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2603), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 4, - 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(2556), 19, + anon_sym_DOT, + ACTIONS(2605), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98248,21 +99468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_identifier, - [29715] = 7, + [30965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2532), 1, anon_sym_EQ, - STATE(774), 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(2677), 10, + ACTIONS(2534), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98274,6 +99489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, ACTIONS(1959), 13, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98286,9 +99502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1953), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(1953), 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, @@ -98297,61 +99516,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [29775] = 16, + sym_identifier, + [31020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2733), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2532), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2731), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + 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, + [31071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2554), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 19, + 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_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98363,125 +99614,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_identifier, - [29853] = 20, + [31122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2685), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, - anon_sym_PIPE, - ACTIONS(2691), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2591), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2683), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2681), 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, - [29939] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, anon_sym_PIPE, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2593), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98493,62 +99662,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_identifier, - [30021] = 20, + [31173] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2685), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, - anon_sym_PIPE, - ACTIONS(2691), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2695), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2663), 3, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2693), 16, + ACTIONS(2617), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2619), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98559,58 +99721,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30107] = 17, + [31238] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2689), 1, - anon_sym_PIPE, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2661), 2, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2617), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2669), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2619), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + 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, @@ -98622,30 +99775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30187] = 9, + [31301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2663), 3, + ACTIONS(2587), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 11, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -98654,18 +99792,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2556), 23, + anon_sym_DOT, + ACTIONS(2589), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98677,62 +99819,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_identifier, - [30251] = 20, + [31352] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2673), 1, - anon_sym_AMP, - ACTIONS(2679), 1, - anon_sym_CARET, - ACTIONS(2685), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2687), 1, - anon_sym_AMP_AMP, - ACTIONS(2689), 1, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2715), 1, anon_sym_PIPE, - ACTIONS(2691), 1, - anon_sym_QMARK, - STATE(810), 1, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2661), 2, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2665), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2667), 2, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2669), 2, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2671), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2699), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2663), 3, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2697), 16, + ACTIONS(2619), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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, @@ -98743,62 +99885,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30337] = 20, + [31431] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2699), 1, - anon_sym_EQ, - ACTIONS(2705), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2707), 1, - anon_sym_AMP_AMP, - ACTIONS(2709), 1, - anon_sym_PIPE, - ACTIONS(2711), 1, + ACTIONS(2717), 1, anon_sym_CARET, - ACTIONS(2713), 1, + ACTIONS(2719), 1, anon_sym_AMP, - ACTIONS(2723), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2617), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, + ACTIONS(2721), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2717), 2, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2721), 2, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2697), 16, + ACTIONS(2619), 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, @@ -98809,45 +99946,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30422] = 9, + [31508] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + ACTIONS(2719), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 10, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2617), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(2556), 23, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -98863,39 +100006,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30485] = 3, + [31583] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 14, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2552), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2619), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98907,50 +100065,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_identifier, - [30536] = 10, + [31656] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2703), 3, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 8, + ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2556), 23, + ACTIONS(2619), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -98966,55 +100123,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30601] = 20, + [31727] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2683), 1, + ACTIONS(2691), 1, anon_sym_EQ, - ACTIONS(2705), 1, + ACTIONS(2711), 1, anon_sym_PIPE_PIPE, - ACTIONS(2707), 1, + ACTIONS(2713), 1, anon_sym_AMP_AMP, - ACTIONS(2709), 1, + ACTIONS(2715), 1, anon_sym_PIPE, - ACTIONS(2711), 1, + ACTIONS(2717), 1, anon_sym_CARET, - ACTIONS(2713), 1, + ACTIONS(2719), 1, anon_sym_AMP, - ACTIONS(2723), 1, + ACTIONS(2729), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, + ACTIONS(2721), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2717), 2, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2721), 2, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2681), 16, + ACTIONS(2689), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -99031,41 +100188,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30686] = 11, + [31812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(1968), 1, + anon_sym_EQ, + ACTIONS(1972), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2556), 23, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1953), 19, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -99075,73 +100230,66 @@ static const uint16_t ts_small_parse_table[] = { 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, - [30753] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31866] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2695), 1, + ACTIONS(2701), 1, anon_sym_EQ, - ACTIONS(2705), 1, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2741), 1, anon_sym_PIPE_PIPE, - ACTIONS(2707), 1, + ACTIONS(2743), 1, anon_sym_AMP_AMP, - ACTIONS(2709), 1, + ACTIONS(2745), 1, anon_sym_PIPE, - ACTIONS(2711), 1, + ACTIONS(2747), 1, anon_sym_CARET, - ACTIONS(2713), 1, + ACTIONS(2749), 1, anon_sym_AMP, - ACTIONS(2723), 1, + ACTIONS(2759), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2737), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, + ACTIONS(2751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2717), 2, + ACTIONS(2753), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, + ACTIONS(2755), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2721), 2, + ACTIONS(2757), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2693), 16, + ACTIONS(2699), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99152,53 +100300,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30838] = 13, + sym_identifier, + [31950] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2737), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2717), 2, + ACTIONS(2751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2753), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, + ACTIONS(2755), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2721), 2, + ACTIONS(2757), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 4, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2617), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(2556), 21, + ACTIONS(2739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 18, anon_sym_COMMA, - anon_sym_RPAREN, + 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99210,54 +100359,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30909] = 14, + sym_identifier, + [32024] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(810), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2617), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2703), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 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(2556), 19, + ACTIONS(2619), 22, anon_sym_COMMA, - anon_sym_RPAREN, + 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + 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, @@ -99269,55 +100411,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30982] = 15, + sym_identifier, + [32084] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2595), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2554), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, + ACTIONS(2597), 22, anon_sym_COMMA, - anon_sym_RPAREN, + 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + 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, @@ -99329,56 +100463,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31057] = 16, + sym_identifier, + [32144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2711), 1, - anon_sym_CARET, - ACTIONS(2713), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2701), 2, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2607), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, + anon_sym_EQ, + ACTIONS(2609), 22, anon_sym_COMMA, - anon_sym_RPAREN, + 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + 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, @@ -99390,105 +100515,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 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(2725), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - 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, - [31185] = 17, + [32204] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2709), 1, - anon_sym_PIPE, - ACTIONS(2711), 1, - anon_sym_CARET, - ACTIONS(2713), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2613), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2721), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 19, + anon_sym_EQ, + ACTIONS(2615), 22, anon_sym_COMMA, - anon_sym_RPAREN, + 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + 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, @@ -99500,12 +100567,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31264] = 5, + sym_identifier, + [32264] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2705), 1, anon_sym_EQ, - ACTIONS(2560), 10, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2743), 1, + anon_sym_AMP_AMP, + ACTIONS(2745), 1, + anon_sym_PIPE, + ACTIONS(2747), 1, + anon_sym_CARET, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2759), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, + anon_sym_QMARK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2737), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2753), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2755), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2757), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2703), 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, @@ -99516,8 +100631,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 13, - aux_sym_preproc_elif_token1, + sym_identifier, + [32348] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2581), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99530,60 +100660,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + anon_sym_EQ, + ACTIONS(2583), 22, 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, + 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_LBRACK, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_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, - [31319] = 3, + [32408] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2691), 1, + anon_sym_EQ, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2743), 1, + anon_sym_AMP_AMP, + ACTIONS(2745), 1, anon_sym_PIPE, + ACTIONS(2747), 1, anon_sym_CARET, + ACTIONS(2749), 1, anon_sym_AMP, + ACTIONS(2759), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, + anon_sym_QMARK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2737), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2753), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2755), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2757), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, anon_sym_DOT, - ACTIONS(2544), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2689), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99594,62 +100747,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_identifier, - [31370] = 18, + [32492] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2707), 1, - anon_sym_AMP_AMP, - ACTIONS(2709), 1, - anon_sym_PIPE, - ACTIONS(2711), 1, - anon_sym_CARET, - ACTIONS(2713), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2701), 2, + ACTIONS(2737), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2717), 2, + ACTIONS(2753), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2719), 2, + ACTIONS(2755), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2721), 2, + ACTIONS(2757), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 3, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 18, + ACTIONS(2617), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2619), 20, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99661,39 +100804,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31451] = 3, + sym_identifier, + [32562] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 14, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2737), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2757), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2564), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2619), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99705,19 +100859,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_identifier, - [31502] = 3, + [32628] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 14, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2737), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99726,22 +100891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2570), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2619), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99753,31 +100913,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_identifier, - [31553] = 8, + [32692] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2554), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99786,7 +100944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2556), 22, + ACTIONS(2619), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99809,47 +100967,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31613] = 9, + [32754] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2743), 1, + anon_sym_AMP_AMP, + ACTIONS(2745), 1, + anon_sym_PIPE, + ACTIONS(2747), 1, + anon_sym_CARET, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2737), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2753), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2755), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2757), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2737), 3, + ACTIONS(2739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2619), 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, + [32834] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2745), 1, anon_sym_PIPE, + ACTIONS(2747), 1, anon_sym_CARET, + ACTIONS(2749), 1, anon_sym_AMP, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2737), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2753), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2755), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2757), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2556), 22, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 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, @@ -99862,46 +101090,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31675] = 8, + [32912] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2737), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2753), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2755), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2757), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2572), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2574), 22, + ACTIONS(2619), 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, @@ -99914,39 +101148,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31735] = 11, + [32984] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(2536), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 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(2556), 22, + ACTIONS(2538), 24, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99968,13 +101196,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_identifier, - [31801] = 5, + [33042] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2747), 1, + anon_sym_CARET, + ACTIONS(2749), 1, + anon_sym_AMP, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2617), 2, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(1975), 10, + ACTIONS(2737), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2753), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2755), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2757), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 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, @@ -99985,7 +101258,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + sym_identifier, + [33118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2769), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2767), 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, + [33167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2773), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2771), 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, + [33216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99998,9 +101367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + anon_sym_EQ, + ACTIONS(2498), 28, 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, @@ -100008,61 +101380,53 @@ 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, - [31855] = 13, + sym_identifier, + [33265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(2512), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 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(2556), 20, + ACTIONS(2514), 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, @@ -100074,23 +101438,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [33314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1448), 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, + [33363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2775), 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, + [33412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 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, - [31925] = 8, + [33461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2576), 13, + ACTIONS(2468), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100104,17 +101598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2578), 22, + ACTIONS(2470), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100126,30 +101622,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31985] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, + sym_identifier, + [33510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2528), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -100158,17 +101644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2556), 22, + ACTIONS(2530), 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, @@ -100180,23 +101668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32049] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2536), 13, + sym_identifier, + [33559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2454), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100210,17 +101690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2538), 22, + ACTIONS(2456), 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, @@ -100232,20 +101714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [32109] = 7, + [33608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2526), 13, + ACTIONS(2442), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100259,17 +101736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2528), 24, + ACTIONS(2444), 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, @@ -100283,53 +101762,85 @@ 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, sym_identifier, - [32167] = 14, + [33657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(1502), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1500), 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, + [33706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2414), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 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(2556), 18, + ACTIONS(2416), 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, @@ -100341,115 +101852,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32239] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2554), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2737), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 18, - anon_sym_COMMA, + sym_identifier, + [33755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1418), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - 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, + 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, - [32313] = 16, + [33804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - STATE(964), 1, - sym_argument_list, - ACTIONS(2554), 2, - anon_sym_PIPE, + ACTIONS(2638), 1, anon_sym_EQ, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 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, + ACTIONS(2640), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100460,151 +101919,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32389] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2683), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2753), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2755), 1, - anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - ACTIONS(2759), 1, - anon_sym_QMARK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(1959), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2681), 15, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1953), 18, 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, - [32473] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 1, - anon_sym_EQ, - ACTIONS(2729), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2753), 1, anon_sym_PIPE_PIPE, - ACTIONS(2755), 1, anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - ACTIONS(2759), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2693), 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, - [32557] = 8, + [33857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2546), 13, + ACTIONS(2434), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100618,17 +101968,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2548), 22, + ACTIONS(2436), 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, @@ -100640,56 +101992,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32617] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2757), 1, - anon_sym_PIPE, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, + sym_identifier, + [33906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2524), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 18, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2526), 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, @@ -100701,121 +102038,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32695] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2699), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2753), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2755), 1, - anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - ACTIONS(2759), 1, - anon_sym_QMARK, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2697), 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, - [32779] = 18, + [33955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2731), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2751), 1, - anon_sym_CARET, - ACTIONS(2755), 1, - anon_sym_AMP_AMP, - ACTIONS(2757), 1, - anon_sym_PIPE, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 2, + ACTIONS(2430), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2743), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2745), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2747), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2737), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 17, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2432), 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, @@ -100827,11 +102084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [32859] = 3, + [34004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(2446), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100845,7 +102106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2420), 28, + ACTIONS(2448), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100874,10 +102135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [32908] = 3, + [34053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 13, + ACTIONS(2504), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100891,7 +102152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2472), 28, + ACTIONS(2506), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100920,10 +102181,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [32957] = 3, + [34102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2783), 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, + [34151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 13, + ACTIONS(2472), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100937,7 +102244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2476), 28, + ACTIONS(2474), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100966,10 +102273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33006] = 3, + [34200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 13, + ACTIONS(2484), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100983,7 +102290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2516), 28, + ACTIONS(2486), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101012,10 +102319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33055] = 3, + [34249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 13, + ACTIONS(2500), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101029,7 +102336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2520), 28, + ACTIONS(2502), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101058,102 +102365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33104] = 3, + [34298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 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, - [33153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 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, - [33202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 13, + ACTIONS(2438), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101167,7 +102382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2488), 28, + ACTIONS(2440), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101196,10 +102411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33251] = 3, + [34347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 13, + ACTIONS(2418), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101213,7 +102428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2508), 28, + ACTIONS(2420), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101242,12 +102457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33300] = 3, + [34396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2789), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 40, + ACTIONS(2787), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101288,12 +102503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33349] = 3, + [34445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2793), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 40, + ACTIONS(2791), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101334,12 +102549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33398] = 3, + [34494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(2797), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 40, + ACTIONS(2795), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101380,10 +102595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33447] = 3, + [34543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 13, + ACTIONS(2488), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101397,7 +102612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2436), 28, + ACTIONS(2490), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101426,10 +102641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33496] = 3, + [34592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(2492), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101443,7 +102658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2416), 28, + ACTIONS(2494), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101472,56 +102687,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33545] = 3, + [34641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2426), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2428), 28, + anon_sym_COMMA, aux_sym_preproc_if_token2, - aux_sym_preproc_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, - [33594] = 3, + [34690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 13, + ACTIONS(2422), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101535,7 +102750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2480), 28, + ACTIONS(2424), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101564,10 +102779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33643] = 3, + [34739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 13, + ACTIONS(2508), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101581,7 +102796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2512), 28, + ACTIONS(2510), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101610,12 +102825,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33692] = 3, + [34788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2801), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2799), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2805), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2803), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2807), 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, + [34935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 40, + ACTIONS(2811), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101656,10 +103009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33741] = 3, + [34984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 13, + ACTIONS(2516), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101673,7 +103026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2492), 28, + ACTIONS(2518), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101702,10 +103055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33790] = 3, + [35033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 13, + ACTIONS(2520), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101719,7 +103072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2452), 28, + ACTIONS(2522), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101748,10 +103101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33839] = 3, + [35082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 13, + ACTIONS(2480), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101765,7 +103118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2432), 28, + ACTIONS(2482), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101794,56 +103147,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33888] = 3, + [35131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 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(2448), 28, - anon_sym_COMMA, + ACTIONS(1416), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1414), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + 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, - [33937] = 3, + [35180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 13, + ACTIONS(2476), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101857,7 +103210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2440), 28, + ACTIONS(2478), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101886,10 +103239,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33986] = 3, + [35229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1494), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1492), 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, + [35278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1408), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1406), 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, + [35327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 13, + ACTIONS(2450), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101903,7 +103348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2504), 28, + ACTIONS(2452), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101932,58 +103377,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34035] = 3, + [35376] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2424), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2819), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym_field_declaration_list, + STATE(1080), 1, + sym_attribute_specifier, + ACTIONS(2817), 7, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2815), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [35431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1494), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1492), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + sym_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, - [34084] = 3, + [35478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 1, + ACTIONS(1416), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1504), 40, + ACTIONS(1414), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101991,8 +103482,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -102024,37 +103513,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34133] = 3, + [35525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2428), 28, - anon_sym_COMMA, + ACTIONS(1408), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1406), 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, + [35572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1448), 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, + [35619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1418), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___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, + [35666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1502), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1500), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___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, + [35713] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2691), 1, + anon_sym_EQ, + ACTIONS(2735), 1, anon_sym_LPAREN2, + ACTIONS(2825), 1, anon_sym_PIPE_PIPE, + ACTIONS(2827), 1, anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_PIPE, + ACTIONS(2831), 1, + anon_sym_CARET, + ACTIONS(2833), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_QMARK, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2821), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2837), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(2841), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2823), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2689), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102065,63 +103751,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34182] = 5, + [35796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_EQ, - ACTIONS(2627), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 12, - 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(1953), 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, + ACTIONS(2542), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 13, + ACTIONS(2613), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102135,19 +103781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2484), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(2615), 19, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102159,15 +103801,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34284] = 3, + [35855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 13, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2607), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102181,19 +103831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2460), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(2609), 19, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102205,30 +103851,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34333] = 3, + [35914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(2851), 1, + anon_sym___attribute__, + ACTIONS(2854), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 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_LBRACE, + ACTIONS(2857), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2849), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2847), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -102256,10 +103898,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34382] = 3, + [35967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2819), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_field_declaration_list, + STATE(1094), 1, + sym_attribute_specifier, + ACTIONS(2861), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2859), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [36022] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2581), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102273,19 +103976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2444), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(2583), 19, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102297,15 +103996,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34431] = 3, + [36081] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 13, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2536), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102319,19 +104023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2464), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(2538), 21, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102345,42 +104045,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, + [36138] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, anon_sym_DASH_GT, - sym_identifier, - [34480] = 3, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2617), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2619), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [36197] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 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, + ACTIONS(2087), 1, + anon_sym_LPAREN2, + ACTIONS(2089), 1, + anon_sym_STAR, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2871), 1, + anon_sym_LBRACK, + STATE(1316), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1483), 1, + sym__declarator, + STATE(1637), 1, + sym__abstract_declarator, + STATE(1644), 1, + sym_parameter_list, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(2865), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1180), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1185), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1645), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_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, @@ -102389,35 +104155,35 @@ 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, - [34529] = 3, + [36276] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2819), 1, + anon_sym_LBRACE, + STATE(1029), 1, + sym_field_declaration_list, + STATE(1088), 1, + sym_attribute_specifier, + ACTIONS(2875), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 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_COLON, + ACTIONS(2873), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102436,16 +104202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34578] = 3, + [36331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(2773), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 40, + ACTIONS(2771), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102453,8 +104216,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -102486,76 +104247,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34627] = 3, + [36378] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 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(2456), 28, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2819), 1, + anon_sym_LBRACE, + STATE(1041), 1, + sym_field_declaration_list, + STATE(1107), 1, + sym_attribute_specifier, + ACTIONS(2879), 7, anon_sym_COMMA, - 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, - 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, - [34676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1466), 1, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1464), 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_COLON, + ACTIONS(2877), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102574,106 +104294,24 @@ 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, - [34725] = 3, + [36433] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2524), 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, + ACTIONS(2542), 1, 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, + ACTIONS(2544), 1, anon_sym_DASH_GT, - sym_identifier, - [34774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2500), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - 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, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 13, + ACTIONS(2595), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102687,19 +104325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2496), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102711,30 +104345,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34872] = 3, + [36492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2885), 1, + anon_sym___attribute__, + ACTIONS(2888), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 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_LBRACE, + ACTIONS(2891), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2883), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2881), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -102762,12 +104392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34921] = 3, + [36545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2769), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 40, + ACTIONS(2767), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102775,8 +104405,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -102808,12 +104436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34970] = 3, + [36592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(2777), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 40, + ACTIONS(2775), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102821,8 +104449,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -102854,30 +104480,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35019] = 3, + [36639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(2665), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1480), 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_COLON, + ACTIONS(2663), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102900,12 +104524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35068] = 3, + [36686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1442), 40, + ACTIONS(2779), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102913,8 +104537,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -102946,96 +104568,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35117] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_field_declaration_list, - STATE(1086), 1, - sym_attribute_specifier, - ACTIONS(2811), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2809), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [35172] = 11, + [36733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2705), 1, + anon_sym_EQ, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2825), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_PIPE, + ACTIONS(2831), 1, + anon_sym_CARET, + ACTIONS(2833), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_QMARK, + ACTIONS(2845), 1, anon_sym_DOT, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2839), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2556), 19, + ACTIONS(2823), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2703), 12, 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, @@ -103046,56 +104630,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35235] = 21, + [36816] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2683), 1, + ACTIONS(2701), 1, anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2821), 1, + ACTIONS(2825), 1, anon_sym_PIPE_PIPE, - ACTIONS(2823), 1, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2825), 1, + ACTIONS(2829), 1, anon_sym_PIPE, - ACTIONS(2827), 1, + ACTIONS(2831), 1, anon_sym_CARET, - ACTIONS(2829), 1, + ACTIONS(2833), 1, anon_sym_AMP, - ACTIONS(2839), 1, + ACTIONS(2843), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, + ACTIONS(2835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2833), 2, + ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2823), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2681), 12, + ACTIONS(2699), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -103108,12 +104692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35318] = 3, + [36899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 38, + ACTIONS(2811), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103152,120 +104736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35365] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_field_declaration_list, - STATE(1111), 1, - sym_attribute_specifier, - ACTIONS(2843), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2841), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [35420] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2089), 1, - anon_sym_LPAREN2, - ACTIONS(2091), 1, - anon_sym_STAR, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1499), 1, - sym__declarator, - STATE(1621), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(2001), 1, - sym_ms_based_modifier, - ACTIONS(2847), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1165), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1189), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1537), 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, - [35499] = 3, + [36946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 38, + ACTIONS(2807), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103304,12 +104780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35546] = 3, + [36993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1466), 1, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1464), 38, + ACTIONS(2803), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103348,12 +104824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35593] = 3, + [37040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2801), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 38, + ACTIONS(2799), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103392,12 +104868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35640] = 3, + [37087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(2797), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1480), 38, + ACTIONS(2795), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103436,28 +104912,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35687] = 3, + [37134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2819), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_field_declaration_list, + STATE(1114), 1, + sym_attribute_specifier, + ACTIONS(2895), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2893), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103476,16 +104959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35734] = 3, + [37189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2793), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 38, + ACTIONS(2791), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103524,63 +105004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35781] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2554), 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(2556), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_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, - [35842] = 3, + [37236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(2789), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1442), 38, + ACTIONS(2787), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103619,81 +105048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35889] = 9, + [37283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2899), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2546), 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(2548), 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, - [35948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2859), 1, - anon_sym___attribute__, - ACTIONS(2862), 2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2865), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2857), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2855), 29, + ACTIONS(2897), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103716,276 +105092,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36001] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2823), 1, - anon_sym_AMP_AMP, - ACTIONS(2825), 1, - anon_sym_PIPE, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [36080] = 7, + [37330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_field_declaration_list, - STATE(1114), 1, - sym_attribute_specifier, - ACTIONS(2869), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2785), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2867), 28, + ACTIONS(2783), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - 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, - [36135] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_EQ, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2825), 1, - anon_sym_PIPE, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, - anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 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, - [36212] = 17, + 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, + [37377] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2815), 2, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2823), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2556), 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, - [36287] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2829), 1, + ACTIONS(2617), 8, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2554), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2556), 15, + ACTIONS(2619), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -103998,50 +105188,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36360] = 15, + [37440] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2833), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2835), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2823), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 4, + ACTIONS(2617), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(2556), 15, + ACTIONS(2619), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -104054,44 +105241,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36431] = 14, + [37505] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2833), 2, + ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2823), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 4, + ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2556), 17, + ACTIONS(2619), 17, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104109,97 +105296,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36500] = 9, + [37574] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 13, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2556), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2837), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [36559] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2837), 2, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, + ACTIONS(2823), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2554), 6, + ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2556), 19, + ACTIONS(2619), 15, 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, @@ -104212,191 +105352,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2873), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2871), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - 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, - [36671] = 21, + [37645] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2695), 1, - anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2823), 1, - anon_sym_AMP_AMP, - ACTIONS(2825), 1, - anon_sym_PIPE, - ACTIONS(2827), 1, - anon_sym_CARET, - ACTIONS(2829), 1, + ACTIONS(2833), 1, anon_sym_AMP, - ACTIONS(2839), 1, - anon_sym_QMARK, - STATE(810), 1, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, + ACTIONS(2835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2833), 2, + ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2693), 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, - [36754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 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, - [36801] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2526), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2617), 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(2528), 21, + ACTIONS(2823), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 15, 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, @@ -104409,46 +105409,52 @@ 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, - [36858] = 9, + [37718] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2831), 1, + anon_sym_CARET, + ACTIONS(2833), 1, + anon_sym_AMP, + ACTIONS(2845), 1, anon_sym_DOT, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2536), 13, + ACTIONS(2617), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2839), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2538), 19, + ACTIONS(2823), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 15, 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, @@ -104461,228 +105467,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36917] = 21, + [37793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2699), 1, + ACTIONS(2617), 1, anon_sym_EQ, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(2821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2823), 1, - anon_sym_AMP_AMP, - ACTIONS(2825), 1, + ACTIONS(2829), 1, anon_sym_PIPE, - ACTIONS(2827), 1, + ACTIONS(2831), 1, anon_sym_CARET, - ACTIONS(2829), 1, + ACTIONS(2833), 1, anon_sym_AMP, - ACTIONS(2839), 1, - anon_sym_QMARK, - STATE(810), 1, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2815), 2, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2831), 2, + ACTIONS(2835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2833), 2, + ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2835), 2, + ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2837), 2, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2817), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2697), 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, - [37000] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2572), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2823), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2574), 19, + ACTIONS(2619), 15, 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, - [37059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1506), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1504), 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, - [37106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2803), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 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, - [37153] = 9, + 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, + [37870] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2617), 1, + anon_sym_EQ, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_PIPE, + ACTIONS(2831), 1, + anon_sym_CARET, + ACTIONS(2833), 1, + anon_sym_AMP, + ACTIONS(2845), 1, anon_sym_DOT, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2576), 13, + ACTIONS(2821), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2837), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2839), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2841), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2823), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2619), 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [37949] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2823), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2617), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -104691,7 +105617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2578), 19, + ACTIONS(2619), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104711,119 +105637,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 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, - [37259] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym___attribute__, - ACTIONS(2882), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2885), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2877), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2875), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37312] = 7, + [38010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1077), 1, - sym_field_declaration_list, - STATE(1097), 1, - sym_attribute_specifier, - ACTIONS(2889), 7, + ACTIONS(2903), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2887), 28, + ACTIONS(2901), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -104849,113 +105676,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - sym_identifier, - [37367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 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, - [37414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2779), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 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, - [37461] = 3, + [38056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2412), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 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(2410), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -104982,18 +105723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37508] = 3, + [38102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 7, + ACTIONS(1915), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2657), 32, + ACTIONS(1913), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105026,207 +105766,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2795), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 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, - [37602] = 7, + [38148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2813), 1, - anon_sym_LBRACE, - STATE(1064), 1, - sym_field_declaration_list, - STATE(1103), 1, - sym_attribute_specifier, - ACTIONS(2893), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2681), 1, + anon_sym_EQ, + ACTIONS(2683), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1959), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2891), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_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(1953), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_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, - [37657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 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, - [37704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2791), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 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, - [37751] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [38198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2408), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2895), 32, + anon_sym_LBRACE, + ACTIONS(2406), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105249,17 +105854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37797] = 3, + [38244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 6, + ACTIONS(1919), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1907), 32, + ACTIONS(1917), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105292,151 +105897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2408), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2406), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - 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, - [37889] = 5, + [38290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, - anon_sym_EQ, - ACTIONS(2677), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1959), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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(1953), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2410), 36, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(33), 1, 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, - [37985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1913), 6, + STATE(1081), 1, + sym_attribute_specifier, + ACTIONS(2907), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1911), 32, + anon_sym_COLON, + ACTIONS(2905), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -105462,19 +105940,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38031] = 3, + [38339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2797), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 36, + anon_sym_RBRACE, + ACTIONS(2795), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -105508,20 +105983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38076] = 5, + [38384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(1450), 1, anon_sym_LBRACK_LBRACK, - STATE(772), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + ACTIONS(1448), 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__, @@ -105552,13 +106025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38125] = 3, + [38429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 2, + ACTIONS(2809), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2789), 35, + ACTIONS(2807), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -105594,57 +106067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1108), 1, - sym_attribute_specifier, - ACTIONS(2903), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2901), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38219] = 3, + [38474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 2, + ACTIONS(1420), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2793), 35, + ACTIONS(1418), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -105680,26 +106109,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38264] = 3, + [38519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1100), 1, + sym_attribute_specifier, + ACTIONS(2911), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2761), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2909), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105718,16 +106152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38309] = 3, + [38568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1420), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 36, + ACTIONS(1418), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105764,15 +106195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38354] = 3, + [38613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 1, + ACTIONS(2769), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1504), 36, + anon_sym_RBRACE, + ACTIONS(2767), 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, @@ -105806,15 +106237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38399] = 3, + [38658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, + ACTIONS(2777), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1442), 36, + anon_sym_RBRACE, + ACTIONS(2775), 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, @@ -105848,12 +106279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38444] = 3, + [38703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(1502), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1480), 36, + ACTIONS(1500), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105890,12 +106321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38489] = 3, + [38748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(2785), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1488), 36, + ACTIONS(2783), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105932,18 +106363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38534] = 3, + [38793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1466), 1, + ACTIONS(2903), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1464), 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(771), 1, + sym_string_literal, + ACTIONS(2913), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2901), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105974,13 +106407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38579] = 3, + [38842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 2, + ACTIONS(2773), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2765), 35, + ACTIONS(2771), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106016,13 +106449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38624] = 3, + [38887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 2, + ACTIONS(2781), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2769), 35, + ACTIONS(2779), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106058,56 +106491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38669] = 5, + [38932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1112), 1, - sym_attribute_specifier, - ACTIONS(2907), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2789), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2905), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 36, + ACTIONS(2787), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106144,63 +106533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38763] = 9, + [38977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(2813), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2909), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2911), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(872), 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, - [38820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 36, + anon_sym_RBRACE, + ACTIONS(2811), 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, @@ -106234,12 +106575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38865] = 3, + [39022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2793), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 36, + ACTIONS(2791), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106276,26 +106617,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38910] = 3, + [39067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1112), 1, + sym_attribute_specifier, + ACTIONS(2917), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2915), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106314,16 +106660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38955] = 3, + [39116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2797), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 36, + ACTIONS(2795), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106360,26 +106703,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39000] = 3, + [39161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1106), 1, + sym_attribute_specifier, + ACTIONS(2921), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2919), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106398,16 +106746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39045] = 3, + [39210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, + ACTIONS(2801), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 36, + ACTIONS(2799), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106444,20 +106789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39090] = 5, + [39255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - STATE(768), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + ACTIONS(2803), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -106488,15 +106831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39139] = 3, + [39300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2805), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 36, + anon_sym_RBRACE, + ACTIONS(2803), 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, @@ -106530,12 +106873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39184] = 3, + [39345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(2809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 36, + ACTIONS(2807), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106572,26 +106915,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39229] = 3, + [39390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1102), 1, + sym_attribute_specifier, + ACTIONS(2925), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2923), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106610,30 +106958,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39274] = 3, + [39439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 2, + STATE(1049), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2931), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2929), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1426), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2927), 25, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106652,19 +107002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39319] = 3, + [39488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(1450), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 36, + anon_sym_RBRACE, + ACTIONS(1448), 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, @@ -106698,15 +107045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39364] = 3, + [39533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 2, + ACTIONS(2813), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1504), 35, + ACTIONS(2811), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106740,15 +107087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39409] = 3, + [39578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 2, + ACTIONS(1416), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1442), 35, + ACTIONS(1414), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106782,30 +107129,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39454] = 5, + [39623] = 9, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2917), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2915), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2934), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2936), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, + STATE(868), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___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, + [39680] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2913), 25, + ACTIONS(2938), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2940), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(1056), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + 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, + [39737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + STATE(1084), 1, + sym_attribute_specifier, + ACTIONS(2944), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2942), 28, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -106826,15 +107269,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [39503] = 3, + [39786] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2785), 35, + ACTIONS(2946), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2948), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(868), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [39843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106868,103 +107359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39548] = 5, + [39888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1105), 1, - sym_attribute_specifier, - ACTIONS(2922), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2920), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39597] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1087), 1, - sym_attribute_specifier, - ACTIONS(2926), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2777), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2924), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2797), 35, + ACTIONS(2775), 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, @@ -106998,15 +107401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39691] = 3, + [39933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 2, + ACTIONS(2769), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1480), 35, + ACTIONS(2767), 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, @@ -107040,13 +107443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39736] = 3, + [39978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 2, + ACTIONS(2801), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1488), 35, + ACTIONS(2799), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107082,15 +107485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39781] = 3, + [40023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 2, + ACTIONS(1408), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2773), 35, + ACTIONS(1406), 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, @@ -107124,63 +107527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39826] = 9, + [40068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(1494), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2928), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2930), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(1039), 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, - [39883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2805), 35, + ACTIONS(1492), 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, @@ -107214,64 +107569,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39928] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1106), 1, - sym_attribute_specifier, - 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), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39977] = 5, + [40113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2903), 1, anon_sym_LBRACK_LBRACK, - STATE(767), 1, + STATE(769), 1, sym_string_literal, - ACTIONS(2899), 5, + ACTIONS(2913), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2895), 30, + ACTIONS(2901), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107302,31 +107613,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40026] = 5, + [40162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1102), 1, - sym_attribute_specifier, - ACTIONS(2938), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1408), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2936), 28, + anon_sym_RBRACE, + ACTIONS(1406), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107345,14 +107651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40075] = 3, + [40207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 2, + ACTIONS(1416), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2777), 35, + ACTIONS(1414), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107388,14 +107697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40120] = 5, + [40252] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1100), 1, + STATE(1113), 1, sym_attribute_specifier, - ACTIONS(2942), 7, + ACTIONS(2952), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107403,7 +107712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2940), 28, + ACTIONS(2950), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -107432,20 +107741,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40169] = 5, + [40301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2903), 1, anon_sym_LBRACK_LBRACK, - STATE(771), 1, + STATE(767), 1, sym_string_literal, - ACTIONS(2899), 5, + ACTIONS(2913), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2895), 30, + ACTIONS(2901), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107476,14 +107785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40218] = 5, + [40350] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1081), 1, + STATE(1116), 1, sym_attribute_specifier, - ACTIONS(2946), 7, + ACTIONS(2956), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107491,7 +107800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2944), 28, + ACTIONS(2954), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -107520,20 +107829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40267] = 5, + [40399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(1502), 2, anon_sym_LBRACK_LBRACK, - STATE(770), 1, - sym_string_literal, - ACTIONS(2899), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2895), 30, + anon_sym_RBRACE, + ACTIONS(1500), 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__, @@ -107564,13 +107871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40316] = 3, + [40444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 2, + ACTIONS(2793), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2801), 35, + ACTIONS(2791), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107606,45 +107913,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40361] = 9, + [40489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(2789), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2948), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2950), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(872), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_RBRACE, + ACTIONS(2787), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107654,7 +107942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [40418] = 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, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40534] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -107663,17 +107964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2952), 3, + ACTIONS(2958), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(2954), 5, + ACTIONS(2960), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(1073), 7, + STATE(1053), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -107702,13 +108003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [40475] = 3, + [40591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 2, + ACTIONS(1494), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2781), 35, + ACTIONS(1492), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107744,13 +108045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40520] = 3, + [40636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(2785), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1464), 35, + ACTIONS(2783), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107786,14 +108087,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40565] = 5, + [40681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 1, + anon_sym_LBRACK_LBRACK, + STATE(772), 1, + sym_string_literal, + ACTIONS(2913), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2901), 30, + anon_sym___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, + [40730] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1101), 1, + STATE(1117), 1, sym_attribute_specifier, - ACTIONS(2958), 7, + ACTIONS(2964), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107801,7 +108146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2956), 28, + ACTIONS(2962), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -107830,14 +108175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40614] = 5, + [40779] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1116), 1, + STATE(1098), 1, sym_attribute_specifier, - ACTIONS(2962), 7, + ACTIONS(2968), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107845,7 +108190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2960), 28, + ACTIONS(2966), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -107874,17 +108219,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40663] = 5, + [40828] = 3, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, + ACTIONS(2773), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2771), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2966), 7, + 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, + [40873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 1, + anon_sym_LBRACK_LBRACK, + STATE(774), 1, + sym_string_literal, + ACTIONS(2913), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2901), 30, + anon_sym___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, + [40922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107892,12 +108316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2964), 24, + ACTIONS(2970), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -107916,29 +108344,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [40711] = 7, + [40966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 1, - sym_identifier, - ACTIONS(2979), 1, + ACTIONS(2976), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2974), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + 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(1090), 1, + sym_identifier, + [41010] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1049), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2977), 4, + ACTIONS(2982), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2973), 6, + ACTIONS(2980), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2975), 23, + anon_sym_COLON, + ACTIONS(2978), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107962,10 +108429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40763] = 3, + sym_identifier, + [41058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 7, + ACTIONS(2986), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107973,7 +108441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2981), 29, + ACTIONS(2984), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108003,10 +108471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40807] = 3, + [41102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 7, + ACTIONS(2990), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108014,7 +108482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2985), 29, + ACTIONS(2988), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108044,10 +108512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40851] = 3, + [41146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 7, + ACTIONS(2994), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108055,7 +108523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2989), 29, + ACTIONS(2992), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108085,27 +108553,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40895] = 3, + [41190] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 7, + ACTIONS(2996), 1, + sym_identifier, + ACTIONS(3005), 1, + sym_primitive_type, + STATE(1103), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3003), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2999), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2993), 29, + ACTIONS(3001), 23, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108124,19 +108598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [40939] = 5, + [41242] = 5, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, + STATE(1049), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, + ACTIONS(2982), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2999), 7, + ACTIONS(3009), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108144,7 +108616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2997), 24, + ACTIONS(3007), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108169,10 +108641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [40987] = 3, + [41290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 7, + ACTIONS(3013), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108180,7 +108652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3001), 29, + ACTIONS(3011), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108210,10 +108682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41031] = 3, + [41334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 7, + ACTIONS(3017), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108221,7 +108693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3005), 29, + ACTIONS(3015), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108251,10 +108723,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41075] = 3, + [41378] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1049), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2982), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3021), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3019), 24, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [41426] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1087), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3023), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2986), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2984), 24, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [41474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 7, + ACTIONS(3027), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108262,7 +108820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3009), 29, + ACTIONS(3025), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108292,97 +108850,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41119] = 5, + [41518] = 3, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3015), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3013), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(1350), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [41167] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - sym_primitive_type, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2917), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3020), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1352), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3017), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41217] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 7, + ACTIONS(3031), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108390,7 +108902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3023), 29, + ACTIONS(3029), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108420,17 +108932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41261] = 5, + [41606] = 3, ACTIONS(3), 1, sym_comment, - STATE(1094), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3031), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3029), 7, + ACTIONS(3035), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108438,55 +108943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3027), 24, + ACTIONS(3033), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41309] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1089), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3037), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3035), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3033), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108505,18 +108971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [41357] = 5, + [41650] = 3, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2968), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3041), 7, + ACTIONS(3039), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108524,12 +108984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3039), 24, + ACTIONS(3037), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108548,11 +109012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [41405] = 3, + [41694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 7, + ACTIONS(3043), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108560,7 +109025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3043), 29, + ACTIONS(3041), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108590,10 +109055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41449] = 3, + [41738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 7, + ACTIONS(3047), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108601,7 +109066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3047), 29, + ACTIONS(3045), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108631,10 +109096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41493] = 3, + [41782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 7, + ACTIONS(3051), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108642,7 +109107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3051), 29, + ACTIONS(3049), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108672,10 +109137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41537] = 3, + [41826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 7, + ACTIONS(3055), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108683,7 +109148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3055), 29, + ACTIONS(3053), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108713,10 +109178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41581] = 3, + [41870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 7, + ACTIONS(3059), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108724,7 +109189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3059), 29, + ACTIONS(3057), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108754,10 +109219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41625] = 3, + [41914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 7, + ACTIONS(3063), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108765,7 +109230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3063), 29, + ACTIONS(3061), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108795,27 +109260,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41669] = 3, + [41958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 7, + ACTIONS(2927), 1, + sym_primitive_type, + STATE(1049), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2931), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3068), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3067), 29, + ACTIONS(3065), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108834,11 +109303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41713] = 3, + [42008] = 5, ACTIONS(3), 1, sym_comment, + STATE(1090), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3075), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, ACTIONS(3073), 7, anon_sym_COMMA, anon_sym_RPAREN, @@ -108847,16 +109322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3071), 29, + ACTIONS(3071), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108875,12 +109346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41757] = 3, + [42056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 7, + ACTIONS(3079), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108888,7 +109358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3075), 29, + ACTIONS(3077), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108918,10 +109388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41801] = 3, + [42100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 7, + ACTIONS(3083), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108929,7 +109399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3079), 29, + ACTIONS(3081), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108959,10 +109429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41845] = 3, + [42144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 7, + ACTIONS(3087), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108970,7 +109440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3083), 29, + ACTIONS(3085), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109000,10 +109470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41889] = 3, + [42188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 7, + STATE(1049), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2982), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3091), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109011,16 +109488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3087), 29, + ACTIONS(3089), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109039,28 +109512,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41933] = 6, + [42236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN2, - STATE(1079), 1, + STATE(1108), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1969), 4, + ACTIONS(3097), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1967), 6, + ACTIONS(3095), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1951), 24, + ACTIONS(3093), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109085,27 +109556,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [41983] = 3, + [42284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 7, + ACTIONS(3099), 1, + anon_sym_LPAREN2, + STATE(1082), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1966), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1964), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3094), 29, + ACTIONS(1951), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109124,19 +109599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [42027] = 5, + [42334] = 3, ACTIONS(3), 1, sym_comment, - STATE(1085), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3102), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3100), 7, + ACTIONS(3104), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109144,12 +109611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3098), 24, + ACTIONS(3102), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109168,11 +109639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [42075] = 3, + [42378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 7, + ACTIONS(3108), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109180,7 +109652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3104), 29, + ACTIONS(3106), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109210,10 +109682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42119] = 3, + [42422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 7, + ACTIONS(3112), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109221,7 +109693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3108), 29, + ACTIONS(3110), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109251,10 +109723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42163] = 3, + [42466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 7, + ACTIONS(3116), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109262,7 +109734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3112), 29, + ACTIONS(3114), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109292,51 +109764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1392), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [42251] = 3, + [42510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 7, + ACTIONS(3120), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109344,7 +109775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3116), 29, + ACTIONS(3118), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109374,10 +109805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42295] = 3, + [42554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 7, + ACTIONS(3124), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109385,7 +109816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3098), 29, + ACTIONS(3122), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109415,10 +109846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42339] = 3, + [42598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 7, + ACTIONS(3128), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109426,7 +109857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3120), 29, + ACTIONS(3126), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109456,76 +109887,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42383] = 16, + [42642] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, - anon_sym_LPAREN2, - ACTIONS(3128), 1, - anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1546), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - ACTIONS(2851), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1281), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2849), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 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, - [42452] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - ACTIONS(3134), 1, + ACTIONS(3130), 1, anon_sym_COMMA, - ACTIONS(3137), 1, + ACTIONS(3133), 1, anon_sym_RPAREN, - STATE(1079), 1, + STATE(1082), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1826), 1, + STATE(1741), 1, aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1967), 2, + ACTIONS(1964), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1969), 4, + ACTIONS(1966), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -109555,44 +109933,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42507] = 16, + [42697] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1542), 1, + STATE(1540), 1, sym__type_declarator, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1117), 2, + STATE(1120), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1276), 2, + STATE(1293), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109608,44 +109986,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42576] = 16, + [42766] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1542), 1, + STATE(1538), 1, sym__type_declarator, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1276), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1303), 2, + STATE(1302), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109661,44 +110039,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42645] = 16, + [42835] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1541), 1, + STATE(1538), 1, sym__type_declarator, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1120), 2, + STATE(1122), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1287), 2, + STATE(1280), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109714,32 +110092,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42714] = 8, + [42904] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3147), 1, - anon_sym_LBRACK, - STATE(1079), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, - anon_sym_COMMA, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3140), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1969), 4, + ACTIONS(3144), 1, + sym_primitive_type, + STATE(1316), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1542), 1, + sym__type_declarator, + STATE(2005), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1273), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1302), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1951), 23, + STATE(1607), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42973] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3146), 1, + anon_sym_SEMI, + ACTIONS(2958), 2, anon_sym___based, + sym_identifier, + ACTIONS(2960), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1053), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109749,16 +110191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42766] = 10, + [43029] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -109767,15 +110200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3150), 1, + ACTIONS(3148), 1, anon_sym_SEMI, - ACTIONS(2952), 2, + ACTIONS(2958), 2, anon_sym___based, sym_identifier, - ACTIONS(2954), 2, + ACTIONS(2960), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1073), 7, + STATE(1053), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109804,20 +110237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [42822] = 7, + [43085] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3099), 1, anon_sym_LPAREN2, - STATE(1079), 1, + STATE(1082), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1967), 2, + ACTIONS(1964), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(3152), 2, + ACTIONS(3150), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1969), 4, + ACTIONS(1966), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -109847,7 +110280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42872] = 10, + [43135] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -109856,15 +110289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3155), 1, + ACTIONS(3153), 1, anon_sym_SEMI, - ACTIONS(2952), 2, + ACTIONS(2958), 2, anon_sym___based, sym_identifier, - ACTIONS(2954), 2, + ACTIONS(2960), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1073), 7, + STATE(1053), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -109893,27 +110326,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [42928] = 8, + [43191] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(3159), 1, anon_sym___attribute__, - ACTIONS(3164), 1, + ACTIONS(3162), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(3164), 1, anon_sym_COLON, - STATE(1091), 1, + STATE(1085), 1, sym_attribute_specifier, - STATE(1166), 1, + STATE(1179), 1, sym_enumerator_list, - ACTIONS(3159), 6, + ACTIONS(3157), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3157), 23, + ACTIONS(3155), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -109937,43 +110370,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42980] = 10, + [43243] = 8, 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(3168), 1, - anon_sym_SEMI, - ACTIONS(2952), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2954), 2, + ACTIONS(3169), 1, anon_sym_LPAREN2, + ACTIONS(3173), 1, + anon_sym_LBRACK, + STATE(1082), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1964), 2, + anon_sym_COMMA, anon_sym_STAR, - STATE(1073), 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, + ACTIONS(3166), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1966), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1951), 23, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109983,7 +110405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43036] = 10, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [43295] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -109992,15 +110423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3170), 1, + ACTIONS(3176), 1, anon_sym_SEMI, - ACTIONS(2952), 2, + ACTIONS(2958), 2, anon_sym___based, sym_identifier, - ACTIONS(2954), 2, + ACTIONS(2960), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1073), 7, + STATE(1053), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110029,7 +110460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43092] = 10, + [43351] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -110038,15 +110469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3172), 1, + ACTIONS(3178), 1, anon_sym_SEMI, - ACTIONS(2952), 2, + ACTIONS(2958), 2, anon_sym___based, sym_identifier, - ACTIONS(2954), 2, + ACTIONS(2960), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1073), 7, + STATE(1053), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110075,200 +110506,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43148] = 14, + [43407] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3176), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3180), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2554), 3, + ACTIONS(2691), 1, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2556), 12, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3184), 1, + anon_sym_SLASH, + ACTIONS(3186), 1, anon_sym_PIPE_PIPE, + ACTIONS(3188), 1, anon_sym_AMP_AMP, + ACTIONS(3190), 1, + anon_sym_PIPE, + ACTIONS(3192), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3194), 1, + anon_sym_AMP, + ACTIONS(3204), 1, anon_sym_QMARK, - sym_identifier, - [43211] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3178), 1, - anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2554), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2556), 10, + ACTIONS(2689), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [43276] = 16, + [43484] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, + ACTIONS(2617), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3184), 1, anon_sym_SLASH, ACTIONS(3188), 1, + anon_sym_AMP_AMP, + ACTIONS(3190), 1, + anon_sym_PIPE, + ACTIONS(3192), 1, + anon_sym_CARET, + ACTIONS(3194), 1, anon_sym_AMP, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 10, + ACTIONS(2619), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [43343] = 18, + [43557] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, + ACTIONS(3184), 1, anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(2617), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3184), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 9, + ACTIONS(2619), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110276,143 +110653,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_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, - [43414] = 17, + [43614] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, + ACTIONS(2701), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3184), 1, anon_sym_SLASH, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE, ACTIONS(3188), 1, - anon_sym_AMP, + anon_sym_AMP_AMP, + ACTIONS(3190), 1, + anon_sym_PIPE, ACTIONS(3192), 1, anon_sym_CARET, - STATE(810), 1, + ACTIONS(3194), 1, + anon_sym_AMP, + ACTIONS(3204), 1, + anon_sym_QMARK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 9, + ACTIONS(2699), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [43483] = 19, + [43691] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, + ACTIONS(3184), 1, anon_sym_SLASH, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE, ACTIONS(3188), 1, - anon_sym_AMP, + anon_sym_AMP_AMP, ACTIONS(3190), 1, anon_sym_PIPE, ACTIONS(3192), 1, anon_sym_CARET, ACTIONS(3194), 1, - anon_sym_AMP_AMP, - STATE(810), 1, + anon_sym_AMP, + ACTIONS(3204), 1, + anon_sym_QMARK, + ACTIONS(3208), 1, + aux_sym_preproc_elif_token1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2556), 8, + ACTIONS(3206), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, sym_identifier, - [43556] = 10, + [43768] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, + ACTIONS(3184), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3176), 2, + ACTIONS(3180), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 7, + ACTIONS(3202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2617), 5, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 16, + ACTIONS(2619), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110425,253 +110819,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [43611] = 21, + [43827] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2683), 1, + ACTIONS(2705), 1, aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, + ACTIONS(3184), 1, anon_sym_SLASH, + ACTIONS(3186), 1, + anon_sym_PIPE_PIPE, ACTIONS(3188), 1, - anon_sym_AMP, + anon_sym_AMP_AMP, ACTIONS(3190), 1, anon_sym_PIPE, ACTIONS(3192), 1, anon_sym_CARET, ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3198), 1, + anon_sym_AMP, + ACTIONS(3204), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2681), 6, + ACTIONS(2703), 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, - [43688] = 21, + [43904] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(3162), 1, + anon_sym_LBRACE, + ACTIONS(3214), 1, + anon_sym___attribute__, + STATE(1095), 1, + sym_attribute_specifier, + STATE(1166), 1, + sym_enumerator_list, + ACTIONS(3212), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2532), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3210), 23, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(2695), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [43953] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3184), 1, anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3182), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2617), 7, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2619), 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, - ACTIONS(3198), 1, + 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, - STATE(810), 1, + sym_identifier, + [44008] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3184), 1, + anon_sym_SLASH, + ACTIONS(3192), 1, + anon_sym_CARET, + ACTIONS(3194), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(2617), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2693), 6, + ACTIONS(2619), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, sym_identifier, - [43765] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(3204), 1, - anon_sym___attribute__, - STATE(1088), 1, - sym_attribute_specifier, - STATE(1180), 1, - sym_enumerator_list, - ACTIONS(3202), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3200), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [43814] = 21, + [44077] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2699), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3178), 1, + ACTIONS(3184), 1, anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3198), 1, - anon_sym_QMARK, - STATE(810), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(2617), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2697), 6, + ACTIONS(2619), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [43891] = 12, + [44144] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, + ACTIONS(3184), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3184), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2554), 5, + ACTIONS(2617), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 14, + ACTIONS(2619), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110680,42 +111115,45 @@ 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, - [43950] = 11, + [44209] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, + ACTIONS(3184), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 5, + ACTIONS(3198), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3200), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3202), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2617), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 16, + ACTIONS(2619), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110726,390 +111164,277 @@ 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_QMARK, sym_identifier, - [44007] = 21, + [44272] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3178), 1, + ACTIONS(2617), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3184), 1, anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP, ACTIONS(3190), 1, anon_sym_PIPE, ACTIONS(3192), 1, anon_sym_CARET, ACTIONS(3194), 1, - anon_sym_AMP_AMP, - ACTIONS(3196), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3198), 1, - anon_sym_QMARK, - ACTIONS(3209), 1, - aux_sym_preproc_elif_token1, - STATE(810), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3174), 2, + ACTIONS(3180), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3176), 2, + ACTIONS(3182), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3180), 2, + ACTIONS(3196), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3198), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3182), 2, + ACTIONS(3200), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3184), 2, + ACTIONS(3202), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3207), 6, + ACTIONS(2619), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, sym_identifier, - [44084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3211), 1, - anon_sym_typedef, - ACTIONS(2657), 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, - [44126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3215), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3213), 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, - [44166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3217), 1, - anon_sym_typedef, - ACTIONS(2657), 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, - [44208] = 10, + [44343] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2617), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 16, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2619), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_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, - [44262] = 18, + [44407] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3241), 1, + anon_sym_QMARK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 8, + ACTIONS(2699), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [44332] = 20, + [44481] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2697), 6, + ACTIONS(2619), 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, - [44406] = 17, + anon_sym_QMARK, + [44549] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3227), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3241), 1, + anon_sym_QMARK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 9, + ACTIONS(2689), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [44474] = 4, + [44623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2665), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_typedef, - ACTIONS(2657), 30, + ACTIONS(2663), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111140,115 +111465,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44516] = 17, + [44665] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_PIPE, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2556), 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, - [44584] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, + ACTIONS(2617), 2, anon_sym_PIPE, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, anon_sym_AMP, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 10, + ACTIONS(2619), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [44650] = 4, + [44727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(1352), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3247), 1, - anon_sym_typedef, - ACTIONS(2657), 30, + anon_sym_LBRACE, + ACTIONS(1350), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111279,62 +111550,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44692] = 15, + [44767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2617), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2619), 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, + [44821] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 10, + ACTIONS(2703), 6, 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, - [44756] = 3, + [44895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 2, + ACTIONS(2665), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3249), 30, + ACTIONS(3245), 1, + anon_sym_typedef, + ACTIONS(2663), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111365,61 +111686,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44796] = 14, + [44937] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, + ACTIONS(2617), 1, + anon_sym_PIPE, ACTIONS(3221), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3235), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 12, + ACTIONS(2619), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [44858] = 3, + [45005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 2, + ACTIONS(2665), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1390), 30, + ACTIONS(3247), 1, + anon_sym_typedef, + ACTIONS(2663), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111450,81 +111775,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44898] = 12, + [45047] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 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, - [44956] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2554), 4, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 16, + ACTIONS(2619), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -111534,21 +111816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [45012] = 4, + [45105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2665), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3253), 1, + ACTIONS(3249), 1, anon_sym_typedef, - ACTIONS(2657), 30, + ACTIONS(2663), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111579,121 +111859,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45054] = 20, + [45147] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, + ACTIONS(2617), 1, + anon_sym_PIPE, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2693), 6, + ACTIONS(2619), 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, - [45128] = 20, + anon_sym_QMARK, + [45213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3251), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45253] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2681), 6, + ACTIONS(2619), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [45202] = 3, + anon_sym_QMARK, + [45323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 2, + ACTIONS(3257), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2875), 30, + ACTIONS(3255), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111724,46 +112035,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45242] = 15, + [45363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_LPAREN2, - ACTIONS(2091), 1, - anon_sym_STAR, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym__declarator, - STATE(1619), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(2001), 1, - sym_ms_based_modifier, - ACTIONS(3257), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(3259), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2881), 30, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -111772,26 +112067,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45305] = 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 1, - anon_sym___attribute__, - STATE(1083), 1, - sym_attribute_specifier, - ACTIONS(3261), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2665), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3259), 23, + ACTIONS(3261), 1, + anon_sym_typedef, + ACTIONS(2663), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111809,88 +112105,122 @@ 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, - [45348] = 20, + [45445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, - anon_sym_AMP_AMP, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3278), 1, - anon_sym_CARET, - ACTIONS(3280), 1, - anon_sym_AMP, - ACTIONS(3290), 1, - anon_sym_QMARK, - STATE(964), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2733), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(2617), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(2619), 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, - ACTIONS(3288), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2697), 5, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [45501] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3267), 1, + anon_sym___attribute__, + STATE(1115), 1, + sym_attribute_specifier, + ACTIONS(3265), 6, 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_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3263), 23, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [45421] = 10, + [45544] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 6, + ACTIONS(2617), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 15, + ACTIONS(2619), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111906,74 +112236,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [45474] = 20, + [45597] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, - anon_sym_SLASH, ACTIONS(3272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, - anon_sym_AMP_AMP, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3278), 1, - anon_sym_CARET, - ACTIONS(3280), 1, - anon_sym_AMP, - ACTIONS(3290), 1, - anon_sym_QMARK, - STATE(964), 1, + anon_sym_SLASH, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2617), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3288), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 5, + ACTIONS(2619), 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, - [45547] = 5, + [45652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3280), 1, anon_sym___attribute__, - STATE(1082), 1, + STATE(1101), 1, sym_attribute_specifier, - ACTIONS(3294), 6, + ACTIONS(3278), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3292), 23, + ACTIONS(3276), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -111997,135 +112318,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [45590] = 11, + [45695] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(964), 1, + ACTIONS(3283), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3285), 1, + anon_sym_AMP_AMP, + ACTIONS(3287), 1, + anon_sym_PIPE, + ACTIONS(3289), 1, + anon_sym_CARET, + ACTIONS(3291), 1, + anon_sym_AMP, + ACTIONS(3301), 1, + anon_sym_QMARK, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 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, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3295), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(2703), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_identifier, - [45645] = 20, + [45768] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, - anon_sym_SLASH, ACTIONS(3272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, - anon_sym_AMP_AMP, - ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3287), 1, anon_sym_PIPE, - ACTIONS(3278), 1, + ACTIONS(3289), 1, anon_sym_CARET, - ACTIONS(3280), 1, + ACTIONS(3291), 1, anon_sym_AMP, - ACTIONS(3290), 1, - anon_sym_QMARK, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2681), 5, + ACTIONS(2619), 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, - [45718] = 12, + [45835] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3288), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2554), 4, + ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 13, + ACTIONS(2619), 13, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112139,12 +112466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [45775] = 3, + [45892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3305), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3299), 30, + ACTIONS(3303), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -112175,242 +112502,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45814] = 14, + [45931] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(964), 1, - sym_argument_list, - ACTIONS(2554), 2, + ACTIONS(3285), 1, + anon_sym_AMP_AMP, + ACTIONS(3287), 1, anon_sym_PIPE, + ACTIONS(3289), 1, + anon_sym_CARET, + ACTIONS(3291), 1, anon_sym_AMP, - ACTIONS(2733), 2, + STATE(965), 1, + sym_argument_list, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3284), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 11, + ACTIONS(2619), 7, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [45875] = 15, + [46000] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - STATE(964), 1, - sym_argument_list, - ACTIONS(2554), 2, + ACTIONS(3283), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3285), 1, + anon_sym_AMP_AMP, + ACTIONS(3287), 1, anon_sym_PIPE, + ACTIONS(3289), 1, + anon_sym_CARET, + ACTIONS(3291), 1, anon_sym_AMP, - ACTIONS(2733), 2, + ACTIONS(3301), 1, + anon_sym_QMARK, + STATE(965), 1, + sym_argument_list, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 9, + ACTIONS(3206), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [45938] = 16, + [46073] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3280), 1, + ACTIONS(3283), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3285), 1, + anon_sym_AMP_AMP, + ACTIONS(3287), 1, + anon_sym_PIPE, + ACTIONS(3289), 1, + anon_sym_CARET, + ACTIONS(3291), 1, anon_sym_AMP, - STATE(964), 1, + ACTIONS(3301), 1, + anon_sym_QMARK, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 9, + ACTIONS(2699), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [46003] = 17, + [46146] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3278), 1, + ACTIONS(3283), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3285), 1, + anon_sym_AMP_AMP, + ACTIONS(3287), 1, + anon_sym_PIPE, + ACTIONS(3289), 1, anon_sym_CARET, - ACTIONS(3280), 1, + ACTIONS(3291), 1, anon_sym_AMP, - STATE(964), 1, + ACTIONS(3301), 1, + anon_sym_QMARK, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 8, + ACTIONS(2689), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [46070] = 17, + [46219] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3278), 1, + ACTIONS(3289), 1, anon_sym_CARET, - ACTIONS(3280), 1, + ACTIONS(3291), 1, anon_sym_AMP, - STATE(964), 1, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 8, + ACTIONS(2619), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112419,21 +112762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [46137] = 5, + [46286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, + ACTIONS(3311), 1, anon_sym___attribute__, STATE(1096), 1, sym_attribute_specifier, - ACTIONS(3305), 6, + ACTIONS(3309), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3303), 23, + ACTIONS(3307), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -112457,141 +112800,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [46180] = 20, + [46329] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2087), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2089), 1, + anon_sym_STAR, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2871), 1, + anon_sym_LBRACK, + STATE(1484), 1, + sym__declarator, + STATE(1643), 1, + sym__abstract_declarator, + STATE(1644), 1, + sym_parameter_list, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(3314), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1645), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46392] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, - anon_sym_SLASH, ACTIONS(3272), 1, + anon_sym_SLASH, + ACTIONS(3291), 1, + anon_sym_AMP, + STATE(965), 1, + sym_argument_list, + ACTIONS(2763), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2765), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3270), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3295), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3297), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3299), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2619), 9, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, - ACTIONS(3274), 1, anon_sym_AMP_AMP, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3278), 1, anon_sym_CARET, - ACTIONS(3280), 1, - anon_sym_AMP, - ACTIONS(3290), 1, anon_sym_QMARK, - STATE(964), 1, + sym_identifier, + [46457] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, + anon_sym_LBRACK, + ACTIONS(3272), 1, + anon_sym_SLASH, + STATE(965), 1, sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2617), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2693), 5, + ACTIONS(2619), 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, - [46253] = 18, + [46520] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2731), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3272), 1, anon_sym_SLASH, - ACTIONS(3274), 1, - anon_sym_AMP_AMP, - ACTIONS(3276), 1, + STATE(965), 1, + sym_argument_list, + ACTIONS(2617), 2, anon_sym_PIPE, - ACTIONS(3278), 1, - anon_sym_CARET, - ACTIONS(3280), 1, anon_sym_AMP, - STATE(964), 1, - sym_argument_list, - ACTIONS(2733), 2, + ACTIONS(2763), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2735), 2, + ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3268), 2, + ACTIONS(3270), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3284), 2, + ACTIONS(3274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3286), 2, + ACTIONS(3297), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3288), 2, + ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 7, + ACTIONS(2619), 11, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [46322] = 14, + [46581] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1483), 1, + STATE(1484), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1303), 2, + STATE(1188), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1319), 2, + STATE(1326), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -112607,37 +113038,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46382] = 14, + [46641] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1499), 1, + STATE(1484), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1189), 2, + STATE(1302), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1323), 2, + STATE(1326), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -112653,42 +113084,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46442] = 14, + [46701] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(2863), 1, sym_identifier, ACTIONS(3316), 1, anon_sym_LPAREN2, ACTIONS(3318), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1523), 1, - sym__field_declarator, - STATE(1994), 1, + STATE(1483), 1, + sym__declarator, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1303), 2, + STATE(1185), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1321), 2, + STATE(1322), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112699,37 +113130,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46502] = 14, + [46761] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3324), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1523), 1, + STATE(1534), 1, sym__field_declarator, - STATE(1994), 1, + STATE(2107), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1187), 2, + STATE(1302), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1321), 2, + STATE(1318), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1570), 5, + STATE(1589), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -112745,42 +113176,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46562] = 14, + [46821] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(2863), 1, sym_identifier, ACTIONS(3316), 1, anon_sym_LPAREN2, ACTIONS(3318), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1530), 1, - sym__field_declarator, - STATE(1994), 1, + STATE(1502), 1, + sym__declarator, + STATE(1941), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1303), 2, + STATE(1302), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1320), 2, + STATE(1324), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112791,42 +113222,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46622] = 14, + [46881] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3324), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1490), 1, - sym__declarator, - STATE(2001), 1, + STATE(1527), 1, + sym__field_declarator, + STATE(2107), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1183), 2, + STATE(1187), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + STATE(1325), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112837,42 +113268,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46682] = 14, + [46941] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3324), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1490), 1, - sym__declarator, - STATE(2001), 1, + STATE(1522), 1, + sym__field_declarator, + STATE(2107), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1303), 2, + STATE(1191), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + STATE(1319), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -112883,37 +113314,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46742] = 14, + [47001] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3324), 1, anon_sym_STAR, - STATE(1310), 1, + STATE(1316), 1, sym_ms_unaligned_ptr_modifier, - STATE(1524), 1, + STATE(1527), 1, sym__field_declarator, - STATE(1994), 1, + STATE(2107), 1, sym_ms_based_modifier, - ACTIONS(2851), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1185), 2, + STATE(1302), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1318), 2, + STATE(1325), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2849), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1570), 5, + STATE(1589), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -112929,626 +113360,585 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46802] = 22, + [47061] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3320), 1, + ACTIONS(3326), 1, anon_sym_COMMA, - ACTIONS(3322), 1, - anon_sym_RBRACE, - STATE(810), 1, + ACTIONS(3328), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - STATE(1796), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2534), 2, + STATE(1752), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46877] = 22, + [47136] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3330), 1, anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3332), 1, + anon_sym_RBRACE, + STATE(824), 1, sym_argument_list, - STATE(1789), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, + STATE(1823), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46952] = 22, + [47211] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3326), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(3334), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - STATE(1824), 1, + STATE(1825), 1, aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47027] = 22, + [47286] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3330), 1, - anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - STATE(1748), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47102] = 22, + ACTIONS(3336), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [47357] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3338), 1, anon_sym_COMMA, - ACTIONS(3334), 1, + ACTIONS(3340), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - STATE(1794), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, + STATE(1808), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47177] = 22, + [47432] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3330), 1, + ACTIONS(3326), 1, anon_sym_COMMA, - ACTIONS(3336), 1, + ACTIONS(3342), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - STATE(1818), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2534), 2, + STATE(1804), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47252] = 22, + [47507] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3324), 1, + ACTIONS(3344), 1, anon_sym_COMMA, - ACTIONS(3338), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3346), 1, + anon_sym_RBRACE, + STATE(824), 1, sym_argument_list, - STATE(1817), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2534), 2, + STATE(1775), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47327] = 21, + [47582] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3338), 1, anon_sym_COMMA, - STATE(810), 1, + ACTIONS(3348), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + STATE(1764), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3342), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47400] = 20, + [47657] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3326), 1, + anon_sym_COMMA, + ACTIONS(3350), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + STATE(1807), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3344), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [47471] = 22, + [47732] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3346), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RBRACE, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - STATE(1813), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47546] = 19, + ACTIONS(3354), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47805] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3239), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3241), 1, + anon_sym_QMARK, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3356), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2556), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [47614] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 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, - [47670] = 13, + [47877] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -113559,15 +113949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(2057), 1, sym_identifier, - ACTIONS(3372), 1, + ACTIONS(3358), 1, anon_sym_enum, STATE(1312), 1, sym__type_specifier, - STATE(1325), 1, + STATE(1323), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2063), 1, + STATE(2184), 1, sym_type_descriptor, - STATE(1263), 2, + STATE(1276), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -113575,93 +113965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 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, - [47726] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1453), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 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, - [47782] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1452), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -113677,251 +113981,399 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47838] = 16, + [47933] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, + anon_sym_AMP_AMP, + ACTIONS(3370), 1, + anon_sym_PIPE, + ACTIONS(3372), 1, + anon_sym_CARET, + ACTIONS(3374), 1, + anon_sym_AMP, + ACTIONS(3384), 1, + anon_sym_QMARK, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2703), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3378), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3380), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3382), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48005] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3350), 2, + ACTIONS(3241), 1, + anon_sym_QMARK, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3386), 1, + anon_sym_SEMI, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 6, - anon_sym_DOT_DOT_DOT, + [48077] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, anon_sym_CARET, - anon_sym_RBRACK, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_QMARK, - [47900] = 17, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3388), 1, + anon_sym_SEMI, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48149] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(3390), 1, + sym_identifier, + ACTIONS(3394), 1, + sym_primitive_type, + STATE(1357), 1, + sym__type_specifier, + STATE(1415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1451), 1, + sym__type_definition_type, + STATE(1287), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48205] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3362), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3241), 1, + anon_sym_QMARK, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [47964] = 22, + [48277] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3380), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3384), 1, - anon_sym_RBRACK, - ACTIONS(3386), 1, + ACTIONS(3241), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3398), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48038] = 18, + [48349] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2554), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(2617), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(2619), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [48104] = 21, + [48403] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3400), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3402), 1, + anon_sym_RBRACK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48176] = 13, + [48477] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -113930,25 +114382,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(3390), 1, sym_identifier, - ACTIONS(3378), 1, + ACTIONS(3394), 1, sym_primitive_type, - STATE(1395), 1, + STATE(1357), 1, sym__type_specifier, - STATE(1442), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1447), 1, + STATE(1453), 1, sym__type_definition_type, - STATE(1280), 2, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -113964,177 +114416,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48232] = 21, + [48533] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3390), 1, + ACTIONS(3404), 1, anon_sym_SEMI, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48304] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2126), 1, - sym_type_descriptor, - STATE(1290), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 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, - [48360] = 18, + [48605] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3358), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3239), 1, anon_sym_AMP, - STATE(810), 1, + ACTIONS(3241), 1, + anon_sym_QMARK, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3206), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48675] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, + anon_sym_SLASH, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 5, + ACTIONS(2617), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2619), 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, - [48426] = 11, + [48731] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2554), 6, + ACTIONS(2617), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2556), 12, + ACTIONS(2619), 12, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114147,7 +114601,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [48478] = 13, + [48783] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_QMARK, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3406), 1, + anon_sym_SEMI, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48855] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_QMARK, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_RPAREN, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48927] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -114156,25 +114712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(3390), 1, sym_identifier, - ACTIONS(3378), 1, + ACTIONS(3394), 1, sym_primitive_type, - STATE(1395), 1, + STATE(1357), 1, sym__type_specifier, - STATE(1442), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1450), 1, + STATE(1448), 1, sym__type_definition_type, - STATE(1280), 2, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114190,333 +114746,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48534] = 21, + [48983] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3392), 1, + ACTIONS(3410), 1, anon_sym_SEMI, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48606] = 21, + [49055] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3241), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3412), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48678] = 21, + [49127] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3394), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2689), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48750] = 15, + [49199] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(2057), 1, + sym_identifier, + STATE(1312), 1, + sym__type_specifier, + STATE(1323), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2054), 1, + sym_type_descriptor, + STATE(1277), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [49255] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2534), 1, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2819), 1, + ACTIONS(2845), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - STATE(810), 1, + ACTIONS(3368), 1, + anon_sym_AMP_AMP, + ACTIONS(3370), 1, + anon_sym_PIPE, + ACTIONS(3372), 1, + anon_sym_CARET, + ACTIONS(3374), 1, + anon_sym_AMP, + STATE(824), 1, sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3366), 2, + ACTIONS(3376), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2556), 8, + ACTIONS(2619), 4, 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, - [48810] = 21, + [49323] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3396), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3414), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48882] = 20, + [49395] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3416), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48952] = 13, + [49467] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(3390), 1, + sym_identifier, + ACTIONS(3394), 1, + sym_primitive_type, + STATE(1357), 1, + sym__type_specifier, + STATE(1415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1449), 1, + sym__type_definition_type, + STATE(1287), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [49523] = 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(2057), 1, - sym_identifier, - ACTIONS(3372), 1, + ACTIONS(1905), 1, anon_sym_enum, - STATE(1312), 1, + ACTIONS(3390), 1, + sym_identifier, + ACTIONS(3394), 1, + sym_primitive_type, + STATE(1357), 1, sym__type_specifier, - STATE(1325), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2143), 1, - sym_type_descriptor, - STATE(1263), 2, + STATE(1456), 1, + sym__type_definition_type, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114532,252 +115179,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49008] = 20, + [49579] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3207), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49078] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3400), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3418), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49150] = 21, + [49651] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3402), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3420), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49222] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1455), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 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, - [49278] = 20, + [49723] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3404), 2, + ACTIONS(3422), 2, anon_sym_COMMA, anon_sym_RPAREN, - [49348] = 13, + [49793] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -114786,25 +115340,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(3390), 1, sym_identifier, - ACTIONS(3378), 1, + ACTIONS(3394), 1, sym_primitive_type, - STATE(1395), 1, + STATE(1357), 1, sym__type_specifier, - STATE(1442), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1456), 1, + STATE(1450), 1, sym__type_definition_type, - STATE(1280), 2, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114820,85 +115374,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49404] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3406), 1, - anon_sym_RPAREN, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49476] = 13, + [49849] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3390), 1, sym_identifier, - STATE(1312), 1, + ACTIONS(3394), 1, + sym_primitive_type, + STATE(1357), 1, sym__type_specifier, - STATE(1325), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1933), 1, - sym_type_descriptor, - STATE(1290), 2, + STATE(1455), 1, + sym__type_definition_type, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114914,7 +115417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49532] = 13, + [49905] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -114923,25 +115426,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(3390), 1, sym_identifier, - ACTIONS(3378), 1, + ACTIONS(3394), 1, sym_primitive_type, - STATE(1395), 1, + STATE(1357), 1, sym__type_specifier, - STATE(1442), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1448), 1, + STATE(1454), 1, sym__type_definition_type, - STATE(1280), 2, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -114957,58 +115460,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49588] = 21, + [49961] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2617), 2, anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3378), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3380), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3382), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2619), 8, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3408), 1, - anon_sym_SEMI, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, + [50021] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, + anon_sym_SLASH, + STATE(824), 1, + sym_argument_list, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2617), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49660] = 13, + ACTIONS(2619), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [50083] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -115023,11 +115566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1312), 1, sym__type_specifier, - STATE(1325), 1, + STATE(1323), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2022), 1, + STATE(2077), 1, sym_type_descriptor, - STATE(1290), 2, + STATE(1277), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -115035,7 +115578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115051,100 +115594,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49716] = 21, + [50139] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3410), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49788] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2554), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2556), 12, + ACTIONS(2619), 6, 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, - [49842] = 13, + [50203] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -115153,17 +115650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, ACTIONS(2057), 1, sym_identifier, - ACTIONS(3372), 1, - anon_sym_enum, STATE(1312), 1, sym__type_specifier, - STATE(1325), 1, + STATE(1323), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2214), 1, + STATE(2052), 1, sym_type_descriptor, - STATE(1263), 2, + STATE(1277), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -115171,7 +115668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115187,211 +115684,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49898] = 21, + [50259] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3412), 1, - anon_sym_SEMI, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, + ACTIONS(2544), 1, anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49970] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3414), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50042] = 21, + ACTIONS(2619), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [50325] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3424), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50114] = 21, + [50397] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3418), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(2699), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50186] = 13, + [50469] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(3390), 1, + sym_identifier, + ACTIONS(3394), 1, + sym_primitive_type, + STATE(1357), 1, + sym__type_specifier, + STATE(1415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1457), 1, + sym__type_definition_type, + STATE(1287), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [50525] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(2057), 1, + sym_identifier, + STATE(1312), 1, + sym__type_specifier, + STATE(1323), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2182), 1, + sym_type_descriptor, + STATE(1277), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [50581] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -115400,17 +115929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, ACTIONS(2057), 1, sym_identifier, + ACTIONS(3358), 1, + anon_sym_enum, STATE(1312), 1, sym__type_specifier, - STATE(1325), 1, + STATE(1323), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1999), 1, + STATE(2137), 1, sym_type_descriptor, - STATE(1290), 2, + STATE(1276), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1903), 4, @@ -115418,7 +115947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115434,482 +115963,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50242] = 21, + [50637] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3420), 1, - anon_sym_SEMI, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50314] = 20, + ACTIONS(3426), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50707] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3428), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3422), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50384] = 21, + [50779] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_DOT, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3424), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50456] = 21, + ACTIONS(2619), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [50845] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3426), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3430), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50528] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, - sym__type_specifier, - STATE(1442), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1451), 1, - sym__type_definition_type, - STATE(1280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 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, - [50584] = 20, + [50917] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3428), 2, + ACTIONS(3432), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [50654] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2693), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50726] = 20, + anon_sym_SEMI, + [50987] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3430), 2, + ACTIONS(3434), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50796] = 21, + [51057] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3432), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3436), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50868] = 13, + [51129] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, + STATE(1312), 1, sym__type_specifier, - STATE(1442), 1, + STATE(1323), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1446), 1, - sym__type_definition_type, - STATE(1280), 2, + STATE(2014), 1, + sym_type_descriptor, + STATE(1277), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + ACTIONS(1903), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115925,85 +116357,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50924] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3434), 1, - anon_sym_RPAREN, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50996] = 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(1905), 1, - anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(2057), 1, sym_identifier, - ACTIONS(3378), 1, - sym_primitive_type, - STATE(1395), 1, + ACTIONS(3358), 1, + anon_sym_enum, + STATE(1312), 1, sym__type_specifier, - STATE(1442), 1, + STATE(1323), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1449), 1, - sym__type_definition_type, - STATE(1280), 2, + STATE(2217), 1, + sym_type_descriptor, + STATE(1276), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + ACTIONS(1903), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -116019,237 +116400,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51052] = 21, + [51241] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_SEMI, - STATE(810), 1, + ACTIONS(3438), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51313] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51124] = 21, + ACTIONS(3440), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51383] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3438), 1, + ACTIONS(3442), 1, anon_sym_SEMI, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51196] = 20, + [51455] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3444), 1, + anon_sym_SEMI, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51266] = 21, + [51527] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, + ACTIONS(3352), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3446), 1, anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51599] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51338] = 13, + ACTIONS(3448), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51669] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3390), 1, sym_identifier, - STATE(1312), 1, + ACTIONS(3394), 1, + sym_primitive_type, + STATE(1357), 1, sym__type_specifier, - STATE(1325), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2139), 1, - sym_type_descriptor, - STATE(1290), 2, + STATE(1447), 1, + sym__type_definition_type, + STATE(1287), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -116265,813 +116747,878 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51394] = 21, + [51725] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3444), 1, - anon_sym_RPAREN, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51466] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2534), 1, - anon_sym_DASH_GT, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(2819), 1, - anon_sym_DOT, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2697), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51538] = 20, + ACTIONS(3450), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51795] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3452), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3446), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [51608] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3372), 1, - anon_sym_enum, - STATE(1315), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 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, - [51661] = 20, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51867] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2350), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51730] = 20, + [51936] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3448), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3454), 1, + anon_sym_COLON, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51799] = 20, + [52005] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3456), 1, + anon_sym_RBRACK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51868] = 20, + [52074] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3450), 1, - anon_sym_COLON, - STATE(810), 1, + ACTIONS(3458), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51937] = 20, + [52143] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3452), 1, + ACTIONS(3460), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52006] = 20, + [52212] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2314), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52075] = 20, + [52281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3454), 1, - anon_sym_COMMA, - STATE(810), 1, + ACTIONS(3462), 1, + anon_sym_RPAREN, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52144] = 20, + [52350] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3456), 1, + ACTIONS(3464), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52213] = 20, + [52419] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2346), 1, + anon_sym_RBRACK, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - ACTIONS(3458), 1, - anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52282] = 20, + [52488] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(3140), 1, + anon_sym_STAR, + ACTIONS(3144), 1, + sym_primitive_type, + STATE(1548), 1, + sym__type_declarator, + STATE(2005), 1, + sym_ms_based_modifier, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3142), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1607), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52541] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - ACTIONS(3460), 1, - anon_sym_RPAREN, - STATE(810), 1, + ACTIONS(3466), 1, + anon_sym_RBRACK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52351] = 20, + [52610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2633), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2532), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3221), 1, + anon_sym_COLON, + ACTIONS(3468), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2631), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [52649] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2057), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_enum, + STATE(1310), 1, + sym__type_specifier, + STATE(1323), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52702] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1905), 1, + anon_sym_enum, + ACTIONS(2057), 1, + sym_identifier, + STATE(1310), 1, + sym__type_specifier, + STATE(1323), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1083), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52755] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2312), 1, + anon_sym_RBRACK, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2735), 1, + anon_sym_LPAREN2, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - ACTIONS(3462), 1, - anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52420] = 20, + [52824] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, + ACTIONS(2348), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52489] = 12, + [52893] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1546), 1, + STATE(1542), 1, sym__type_declarator, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -117087,154 +117634,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52542] = 20, + [52946] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2342), 1, + anon_sym_RBRACK, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(3364), 1, + anon_sym_SLASH, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, + anon_sym_AMP_AMP, + ACTIONS(3370), 1, + anon_sym_PIPE, + ACTIONS(3372), 1, + anon_sym_CARET, + ACTIONS(3374), 1, + anon_sym_AMP, + ACTIONS(3384), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3360), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3362), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3376), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3378), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3380), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3382), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53015] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3464), 1, + ACTIONS(3471), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53084] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_QMARK, + ACTIONS(3473), 1, + anon_sym_COLON, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3233), 2, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52611] = 20, + [53153] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3475), 1, + anon_sym_RBRACK, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52680] = 20, + [53222] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3382), 1, + ACTIONS(3241), 1, + anon_sym_QMARK, + ACTIONS(3477), 1, + anon_sym_COLON, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53291] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, + anon_sym_SLASH, + ACTIONS(3231), 1, anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_QMARK, - STATE(810), 1, + ACTIONS(3479), 1, + anon_sym_COLON, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52749] = 12, + [53360] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -117243,23 +117937,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1905), 1, anon_sym_enum, - ACTIONS(3374), 1, + ACTIONS(3390), 1, sym_identifier, - ACTIONS(3378), 1, + ACTIONS(3394), 1, sym_primitive_type, - STATE(1387), 1, + STATE(1397), 1, sym__type_specifier, - STATE(1442), 1, + STATE(1415), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3376), 4, + ACTIONS(3392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1115), 5, + STATE(1083), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -117275,318 +117969,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52802] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3124), 1, - sym_identifier, - ACTIONS(3126), 1, - anon_sym_LPAREN2, - ACTIONS(3128), 1, - anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1549), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 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, - [52855] = 20, + [53413] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3466), 1, + ACTIONS(3481), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52924] = 20, + [53482] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(2294), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52993] = 20, + [53551] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3483), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53062] = 20, + [53620] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3470), 1, + ACTIONS(3485), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53131] = 20, + [53689] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3241), 1, anon_sym_QMARK, - ACTIONS(3472), 1, - anon_sym_RBRACK, - STATE(810), 1, + ACTIONS(3487), 1, + anon_sym_COLON, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53200] = 12, + [53758] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1542), 1, + STATE(1538), 1, sym__type_declarator, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -117602,640 +118255,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53253] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2322), 1, - anon_sym_RBRACK, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3364), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3366), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3370), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53322] = 20, + [53811] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3474), 1, + ACTIONS(3489), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53391] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1315), 1, - sym__type_specifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1115), 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, - [53444] = 20, + [53880] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2336), 1, + anon_sym_RBRACK, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - ACTIONS(3476), 1, - anon_sym_RBRACK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53513] = 20, + [53949] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3478), 1, + ACTIONS(3491), 1, anon_sym_COLON, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53582] = 20, + [54018] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 1, + ACTIONS(2292), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53651] = 20, + [54087] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3480), 1, - anon_sym_COMMA, - STATE(810), 1, + ACTIONS(3493), 1, + anon_sym_COLON, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53720] = 20, + [54156] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_QMARK, - ACTIONS(3482), 1, - anon_sym_COLON, - STATE(810), 1, + ACTIONS(3495), 1, + anon_sym_COMMA, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3237), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53789] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2631), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3484), 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(2629), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [53828] = 20, + [54225] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2310), 1, anon_sym_RBRACK, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2735), 1, anon_sym_LPAREN2, - ACTIONS(3354), 1, + ACTIONS(3364), 1, anon_sym_SLASH, - ACTIONS(3356), 1, + ACTIONS(3366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3358), 1, + ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3360), 1, + ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3362), 1, + ACTIONS(3374), 1, anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, + ACTIONS(3384), 1, anon_sym_QMARK, - STATE(810), 1, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3362), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3376), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3378), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3380), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53897] = 20, + [54294] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2540), 1, anon_sym_LPAREN2, - ACTIONS(2532), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, ACTIONS(3221), 1, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, - anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, ACTIONS(3231), 1, - anon_sym_AMP, - ACTIONS(3241), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3487), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53966] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3225), 1, + ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3227), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3229), 1, + ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_AMP, ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - ACTIONS(3489), 1, - anon_sym_COLON, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3239), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54035] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_LPAREN2, - ACTIONS(3354), 1, - anon_sym_SLASH, - ACTIONS(3356), 1, - anon_sym_AMP_AMP, - ACTIONS(3358), 1, - anon_sym_PIPE, - ACTIONS(3360), 1, - anon_sym_CARET, - ACTIONS(3362), 1, - anon_sym_AMP, - ACTIONS(3382), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3386), 1, anon_sym_QMARK, - ACTIONS(3491), 1, - anon_sym_RBRACK, - STATE(810), 1, + ACTIONS(3497), 1, + anon_sym_COMMA, + STATE(824), 1, sym_argument_list, - ACTIONS(2534), 2, + ACTIONS(2544), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2540), 2, + ACTIONS(2585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3350), 2, + ACTIONS(3217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3352), 2, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3364), 2, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3366), 2, + ACTIONS(3225), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3368), 2, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3370), 2, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54104] = 8, + [54363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(3493), 1, - anon_sym_COLON, - STATE(1091), 1, - sym_attribute_specifier, - STATE(1307), 1, - sym_enumerator_list, - ACTIONS(3159), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1316), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3501), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(3157), 16, + ACTIONS(3506), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1302), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3503), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3499), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118252,72 +118682,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54148] = 19, + [54405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(2532), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3509), 1, + anon_sym_SEMI, + ACTIONS(2496), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(3225), 1, - anon_sym_AMP_AMP, - ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3229), 1, - anon_sym_CARET, - ACTIONS(3231), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_QMARK, - STATE(810), 1, - sym_argument_list, - ACTIONS(2534), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2540), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2498), 18, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3235), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3237), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3239), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54214] = 7, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [54441] = 8, ACTIONS(3), 1, sym_comment, - STATE(1310), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3497), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3162), 1, + anon_sym_LBRACE, + ACTIONS(3511), 1, + anon_sym_COLON, + STATE(1085), 1, + sym_attribute_specifier, + STATE(1309), 1, + sym_enumerator_list, + ACTIONS(3157), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1303), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3499), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3495), 16, + anon_sym_LBRACK, + ACTIONS(3155), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118334,25 +118750,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54256] = 7, + [54485] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3164), 1, + ACTIONS(3162), 1, anon_sym_LBRACE, - STATE(1088), 1, + STATE(1095), 1, sym_attribute_specifier, - STATE(1306), 1, + STATE(1307), 1, sym_enumerator_list, - ACTIONS(3202), 6, + ACTIONS(3212), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3200), 16, + ACTIONS(3210), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118369,53 +118785,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54298] = 4, + [54527] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 1, - anon_sym_SEMI, - ACTIONS(2514), 7, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(3221), 1, anon_sym_SLASH, + ACTIONS(3231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3233), 1, + anon_sym_AMP_AMP, + ACTIONS(3235), 1, anon_sym_PIPE, + ACTIONS(3237), 1, + anon_sym_CARET, + ACTIONS(3239), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2516), 18, - anon_sym_LPAREN2, + ACTIONS(3241), 1, + anon_sym_QMARK, + STATE(824), 1, + sym_argument_list, + ACTIONS(2544), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3219), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3225), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [54334] = 5, + [54593] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1096), 1, + STATE(1115), 1, sym_attribute_specifier, - ACTIONS(3305), 6, + ACTIONS(3265), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3303), 16, + ACTIONS(3263), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118432,21 +118863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54370] = 5, + [54629] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1083), 1, + STATE(1101), 1, sym_attribute_specifier, - ACTIONS(3261), 6, + ACTIONS(3278), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3259), 16, + ACTIONS(3276), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118463,21 +118894,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54406] = 5, + [54665] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1082), 1, + STATE(1096), 1, sym_attribute_specifier, - ACTIONS(3294), 6, + ACTIONS(3309), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3292), 16, + ACTIONS(3307), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118494,34 +118925,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54442] = 11, + [54701] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2334), 1, + ACTIONS(2362), 1, anon_sym_LPAREN2, - ACTIONS(2336), 1, + ACTIONS(2364), 1, anon_sym_STAR, - ACTIONS(2853), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - STATE(1621), 1, + STATE(1641), 1, sym__abstract_declarator, - STATE(1653), 1, + STATE(1644), 1, sym_parameter_list, - STATE(1313), 2, + STATE(1317), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2847), 3, + ACTIONS(3513), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1650), 4, + STATE(1645), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3507), 8, + ACTIONS(3515), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118530,53 +118961,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54489] = 3, + [54748] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3509), 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, + ACTIONS(47), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 2, + ACTIONS(2362), 1, anon_sym_LPAREN2, + ACTIONS(2364), 1, anon_sym_STAR, - ACTIONS(3513), 21, + ACTIONS(2871), 1, + anon_sym_LBRACK, + STATE(1643), 1, + sym__abstract_declarator, + STATE(1644), 1, + sym_parameter_list, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3314), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1645), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3515), 8, 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, @@ -118584,22 +118997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54551] = 11, + [54795] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2334), 1, + ACTIONS(2362), 1, anon_sym_LPAREN2, - ACTIONS(2336), 1, + ACTIONS(2364), 1, anon_sym_STAR, - ACTIONS(2853), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - STATE(1627), 1, + STATE(1639), 1, sym__abstract_declarator, - STATE(1653), 1, + STATE(1644), 1, sym_parameter_list, STATE(1314), 2, sym_type_qualifier, @@ -118608,12 +119019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1650), 4, + STATE(1645), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3507), 8, + ACTIONS(3515), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118622,35 +119033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54598] = 11, + [54842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2334), 1, + ACTIONS(3521), 2, anon_sym_LPAREN2, - ACTIONS(2336), 1, anon_sym_STAR, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1619), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3257), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3507), 8, + ACTIONS(3519), 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, @@ -118658,34 +119059,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54645] = 11, + sym_primitive_type, + sym_identifier, + [54873] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2334), 1, + ACTIONS(2362), 1, anon_sym_LPAREN2, - ACTIONS(2336), 1, + ACTIONS(2364), 1, anon_sym_STAR, - ACTIONS(2853), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - STATE(1646), 1, + STATE(1635), 1, sym__abstract_declarator, - STATE(1653), 1, + STATE(1644), 1, sym_parameter_list, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3519), 3, + ACTIONS(3523), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1650), 4, + STATE(1645), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3507), 8, + ACTIONS(3515), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118694,35 +119097,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54692] = 11, + [54920] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2334), 1, + ACTIONS(2362), 1, anon_sym_LPAREN2, - ACTIONS(2336), 1, + ACTIONS(2364), 1, anon_sym_STAR, - ACTIONS(2853), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - STATE(1633), 1, + STATE(1637), 1, sym__abstract_declarator, - STATE(1653), 1, + STATE(1644), 1, sym_parameter_list, - STATE(1316), 2, + STATE(1311), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3521), 3, + ACTIONS(2865), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1650), 4, + STATE(1645), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3507), 8, + ACTIONS(3515), 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, + [54967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3527), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3525), 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, @@ -118730,34 +119159,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54739] = 11, + sym_primitive_type, + sym_identifier, + [54998] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2334), 1, + ACTIONS(2362), 1, anon_sym_LPAREN2, - ACTIONS(2336), 1, + ACTIONS(2364), 1, anon_sym_STAR, - ACTIONS(2853), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - STATE(1634), 1, + STATE(1624), 1, sym__abstract_declarator, - STATE(1653), 1, + STATE(1644), 1, sym_parameter_list, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3523), 3, + ACTIONS(3529), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1650), 4, + STATE(1645), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3507), 8, + ACTIONS(3515), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118766,27 +119197,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54786] = 6, + [55045] = 10, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2913), 2, - sym_primitive_type, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(2917), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3020), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3322), 1, anon_sym_LPAREN2, + ACTIONS(3324), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3017), 9, + STATE(1532), 1, + sym__field_declarator, + STATE(2107), 1, + sym_ms_based_modifier, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118796,25 +119231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54822] = 10, + [55089] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3324), 1, anon_sym_STAR, - STATE(1523), 1, + STATE(1527), 1, sym__field_declarator, - STATE(1994), 1, + STATE(2107), 1, sym_ms_based_modifier, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1570), 5, + STATE(1589), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -118830,31 +119265,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54866] = 10, + [55133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3533), 1, + anon_sym_LPAREN2, + STATE(1374), 1, + sym_preproc_argument_list, + ACTIONS(3535), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3531), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55167] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1049), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2927), 2, + sym_primitive_type, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(2931), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3068), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3312), 1, anon_sym_STAR, - STATE(1498), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3065), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118864,30 +119324,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54910] = 10, + [55203] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(2863), 1, sym_identifier, ACTIONS(3316), 1, anon_sym_LPAREN2, ACTIONS(3318), 1, anon_sym_STAR, - STATE(1526), 1, - sym__field_declarator, - STATE(1994), 1, + STATE(1484), 1, + sym__declarator, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -118898,31 +119358,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54954] = 10, + [55247] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3005), 1, + sym_primitive_type, + ACTIONS(3537), 1, sym_identifier, - ACTIONS(3316), 1, + STATE(1321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2999), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3318), 1, anon_sym_STAR, - STATE(1530), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1570), 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_LBRACK, + anon_sym_COLON, + ACTIONS(3001), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118932,25 +119389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54998] = 10, + [55285] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1483), 1, + STATE(1485), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -118966,30 +119423,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55042] = 10, + [55329] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3324), 1, anon_sym_STAR, - STATE(1490), 1, - sym__declarator, - STATE(2001), 1, + STATE(1534), 1, + sym__field_declarator, + STATE(2107), 1, sym_ms_based_modifier, - STATE(1296), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -119000,57 +119457,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55086] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - STATE(1369), 1, - sym_preproc_argument_list, - ACTIONS(3529), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3525), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55120] = 7, + [55373] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - sym_primitive_type, - ACTIONS(3531), 1, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, sym_identifier, - STATE(1317), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3533), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2973), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3316), 1, anon_sym_LPAREN2, + ACTIONS(3318), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2975), 9, + STATE(1502), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -119060,143 +119491,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55158] = 10, + [55417] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3537), 1, - anon_sym_RPAREN, - ACTIONS(3539), 1, - anon_sym_LPAREN2, ACTIONS(3541), 1, - anon_sym_defined, - ACTIONS(3547), 1, - sym_number_literal, - ACTIONS(3543), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3549), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1327), 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, - [55201] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, anon_sym_COMMA, - ACTIONS(3553), 1, + ACTIONS(3543), 1, anon_sym_RPAREN, - ACTIONS(3559), 1, + ACTIONS(3549), 1, anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - STATE(1795), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55256] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(3551), 1, - anon_sym_COMMA, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3561), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3553), 1, anon_sym_AMP_AMP, - ACTIONS(3565), 1, + ACTIONS(3555), 1, anon_sym_PIPE, - ACTIONS(3567), 1, + ACTIONS(3557), 1, anon_sym_CARET, - ACTIONS(3569), 1, + ACTIONS(3559), 1, anon_sym_AMP, - ACTIONS(3579), 1, - anon_sym_RPAREN, - STATE(1751), 1, + STATE(1812), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3555), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, + ACTIONS(3547), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, + ACTIONS(3561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, + ACTIONS(3563), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3575), 2, + ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, + ACTIONS(3567), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55311] = 10, + [55472] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3571), 1, + anon_sym_RPAREN, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3575), 1, anon_sym_defined, ACTIONS(3581), 1, - anon_sym_RPAREN, - ACTIONS(3583), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1330), 7, + STATE(1333), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119204,99 +119563,71 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55354] = 16, + [55515] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3541), 1, anon_sym_COMMA, - ACTIONS(3559), 1, + ACTIONS(3549), 1, anon_sym_SLASH, - ACTIONS(3561), 1, + ACTIONS(3551), 1, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, + ACTIONS(3553), 1, anon_sym_AMP_AMP, - ACTIONS(3565), 1, + ACTIONS(3555), 1, anon_sym_PIPE, - ACTIONS(3567), 1, + ACTIONS(3557), 1, anon_sym_CARET, - ACTIONS(3569), 1, + ACTIONS(3559), 1, anon_sym_AMP, ACTIONS(3585), 1, anon_sym_RPAREN, - STATE(1798), 1, + STATE(1787), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3555), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, + ACTIONS(3547), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, + ACTIONS(3561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, + ACTIONS(3563), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55409] = 5, - ACTIONS(3525), 1, - anon_sym_LF, - ACTIONS(3587), 1, - anon_sym_LPAREN2, - ACTIONS(3589), 1, - sym_comment, - STATE(1428), 1, - sym_preproc_argument_list, - ACTIONS(3529), 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, + ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3567), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55442] = 10, + [55570] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3591), 1, + ACTIONS(3587), 1, anon_sym_RPAREN, - ACTIONS(3593), 1, + ACTIONS(3589), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1328), 7, + STATE(1327), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119304,30 +119635,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55485] = 9, + [55613] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3605), 1, + ACTIONS(3591), 1, + anon_sym_RPAREN, + ACTIONS(3593), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1408), 7, + STATE(1329), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119335,80 +119668,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55525] = 3, - ACTIONS(3), 1, + [55656] = 5, + ACTIONS(3531), 1, + anon_sym_LF, + ACTIONS(3595), 1, + anon_sym_LPAREN2, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3611), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1431), 1, + sym_preproc_argument_list, + ACTIONS(3535), 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, - [55553] = 3, + [55689] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 5, + ACTIONS(3541), 1, + anon_sym_COMMA, + ACTIONS(3549), 1, anon_sym_SLASH, + ACTIONS(3551), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3553), 1, + anon_sym_AMP_AMP, + ACTIONS(3555), 1, anon_sym_PIPE, + ACTIONS(3557), 1, + anon_sym_CARET, + ACTIONS(3559), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2488), 15, - anon_sym_COMMA, + ACTIONS(3599), 1, anon_sym_RPAREN, + STATE(1814), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3547), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3563), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3567), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55581] = 9, + [55744] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3613), 1, + ACTIONS(3611), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1377), 7, + STATE(1433), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119416,30 +119766,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55621] = 9, + [55784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, ACTIONS(3615), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1400), 7, + STATE(1410), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119447,30 +119797,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55661] = 9, + [55824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3619), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3617), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55852] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3617), 1, + ACTIONS(3621), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1378), 7, + STATE(1446), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119478,30 +119853,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55701] = 9, + [55892] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2087), 1, + anon_sym_LPAREN2, + ACTIONS(2089), 1, + anon_sym_STAR, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2871), 1, + anon_sym_LBRACK, + STATE(1585), 1, + sym__declarator, + STATE(1644), 1, + sym_parameter_list, + STATE(1651), 1, + sym__abstract_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + ACTIONS(3623), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1645), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55940] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3619), 1, + ACTIONS(3625), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1376), 7, + STATE(1437), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119509,24 +119919,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55741] = 9, + [55980] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3621), 1, + ACTIONS(3627), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -119540,30 +119950,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55781] = 9, + [56020] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3623), 1, + ACTIONS(3629), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1438), 7, + STATE(1352), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119571,30 +119981,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55821] = 9, + [56060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3625), 1, + ACTIONS(3631), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1422), 7, + STATE(1421), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119602,30 +120012,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55861] = 9, + [56100] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3627), 1, + ACTIONS(3633), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1425), 7, + STATE(1412), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119633,30 +120043,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55901] = 9, + [56140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3629), 1, + ACTIONS(3635), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1420), 7, + STATE(1424), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119664,66 +120074,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55941] = 14, + [56180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3639), 5, anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, anon_sym_AMP, - ACTIONS(3555), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3637), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3631), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55991] = 9, + [56208] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3633), 1, + ACTIONS(3641), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1410), 7, + STATE(1416), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119731,30 +120130,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56031] = 9, + [56248] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3551), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3553), 1, + anon_sym_AMP_AMP, + ACTIONS(3555), 1, + anon_sym_PIPE, + ACTIONS(3557), 1, + anon_sym_CARET, + ACTIONS(3559), 1, + anon_sym_AMP, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3563), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3567), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3643), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56298] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3635), 1, + ACTIONS(3645), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1417), 7, + STATE(1414), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119762,30 +120197,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56071] = 9, + [56338] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3637), 1, + ACTIONS(3647), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1415), 7, + STATE(1409), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119793,65 +120228,107 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56111] = 13, + [56378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 1, - anon_sym_LPAREN2, - ACTIONS(2091), 1, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3547), 2, anon_sym_STAR, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(2853), 1, - anon_sym_LBRACK, - STATE(1597), 1, - sym__declarator, - STATE(1647), 1, - sym__abstract_declarator, - STATE(1653), 1, - sym_parameter_list, - STATE(2001), 1, - sym_ms_based_modifier, - ACTIONS(3639), 2, + anon_sym_PERCENT, + ACTIONS(3651), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3649), 13, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1650), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [56159] = 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3655), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3653), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3659), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3657), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56466] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3641), 1, + ACTIONS(3661), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1403), 7, + STATE(1350), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119859,30 +120336,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56199] = 9, + [56506] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3643), 1, + ACTIONS(3663), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1414), 7, + STATE(1375), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119890,30 +120367,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56239] = 9, + [56546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3645), 1, + ACTIONS(3665), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1382), 7, + STATE(1383), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119921,30 +120398,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56279] = 9, + [56586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3647), 1, + ACTIONS(3667), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1406), 7, + STATE(1385), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119952,16 +120429,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56319] = 3, + [56626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3651), 5, + ACTIONS(3671), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1396), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3669), 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, + [56658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3675), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3649), 15, + ACTIONS(3673), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -119977,30 +120481,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56347] = 9, + [56686] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3653), 1, + ACTIONS(3677), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1413), 7, + STATE(1401), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120008,30 +120512,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56387] = 9, + [56726] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3655), 1, + ACTIONS(3679), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1367), 7, + STATE(1386), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120039,30 +120543,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56427] = 9, + [56766] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3657), 1, + ACTIONS(3681), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1412), 7, + STATE(1387), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120070,61 +120574,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56467] = 9, + [56806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3539), 1, - anon_sym_LPAREN2, - ACTIONS(3541), 1, - anon_sym_defined, - ACTIONS(3659), 1, - sym_number_literal, - ACTIONS(3543), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(2468), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2470), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1375), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [56507] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56834] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3661), 1, + ACTIONS(3683), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1374), 7, + STATE(1388), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120132,30 +120630,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56547] = 9, + [56874] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3663), 1, + ACTIONS(3685), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1407), 7, + STATE(1390), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120163,30 +120661,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56587] = 9, + [56914] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3665), 1, + ACTIONS(3687), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1405), 7, + STATE(1391), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120194,30 +120692,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56627] = 9, + [56954] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3667), 1, + ACTIONS(3689), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1439), 7, + STATE(1392), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120225,30 +120723,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56667] = 9, + [56994] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3669), 1, + ACTIONS(3691), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1432), 7, + STATE(1403), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120256,284 +120754,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3671), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3675), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56763] = 9, + [57034] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3679), 1, + ACTIONS(3693), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1372), 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, - [56803] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3683), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3685), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56891] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1296), 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, - 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, - [56923] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3681), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [56971] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3683), 1, - anon_sym_PIPE, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3681), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57017] = 9, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1428), 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, + [57074] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3693), 1, + ACTIONS(3695), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1345), 7, + STATE(1402), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120541,183 +120816,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57057] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3683), 1, - anon_sym_PIPE, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3681), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [57101] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3683), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3681), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [57143] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3683), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3681), 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, - [57183] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3683), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [57219] = 6, + [57114] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3555), 2, + ACTIONS(3601), 1, + sym_identifier, + ACTIONS(3603), 1, + anon_sym_LPAREN2, + ACTIONS(3605), 1, + anon_sym_defined, + ACTIONS(3697), 1, + sym_number_literal, + ACTIONS(3607), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3683), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3681), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57253] = 9, + ACTIONS(3613), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1404), 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, + [57154] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3695), 1, + ACTIONS(3699), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1392), 7, + STATE(1406), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120725,30 +120878,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57293] = 9, + [57194] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3697), 1, + ACTIONS(3701), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1371), 7, + STATE(1413), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120756,30 +120909,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57333] = 9, + [57234] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3699), 1, + ACTIONS(3703), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1368), 7, + STATE(1417), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120787,16 +120940,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57373] = 3, + [57274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 5, + ACTIONS(3707), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3701), 15, + ACTIONS(3705), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -120812,16 +120965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57401] = 3, + [57302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 5, + ACTIONS(3651), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3705), 15, + ACTIONS(3649), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -120837,30 +120990,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57429] = 9, + [57330] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, ACTIONS(3709), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1418), 7, + STATE(1440), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120868,57 +121021,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57469] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3713), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1296), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3711), 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, - [57501] = 9, + [57370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3715), 1, + ACTIONS(3711), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1424), 7, + STATE(1347), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120926,13 +121052,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57541] = 5, + [57410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3713), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57438] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3719), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1385), 2, + STATE(1275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3717), 7, @@ -120953,30 +121104,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57573] = 9, + [57470] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, ACTIONS(3721), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1443), 7, + STATE(1419), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120984,30 +121135,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57613] = 9, + [57510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3725), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3723), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57538] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3723), 1, + ACTIONS(3727), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1436), 7, + STATE(1418), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121015,30 +121191,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57653] = 9, + [57578] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3553), 1, + anon_sym_AMP_AMP, + ACTIONS(3555), 1, + anon_sym_PIPE, + ACTIONS(3557), 1, + anon_sym_CARET, + ACTIONS(3559), 1, + anon_sym_AMP, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3563), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3567), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3649), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [57626] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3725), 1, + ACTIONS(3729), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1444), 7, + STATE(1426), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121046,30 +121257,163 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57693] = 9, + [57666] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3555), 1, + anon_sym_PIPE, + ACTIONS(3557), 1, + anon_sym_CARET, + ACTIONS(3559), 1, + anon_sym_AMP, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3563), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3567), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3649), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [57712] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3557), 1, + anon_sym_CARET, + ACTIONS(3559), 1, + anon_sym_AMP, + ACTIONS(3651), 1, + anon_sym_PIPE, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3563), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3567), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3649), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [57758] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3559), 1, + anon_sym_AMP, + ACTIONS(3651), 1, + anon_sym_PIPE, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3563), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3567), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3649), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [57802] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3563), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3567), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3651), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3649), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [57844] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3727), 1, + ACTIONS(3731), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1401), 7, + STATE(1420), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121077,64 +121421,118 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57733] = 12, + [57884] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3549), 1, anon_sym_SLASH, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3555), 2, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3557), 2, + ACTIONS(3547), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, + ACTIONS(3563), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3575), 2, + ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, + ACTIONS(3567), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3681), 4, + ACTIONS(3651), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3649), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [57779] = 9, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [57924] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3567), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3651), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3649), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [57960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3651), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3649), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57994] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3729), 1, + ACTIONS(3733), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1411), 7, + STATE(1407), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121142,30 +121540,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57819] = 9, + [58034] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3731), 1, + ACTIONS(3735), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1421), 7, + STATE(1405), 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, + [58074] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, + sym_identifier, + ACTIONS(3603), 1, + anon_sym_LPAREN2, + ACTIONS(3605), 1, + anon_sym_defined, + ACTIONS(3737), 1, + sym_number_literal, + ACTIONS(3607), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3613), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1432), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121173,16 +121602,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57859] = 5, + [58114] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3741), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1275), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3739), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [58146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 2, + ACTIONS(3745), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1370), 2, + STATE(1379), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3733), 7, + ACTIONS(3743), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -121200,55 +121656,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3739), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3737), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57919] = 9, + [58178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3597), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3599), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3741), 1, + ACTIONS(3747), 1, sym_number_literal, - ACTIONS(3601), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3603), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3607), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1409), 7, + STATE(1400), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121256,30 +121687,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57959] = 9, + [58218] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3601), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3603), 1, anon_sym_LPAREN2, - ACTIONS(3541), 1, + ACTIONS(3605), 1, anon_sym_defined, - ACTIONS(3743), 1, + ACTIONS(3749), 1, sym_number_literal, - ACTIONS(3543), 2, + ACTIONS(3607), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3545), 2, + ACTIONS(3609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3549), 5, + ACTIONS(3613), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1431), 7, + STATE(1436), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121287,193 +121718,204 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57999] = 3, - ACTIONS(3589), 1, + [58258] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 1, - anon_sym_LF, - ACTIONS(3651), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3549), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3551), 1, anon_sym_PIPE_PIPE, + ACTIONS(3553), 1, anon_sym_AMP_AMP, + ACTIONS(3555), 1, anon_sym_PIPE, + ACTIONS(3557), 1, anon_sym_CARET, + ACTIONS(3559), 1, anon_sym_AMP, + ACTIONS(3751), 1, + anon_sym_RPAREN, + ACTIONS(3545), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3547), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3563), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3567), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [58026] = 12, - ACTIONS(3589), 1, + [58307] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(3753), 1, anon_sym_LF, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58071] = 12, - ACTIONS(3589), 1, + [58352] = 8, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3649), 1, + anon_sym_LF, + ACTIONS(3755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3773), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3757), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3771), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3651), 5, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3759), 1, anon_sym_AMP, - ACTIONS(3767), 1, + [58389] = 7, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58116] = 5, - ACTIONS(3), 1, + ACTIONS(3651), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [58424] = 6, + ACTIONS(3597), 1, sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3020), 2, - anon_sym_LPAREN2, + ACTIONS(3649), 1, + anon_sym_LF, + ACTIONS(3755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3773), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3757), 3, anon_sym_STAR, - ACTIONS(3769), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3017), 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, - [58147] = 12, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3751), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3651), 11, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3757), 1, 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, + [58457] = 12, + ACTIONS(3597), 1, + sym_comment, ACTIONS(3759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_PIPE, + ACTIONS(3765), 1, + anon_sym_CARET, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3773), 1, + ACTIONS(3775), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58192] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1054), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2999), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3775), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2997), 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, - [58223] = 4, - ACTIONS(3589), 1, + [58502] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3749), 3, + ACTIONS(3755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3683), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3651), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121487,45 +121929,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58252] = 12, - ACTIONS(3589), 1, + [58533] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58297] = 3, - ACTIONS(3589), 1, + [58578] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3617), 1, anon_sym_LF, - ACTIONS(3683), 18, + ACTIONS(3619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121544,389 +121986,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58324] = 12, - ACTIONS(3589), 1, + [58605] = 11, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3683), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, - anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3651), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58369] = 12, - ACTIONS(3589), 1, + [58648] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3780), 1, + ACTIONS(3779), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58414] = 14, - ACTIONS(3), 1, + [58693] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3637), 1, + anon_sym_LF, + ACTIONS(3639), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3561), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, anon_sym_AMP_AMP, - ACTIONS(3565), 1, anon_sym_PIPE, - ACTIONS(3567), 1, anon_sym_CARET, - ACTIONS(3569), 1, anon_sym_AMP, - ACTIONS(3782), 1, - anon_sym_RPAREN, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3573), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3577), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58463] = 12, - ACTIONS(3589), 1, + [58720] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3784), 1, + ACTIONS(3781), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58508] = 11, - ACTIONS(3589), 1, + [58765] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, - anon_sym_LF, - ACTIONS(3755), 1, - anon_sym_PIPE, - ACTIONS(3757), 1, - anon_sym_CARET, ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3683), 2, anon_sym_PIPE_PIPE, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3747), 2, + ACTIONS(3763), 1, + anon_sym_PIPE, + ACTIONS(3765), 1, + anon_sym_CARET, + ACTIONS(3767), 1, + anon_sym_AMP, + ACTIONS(3783), 1, + anon_sym_LF, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58551] = 10, - ACTIONS(3589), 1, + [58810] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3757), 1, + ACTIONS(3651), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_PIPE, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3683), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58592] = 9, - ACTIONS(3589), 1, + [58855] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3785), 1, + sym_identifier, + ACTIONS(3791), 1, + sym_primitive_type, + STATE(1439), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2999), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3788), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3001), 10, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [58890] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3747), 2, + ACTIONS(3651), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3683), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3763), 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, - [58631] = 8, - ACTIONS(3589), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58917] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_PIPE, + ACTIONS(3765), 1, + anon_sym_CARET, + ACTIONS(3767), 1, + anon_sym_AMP, + ACTIONS(3794), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3683), 5, + [58962] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3549), 1, + anon_sym_SLASH, + ACTIONS(3551), 1, anon_sym_PIPE_PIPE, + ACTIONS(3553), 1, anon_sym_AMP_AMP, + ACTIONS(3555), 1, anon_sym_PIPE, + ACTIONS(3557), 1, anon_sym_CARET, + ACTIONS(3559), 1, anon_sym_AMP, - [58668] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3609), 1, - anon_sym_LF, - ACTIONS(3611), 18, + ACTIONS(3796), 1, + anon_sym_RPAREN, + ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3547), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3563), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3567), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [58695] = 7, - ACTIONS(3589), 1, + [59011] = 10, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3765), 1, + anon_sym_CARET, + ACTIONS(3767), 1, + anon_sym_AMP, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3765), 2, + ACTIONS(3769), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3651), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3683), 7, + [59052] = 12, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, + ACTIONS(3761), 1, anon_sym_AMP_AMP, + ACTIONS(3763), 1, anon_sym_PIPE, + ACTIONS(3765), 1, anon_sym_CARET, + ACTIONS(3767), 1, anon_sym_AMP, + ACTIONS(3798), 1, + anon_sym_LF, + ACTIONS(3755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [58730] = 12, - ACTIONS(3589), 1, + ACTIONS(3773), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3757), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3771), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [59097] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3786), 1, + ACTIONS(3800), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58775] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1404), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3100), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3098), 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, - [58806] = 6, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3681), 1, + [59142] = 3, + ACTIONS(2470), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(2468), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3683), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121938,52 +122413,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58839] = 12, - ACTIONS(3589), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59169] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3791), 1, + ACTIONS(3802), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58884] = 5, - ACTIONS(3589), 1, + [59214] = 4, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3649), 1, + anon_sym_LF, + ACTIONS(3757), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3651), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59243] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3713), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3715), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3683), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121997,111 +122497,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58915] = 12, - ACTIONS(3589), 1, + [59270] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3793), 1, + ACTIONS(3804), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58960] = 12, - ACTIONS(3589), 1, + [59315] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, - anon_sym_AMP_AMP, - ACTIONS(3755), 1, - anon_sym_PIPE, - ACTIONS(3757), 1, - anon_sym_CARET, - ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3795), 1, + STATE(1438), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2986), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3806), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2984), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [59346] = 9, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3649), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3767), 1, + anon_sym_AMP, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3651), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59005] = 12, - ACTIONS(3589), 1, + [59385] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(1964), 1, + anon_sym_STAR, + ACTIONS(3099), 1, + anon_sym_LPAREN2, + STATE(1435), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1951), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [59418] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3723), 1, + anon_sym_LF, + ACTIONS(3725), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3759), 1, anon_sym_AMP, - ACTIONS(3797), 1, - anon_sym_LF, - ACTIONS(3747), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59050] = 3, - ACTIONS(3589), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59445] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(3705), 1, anon_sym_LF, - ACTIONS(3677), 18, + ACTIONS(3707), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122120,36 +122661,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59077] = 3, - ACTIONS(3589), 1, + [59472] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(3759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_PIPE, + ACTIONS(3765), 1, + anon_sym_CARET, + ACTIONS(3767), 1, + anon_sym_AMP, + ACTIONS(3812), 1, anon_sym_LF, - ACTIONS(3673), 18, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3773), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3771), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [59517] = 12, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, + ACTIONS(3761), 1, anon_sym_AMP_AMP, + ACTIONS(3763), 1, anon_sym_PIPE, + ACTIONS(3765), 1, anon_sym_CARET, + ACTIONS(3767), 1, anon_sym_AMP, + ACTIONS(3814), 1, + anon_sym_LF, + ACTIONS(3755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3773), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3757), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59104] = 3, - ACTIONS(3589), 1, + [59562] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3653), 1, anon_sym_LF, - ACTIONS(3687), 18, + ACTIONS(3655), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122168,20 +122751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59131] = 5, + [59589] = 5, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, + STATE(1049), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2966), 2, + ACTIONS(2980), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3799), 4, + ACTIONS(3816), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2964), 12, + ACTIONS(2978), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122194,12 +122777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59162] = 3, - ACTIONS(2488), 1, - anon_sym_LF, - ACTIONS(3589), 1, + [59620] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(2486), 18, + ACTIONS(3657), 1, + anon_sym_LF, + ACTIONS(3659), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122218,88 +122801,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59189] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_SLASH, - ACTIONS(3561), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 1, - anon_sym_AMP_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3567), 1, - anon_sym_CARET, - ACTIONS(3569), 1, - anon_sym_AMP, - ACTIONS(3802), 1, - anon_sym_RPAREN, - ACTIONS(3555), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3557), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3571), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3573), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3575), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3577), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59238] = 12, - ACTIONS(3589), 1, + [59647] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3804), 1, + ACTIONS(3819), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59283] = 5, + [59692] = 5, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, + STATE(1049), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3015), 2, + ACTIONS(3009), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3806), 4, + ACTIONS(3821), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3013), 12, + ACTIONS(3007), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122312,21 +122860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59314] = 6, + [59723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1967), 1, - anon_sym_STAR, - ACTIONS(3091), 1, - anon_sym_LPAREN2, - STATE(1429), 1, + STATE(1049), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3809), 4, + ACTIONS(3068), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3824), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1951), 12, + ACTIONS(3065), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122339,77 +122886,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59347] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3737), 1, - anon_sym_LF, - ACTIONS(3739), 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, - [59374] = 12, - ACTIONS(3589), 1, + [59754] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3812), 1, + ACTIONS(3828), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3749), 3, + ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, + ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59419] = 5, + [59799] = 5, ACTIONS(3), 1, sym_comment, - STATE(1054), 1, + STATE(1444), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3041), 2, + ACTIONS(3095), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3814), 4, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3039), 12, + ACTIONS(3093), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122422,86 +122945,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59450] = 12, - ACTIONS(3589), 1, + [59830] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, - anon_sym_AMP_AMP, - ACTIONS(3755), 1, - anon_sym_PIPE, - ACTIONS(3757), 1, - anon_sym_CARET, - ACTIONS(3759), 1, - anon_sym_AMP, - ACTIONS(3817), 1, + ACTIONS(3673), 1, anon_sym_LF, - ACTIONS(3747), 2, + ACTIONS(3675), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3763), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59495] = 12, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3751), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, anon_sym_PIPE, - ACTIONS(3757), 1, anon_sym_CARET, - ACTIONS(3759), 1, anon_sym_AMP, - ACTIONS(3819), 1, - anon_sym_LF, - ACTIONS(3747), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3761), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3763), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59540] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59857] = 5, ACTIONS(3), 1, sym_comment, - STATE(1433), 1, + STATE(1049), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3035), 2, + ACTIONS(3021), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3821), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3033), 12, + ACTIONS(3019), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122514,20 +122995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59571] = 5, + [59888] = 5, ACTIONS(3), 1, sym_comment, - STATE(1437), 1, + STATE(1049), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3029), 2, + ACTIONS(3091), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3824), 4, + ACTIONS(3836), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3027), 12, + ACTIONS(3089), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122540,24 +123021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59602] = 7, + [59919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - sym_identifier, - ACTIONS(3833), 1, - sym_primitive_type, - STATE(1402), 1, + STATE(1443), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2973), 2, + ACTIONS(3073), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3830), 4, + ACTIONS(3839), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2975), 10, + ACTIONS(3071), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122568,1223 +123045,1241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [59637] = 12, - ACTIONS(3589), 1, + sym_primitive_type, + sym_identifier, + [59950] = 12, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3759), 1, anon_sym_PIPE_PIPE, - ACTIONS(3753), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3755), 1, + ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3836), 1, - anon_sym_LF, - ACTIONS(3747), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3761), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3749), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3763), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59682] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3701), 1, + ACTIONS(3842), 1, anon_sym_LF, - ACTIONS(3703), 18, + ACTIONS(3755), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [59709] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3705), 1, - anon_sym_LF, - ACTIONS(3707), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3757), 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(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59736] = 11, + [59995] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1689), 1, + STATE(1728), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [59777] = 11, + [60036] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1665), 1, + STATE(1703), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [59818] = 11, + [60077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1703), 1, + STATE(1721), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [59859] = 11, + [60118] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1717), 1, + STATE(1697), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [59900] = 11, + [60159] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1734), 1, + STATE(1709), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [59941] = 11, + [60200] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(3155), 1, + anon_sym_const, + ACTIONS(3162), 1, + anon_sym_LBRACE, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(3846), 1, + anon_sym_COLON, + STATE(1085), 1, + sym_attribute_specifier, + STATE(1309), 1, + sym_enumerator_list, + ACTIONS(3157), 11, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [60235] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1680), 1, + STATE(1713), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [59982] = 11, + [60276] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1702), 1, + STATE(1667), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60023] = 11, + [60317] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1720), 1, + STATE(1669), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60064] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 1, - anon_sym_const, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(3840), 1, - anon_sym_COLON, - STATE(1091), 1, - sym_attribute_specifier, - STATE(1307), 1, - sym_enumerator_list, - ACTIONS(3159), 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, - [60099] = 11, + [60358] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1726), 1, + STATE(1691), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60140] = 11, + [60399] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1544), 1, + STATE(1549), 1, sym__type_declarator, - STATE(1715), 1, + STATE(1700), 1, sym__type_definition_declarators, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60181] = 15, + [60440] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - STATE(147), 1, + STATE(225), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60229] = 15, + [60488] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - STATE(365), 1, + STATE(385), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60277] = 15, + [60536] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(3136), 1, + sym_identifier, + ACTIONS(3138), 1, + anon_sym_LPAREN2, + ACTIONS(3140), 1, + anon_sym_STAR, + ACTIONS(3144), 1, + sym_primitive_type, + STATE(1554), 1, + sym__type_declarator, + STATE(2005), 1, + sym_ms_based_modifier, + ACTIONS(3142), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1607), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [60574] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - STATE(478), 1, + STATE(433), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60325] = 15, + [60622] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - STATE(399), 1, + STATE(153), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60373] = 15, + [60670] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - STATE(213), 1, + STATE(461), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60421] = 10, + [60718] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3136), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3138), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3140), 1, anon_sym_STAR, - ACTIONS(3132), 1, + ACTIONS(3144), 1, sym_primitive_type, - STATE(1611), 1, + STATE(1602), 1, sym__type_declarator, - STATE(2038), 1, + STATE(2005), 1, sym_ms_based_modifier, - ACTIONS(3130), 4, + ACTIONS(3142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1610), 5, + STATE(1607), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60459] = 10, + [60756] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3124), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3126), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3128), 1, + ACTIONS(3324), 1, anon_sym_STAR, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1557), 1, - sym__type_declarator, - STATE(2038), 1, - sym_ms_based_modifier, - ACTIONS(3130), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1610), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [60497] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3861), 1, anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(399), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60542] = 14, + STATE(1511), 1, + sym__field_declarator, + STATE(1793), 1, + sym__field_declaration_declarator, + STATE(2071), 1, + sym_attribute_specifier, + STATE(2107), 1, + sym_ms_based_modifier, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [60797] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(147), 1, + STATE(153), 1, sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60587] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - ACTIONS(3857), 1, - anon_sym_SEMI, - STATE(1514), 1, - sym__field_declarator, - STATE(1746), 1, - sym__field_declaration_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(2224), 1, - sym_attribute_specifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60628] = 14, + [60842] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(365), 1, + STATE(385), 1, sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60673] = 12, + [60887] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3324), 1, anon_sym_STAR, - ACTIONS(3859), 1, + ACTIONS(3865), 1, anon_sym_SEMI, - STATE(1514), 1, + STATE(1511), 1, sym__field_declarator, - STATE(1828), 1, + STATE(1780), 1, sym__field_declaration_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(2076), 1, + STATE(1964), 1, sym_attribute_specifier, - STATE(1570), 5, + STATE(2107), 1, + sym_ms_based_modifier, + STATE(1589), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [60714] = 12, + [60928] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3867), 1, sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - ACTIONS(3861), 1, + ACTIONS(3869), 1, + aux_sym_preproc_if_token2, + ACTIONS(3871), 1, + aux_sym_preproc_else_token1, + ACTIONS(3873), 1, + aux_sym_preproc_elif_token1, + STATE(1517), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1528), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1599), 1, + sym_enumerator, + ACTIONS(3875), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2122), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(2123), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [60967] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(3849), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, anon_sym_SEMI, - STATE(1514), 1, - sym__field_declarator, - STATE(1779), 1, - sym__field_declaration_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(2005), 1, - sym_attribute_specifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60755] = 12, + ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + STATE(433), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1818), 1, + sym_gnu_asm_expression, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [61012] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(3314), 1, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3324), 1, anon_sym_STAR, - ACTIONS(3863), 1, + ACTIONS(3877), 1, anon_sym_SEMI, - STATE(1514), 1, + STATE(1511), 1, sym__field_declarator, - STATE(1772), 1, + STATE(1790), 1, sym__field_declaration_declarator, - STATE(1993), 1, + STATE(2106), 1, sym_attribute_specifier, - STATE(1994), 1, + STATE(2107), 1, sym_ms_based_modifier, - STATE(1570), 5, + STATE(1589), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [60796] = 14, + [61053] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(213), 1, + STATE(461), 1, sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60841] = 14, + [61098] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(478), 1, + STATE(225), 1, sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, + STATE(1818), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60886] = 11, + [61143] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(3320), 1, sym_identifier, - ACTIONS(3867), 1, - aux_sym_preproc_if_token2, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3871), 1, - aux_sym_preproc_elif_token1, - STATE(1528), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1534), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1609), 1, - sym_enumerator, - ACTIONS(3873), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2039), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(2040), 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, - [60925] = 11, + ACTIONS(3322), 1, + anon_sym_LPAREN2, + ACTIONS(3324), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + anon_sym_SEMI, + STATE(1511), 1, + sym__field_declarator, + STATE(1781), 1, + sym__field_declaration_declarator, + STATE(2018), 1, + sym_attribute_specifier, + STATE(2107), 1, + sym_ms_based_modifier, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [61184] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(805), 1, + STATE(817), 1, sym__old_style_function_declarator, - STATE(1460), 1, + STATE(1459), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(1959), 1, - sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(2090), 1, + sym__declaration_declarator, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [60963] = 11, + [61222] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(803), 1, + STATE(816), 1, sym__old_style_function_declarator, - STATE(1458), 1, + STATE(1461), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(1940), 1, - sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1979), 1, + sym__declaration_declarator, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61001] = 11, + [61260] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(826), 1, + STATE(822), 1, sym__old_style_function_declarator, - STATE(1457), 1, + STATE(1463), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(2170), 1, + STATE(1937), 1, sym__declaration_declarator, - STATE(1537), 5, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61039] = 11, + [61298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(3883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3886), 1, + anon_sym_LBRACK, + STATE(1478), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3881), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [61324] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(827), 1, + STATE(808), 1, sym__old_style_function_declarator, - STATE(1459), 1, + STATE(1458), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(2002), 1, + STATE(1969), 1, sym__declaration_declarator, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61077] = 11, + [61362] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(3890), 1, + anon_sym_LBRACK, + STATE(1482), 1, + sym_gnu_asm_expression, + ACTIONS(3859), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1496), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3888), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [61392] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(814), 1, + STATE(803), 1, sym__old_style_function_declarator, - STATE(1461), 1, + STATE(1462), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(1934), 1, - sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(2029), 1, + sym__declaration_declarator, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61115] = 5, + [61430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3880), 1, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(3894), 1, anon_sym_LBRACK, - STATE(1479), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3875), 10, + STATE(1489), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3892), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [61141] = 7, + [61455] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(3884), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3855), 1, anon_sym_LBRACK, - STATE(1492), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3882), 7, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + STATE(1480), 1, + sym_parameter_list, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3896), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [61171] = 12, + anon_sym_asm, + anon_sym___asm__, + [61484] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + STATE(1480), 1, + sym_parameter_list, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3898), 7, anon_sym_COMMA, - ACTIONS(3847), 1, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61513] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_LPAREN2, STATE(1480), 1, sym_parameter_list, - STATE(1767), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1812), 1, - sym_gnu_asm_expression, - ACTIONS(3853), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61210] = 10, + ACTIONS(3900), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61542] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1481), 1, + STATE(1472), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(2170), 1, + STATE(1937), 1, sym__declaration_declarator, - STATE(1537), 5, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61245] = 7, + [61577] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(3849), 1, - anon_sym_LBRACK, + anon_sym_COMMA, + ACTIONS(3853), 1, + anon_sym_SEMI, ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, + anon_sym_EQ, + ACTIONS(3863), 1, anon_sym_LPAREN2, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3886), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(1818), 1, + sym_gnu_asm_expression, + STATE(1824), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - [61274] = 10, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [61616] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1464), 1, + STATE(1487), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(1959), 1, - sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1969), 1, + sym__declaration_declarator, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61309] = 5, + [61651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(3890), 1, + ACTIONS(3904), 1, anon_sym_LBRACK, - STATE(1487), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3888), 9, + ACTIONS(3902), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -123794,204 +124289,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61334] = 10, + [61676] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1481), 1, + STATE(1487), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(2011), 1, + STATE(1979), 1, sym__declaration_declarator, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61369] = 5, + [61711] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 1, - anon_sym___attribute__, - ACTIONS(3897), 1, - anon_sym_LBRACK, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3892), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(3316), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61394] = 10, + ACTIONS(3318), 1, + anon_sym_STAR, + STATE(1473), 1, + sym__declarator, + STATE(1758), 1, + sym_init_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1969), 1, + sym__declaration_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [61746] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1467), 1, + STATE(1487), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(1940), 1, + STATE(1930), 1, sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61429] = 10, + [61781] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1481), 1, + STATE(1466), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(2002), 1, + STATE(2029), 1, sym__declaration_declarator, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61464] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3899), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61493] = 10, + [61816] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1481), 1, + STATE(1470), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(1934), 1, - sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1979), 1, + sym__declaration_declarator, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61528] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(3890), 1, - anon_sym_LBRACK, - STATE(1494), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3888), 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__, - [61553] = 10, + [61851] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1481), 1, + STATE(1487), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(1959), 1, - sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1984), 1, + sym__declaration_declarator, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61588] = 5, + [61886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(3903), 1, + ACTIONS(3894), 1, anon_sym_LBRACK, - STATE(1487), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3901), 9, + ACTIONS(3892), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124001,117 +124459,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61613] = 9, + [61911] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3905), 1, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3907), 1, + ACTIONS(3908), 1, aux_sym_preproc_if_token1, - ACTIONS(3911), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(3909), 2, + ACTIONS(3910), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1888), 2, + STATE(1874), 2, sym_preproc_call, sym_enumerator, - STATE(1992), 2, + STATE(2105), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1535), 3, + STATE(1531), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [61646] = 10, + [61944] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1471), 1, + STATE(1467), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, + sym_init_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(2090), 1, + sym__declaration_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [61979] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(3318), 1, + anon_sym_STAR, + STATE(1487), 1, + sym__declarator, + STATE(1758), 1, sym_init_declarator, - STATE(1934), 1, + STATE(1937), 1, sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61681] = 10, + [62014] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1472), 1, + STATE(1487), 1, sym__declarator, - STATE(1775), 1, + STATE(1758), 1, sym_init_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(2002), 1, + STATE(2029), 1, sym__declaration_declarator, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61716] = 7, + [62049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, + ACTIONS(3916), 1, + anon_sym___attribute__, + ACTIONS(3919), 1, anon_sym_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3913), 7, + STATE(1501), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3914), 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__, - [61745] = 7, + [62074] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, - anon_sym_LBRACK, ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_LPAREN2, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3915), 7, + ACTIONS(3921), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -124119,157 +124600,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61774] = 9, + [62103] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(3318), 1, + anon_sym_STAR, + STATE(1487), 1, + sym__declarator, + STATE(1758), 1, + sym_init_declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(2090), 1, + sym__declaration_declarator, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [62138] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3905), 1, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3907), 1, + ACTIONS(3908), 1, aux_sym_preproc_if_token1, - ACTIONS(3917), 1, + ACTIONS(3923), 1, anon_sym_RBRACE, - ACTIONS(3909), 2, + ACTIONS(3910), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1866), 2, + STATE(1917), 2, sym_preproc_call, sym_enumerator, - STATE(2098), 2, + STATE(2025), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1495), 3, + STATE(1497), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [61807] = 10, + [62171] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1465), 1, + STATE(828), 1, + sym__old_style_function_declarator, + STATE(1559), 1, sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(2170), 1, - sym__declaration_declarator, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61842] = 10, + [62203] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1481), 1, + STATE(810), 1, + sym__old_style_function_declarator, + STATE(1555), 1, sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(1940), 1, - sym__declaration_declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61877] = 10, + [62235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3927), 1, + anon_sym_LBRACK, + STATE(1478), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3925), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1481), 1, - sym__declarator, - STATE(1775), 1, - sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(2102), 1, - sym__declaration_declarator, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61912] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [62259] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(804), 1, + STATE(797), 1, sym__old_style_function_declarator, - STATE(1552), 1, + STATE(1564), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61944] = 9, + [62291] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, STATE(829), 1, sym__old_style_function_declarator, - STATE(1558), 1, + STATE(1560), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [61976] = 3, + [62323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, + ACTIONS(2891), 1, anon_sym_LBRACK, - ACTIONS(2877), 11, + ACTIONS(2883), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124281,147 +124777,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [61996] = 9, + [62343] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(794), 1, - sym__old_style_function_declarator, - STATE(1554), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62028] = 9, + ACTIONS(3929), 1, + anon_sym_COMMA, + ACTIONS(3933), 1, + anon_sym_LBRACK, + ACTIONS(3935), 1, + anon_sym_COLON, + STATE(1594), 1, + sym_parameter_list, + STATE(1672), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(1677), 1, + sym_bitfield_clause, + ACTIONS(3931), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1550), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [62379] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(812), 1, - sym__old_style_function_declarator, - STATE(1561), 1, + STATE(1513), 1, sym__declarator, - STATE(2001), 1, + STATE(1853), 1, + sym_init_declarator, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62060] = 10, + [62411] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3857), 1, anon_sym_EQ, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, STATE(1480), 1, sym_parameter_list, - STATE(1832), 1, + STATE(1881), 1, sym_gnu_asm_expression, - ACTIONS(3853), 2, + ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3919), 2, + ACTIONS(3937), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [62094] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1509), 1, - sym__declarator, - STATE(1880), 1, - sym_init_declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62126] = 9, + [62445] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(818), 1, + STATE(804), 1, sym__old_style_function_declarator, - STATE(1555), 1, + STATE(1551), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62158] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3923), 1, - anon_sym_LBRACK, - STATE(1479), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3921), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62182] = 3, + [62477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3927), 1, + ACTIONS(2857), 1, anon_sym_LBRACK, - ACTIONS(3925), 11, + ACTIONS(2849), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124433,37 +124889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [62202] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(3929), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(1577), 1, - sym_parameter_list, - STATE(1679), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1705), 1, - sym_bitfield_clause, - ACTIONS(3931), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [62238] = 3, + [62497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(3941), 1, anon_sym_LBRACK, - ACTIONS(2857), 11, + ACTIONS(3939), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124475,411 +124906,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [62258] = 9, + [62517] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3937), 1, + ACTIONS(3943), 1, aux_sym_preproc_if_token2, - ACTIONS(3939), 1, + ACTIONS(3945), 1, aux_sym_preproc_else_token1, - ACTIONS(3941), 1, + ACTIONS(3947), 1, aux_sym_preproc_elif_token1, - STATE(1534), 1, + STATE(1590), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, + STATE(2150), 1, sym_enumerator, - ACTIONS(3943), 2, + ACTIONS(3949), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2039), 3, + STATE(2149), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [62289] = 8, + [62548] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1592), 1, + STATE(1581), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62318] = 10, + [62577] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3945), 1, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(3320), 1, + sym_identifier, + ACTIONS(3322), 1, + anon_sym_LPAREN2, + ACTIONS(3324), 1, + anon_sym_STAR, + STATE(1598), 1, + sym__field_declarator, + STATE(2107), 1, + sym_ms_based_modifier, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [62606] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, sym_identifier, + ACTIONS(3945), 1, + aux_sym_preproc_else_token1, ACTIONS(3947), 1, - aux_sym_preproc_if_token2, - ACTIONS(3949), 1, aux_sym_preproc_elif_token1, - STATE(1567), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1595), 1, + ACTIONS(3951), 1, + aux_sym_preproc_if_token2, + STATE(1517), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1663), 1, + STATE(2150), 1, sym_enumerator, - STATE(2154), 2, + ACTIONS(3949), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2122), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - STATE(2155), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62351] = 8, + sym_preproc_elifdef_in_enumerator_list, + [62637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1614), 1, + STATE(1595), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62380] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3949), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3951), 1, - aux_sym_preproc_if_token2, - STATE(1589), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1598), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1663), 1, - sym_enumerator, - STATE(2105), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(2108), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62413] = 9, + [62666] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, ACTIONS(3933), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(1577), 1, + STATE(1594), 1, sym_parameter_list, - STATE(1776), 1, - sym_bitfield_clause, - STATE(1543), 2, + STATE(1550), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3953), 3, + ACTIONS(3953), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [62444] = 8, + anon_sym_COLON, + [62693] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(3310), 1, + ACTIONS(3316), 1, anon_sym_LPAREN2, - ACTIONS(3312), 1, + ACTIONS(3318), 1, anon_sym_STAR, - STATE(1591), 1, + STATE(1569), 1, sym__declarator, - STATE(2001), 1, + STATE(1941), 1, sym_ms_based_modifier, - STATE(1537), 5, + STATE(1543), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62473] = 7, + [62722] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(3320), 1, + sym_identifier, + ACTIONS(3322), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, - anon_sym_LBRACK, - STATE(1577), 1, - sym_parameter_list, - STATE(1543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3955), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [62500] = 7, + ACTIONS(3324), 1, + anon_sym_STAR, + STATE(1526), 1, + sym__field_declarator, + STATE(2107), 1, + sym_ms_based_modifier, + STATE(1589), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [62751] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(3318), 1, + anon_sym_STAR, + STATE(1582), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [62780] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, ACTIONS(3933), 1, anon_sym_LBRACK, - STATE(1577), 1, + ACTIONS(3935), 1, + anon_sym_COLON, + STATE(1594), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1798), 1, + sym_bitfield_clause, + STATE(1550), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3957), 5, + ACTIONS(3955), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [62527] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 1, - aux_sym_preproc_else_token1, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3949), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3959), 1, - aux_sym_preproc_if_token2, - STATE(1574), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1576), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1663), 1, - sym_enumerator, - STATE(2176), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(2177), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62560] = 7, + [62811] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, ACTIONS(3933), 1, anon_sym_LBRACK, - STATE(1577), 1, + STATE(1594), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1550), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3961), 5, + ACTIONS(3957), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62587] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1579), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62616] = 8, + [62838] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(3867), 1, sym_identifier, - ACTIONS(3963), 1, + ACTIONS(3959), 1, aux_sym_preproc_if_token2, - ACTIONS(3965), 1, + ACTIONS(3961), 1, aux_sym_preproc_else_token1, - ACTIONS(3967), 1, + ACTIONS(3963), 1, aux_sym_preproc_elif_token1, - ACTIONS(3969), 2, + ACTIONS(3965), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1575), 2, + STATE(1596), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2121), 3, + STATE(2129), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [62645] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1605), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [62674] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(3933), 1, - anon_sym_LBRACK, - STATE(1577), 1, - sym_parameter_list, - STATE(1543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3971), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [62701] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(3314), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1521), 1, - sym__field_declarator, - STATE(1994), 1, - sym_ms_based_modifier, - STATE(1570), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [62730] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, - sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1571), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62759] = 8, + [62867] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym___based, - ACTIONS(2845), 1, + ACTIONS(3871), 1, + aux_sym_preproc_else_token1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(3310), 1, - anon_sym_LPAREN2, - ACTIONS(3312), 1, - anon_sym_STAR, - STATE(1582), 1, - sym__declarator, - STATE(2001), 1, - sym_ms_based_modifier, - STATE(1537), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62788] = 9, + ACTIONS(3969), 1, + aux_sym_preproc_if_token2, + ACTIONS(3971), 1, + aux_sym_preproc_elif_token1, + STATE(1568), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1593), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1661), 1, + sym_enumerator, + STATE(2144), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2146), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [62900] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3871), 1, aux_sym_preproc_else_token1, - ACTIONS(3941), 1, + ACTIONS(3967), 1, + sym_identifier, + ACTIONS(3971), 1, aux_sym_preproc_elif_token1, ACTIONS(3973), 1, aux_sym_preproc_if_token2, - STATE(1587), 1, + STATE(1586), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1597), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, + STATE(1661), 1, sym_enumerator, - ACTIONS(3943), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2111), 3, + STATE(2186), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [62819] = 8, + STATE(2188), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [62933] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3975), 1, @@ -124893,86 +125219,128 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3981), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2044), 2, + STATE(2125), 2, sym_preproc_call, sym_enumerator, - STATE(1535), 3, + STATE(1531), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [62848] = 6, + [62962] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + ACTIONS(3933), 1, anon_sym_LBRACK, - STATE(1667), 1, - sym_gnu_asm_input_operand, - STATE(2132), 1, - sym_string_literal, - ACTIONS(3989), 2, + STATE(1594), 1, + sym_parameter_list, + STATE(1550), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3989), 5, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, 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, - [62872] = 3, + [62989] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(3316), 1, + anon_sym_LPAREN2, + ACTIONS(3318), 1, + anon_sym_STAR, + STATE(1578), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63018] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + ACTIONS(3933), 1, anon_sym_LBRACK, - ACTIONS(3993), 9, + STATE(1594), 1, + sym_parameter_list, + STATE(1550), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3991), 5, 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__, - [62890] = 3, + anon_sym___attribute__, + anon_sym_COLON, + [63045] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(3997), 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__, - [62908] = 3, + ACTIONS(3871), 1, + aux_sym_preproc_else_token1, + ACTIONS(3967), 1, + sym_identifier, + ACTIONS(3971), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3993), 1, + aux_sym_preproc_if_token2, + STATE(1567), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1583), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1661), 1, + sym_enumerator, + STATE(2202), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2203), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [63078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4003), 1, - anon_sym_LBRACK, - ACTIONS(4001), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2091), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(3316), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62926] = 6, + ACTIONS(3318), 1, + anon_sym_STAR, + STATE(1613), 1, + sym__declarator, + STATE(1941), 1, + sym_ms_based_modifier, + STATE(1543), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(3997), 1, anon_sym_LBRACK, - STATE(1732), 1, + STATE(1685), 1, sym_gnu_asm_output_operand, - STATE(2066), 1, + STATE(2139), 1, sym_string_literal, - ACTIONS(4005), 2, + ACTIONS(3995), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(95), 5, @@ -124981,88 +125349,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [62950] = 7, + [63131] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1601), 1, sym_parameter_list, - STATE(1556), 2, + STATE(1563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4009), 4, + ACTIONS(3999), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [62976] = 7, + [63157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACK, - STATE(1613), 1, - sym_parameter_list, - STATE(1556), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4013), 4, + ACTIONS(4003), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [63002] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63175] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4017), 1, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(1479), 2, + STATE(1601), 1, + sym_parameter_list, + STATE(1563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4015), 6, + ACTIONS(4007), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [63024] = 9, + [63201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, ACTIONS(4011), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, - anon_sym_COMMA, - STATE(1613), 1, - sym_parameter_list, - STATE(1677), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4021), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1556), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - anon_sym_LBRACK, - ACTIONS(4023), 9, + ACTIONS(4009), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125072,31 +125417,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63072] = 7, + [63219] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1601), 1, sym_parameter_list, - STATE(1556), 2, + STATE(1563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4027), 4, + ACTIONS(4013), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63098] = 3, + [63245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(4017), 1, anon_sym_LBRACK, - ACTIONS(4029), 9, + ACTIONS(4015), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125106,12 +125451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63116] = 3, + [63263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(4021), 1, anon_sym_LBRACK, - ACTIONS(4033), 9, + ACTIONS(4019), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125121,409 +125466,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63134] = 7, + [63281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(4025), 1, anon_sym_LBRACK, - STATE(1613), 1, - sym_parameter_list, - STATE(1556), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4037), 4, + ACTIONS(4023), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [63160] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 1, + ACTIONS(4029), 1, + anon_sym_LBRACK, + ACTIONS(4027), 9, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4041), 1, - anon_sym_COLON, - STATE(774), 1, - sym_string_literal, - STATE(1811), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63183] = 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4043), 1, - anon_sym_RPAREN, - STATE(774), 1, + ACTIONS(4033), 1, + anon_sym_LBRACK, + STATE(1733), 1, + sym_gnu_asm_input_operand, + STATE(2178), 1, sym_string_literal, - STATE(1827), 1, - sym_gnu_asm_output_operand_list, + ACTIONS(4031), 2, + anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63206] = 9, + [63341] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(475), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1601), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63235] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 1, - sym_identifier, - ACTIONS(4049), 1, - sym_system_lib_string, - STATE(1968), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4047), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63256] = 9, + ACTIONS(4035), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [63367] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, - anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(373), 1, - sym_compound_statement, - STATE(1145), 1, - sym__old_style_parameter_list, - STATE(1480), 1, + ACTIONS(4037), 1, + anon_sym_COMMA, + STATE(1601), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1719), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4039), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63285] = 9, + [63397] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(4043), 1, + anon_sym_LBRACK, + STATE(1478), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4041), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [63419] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - STATE(148), 1, + STATE(446), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63314] = 5, + [63448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4053), 1, - anon_sym_LBRACK, - STATE(1479), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4051), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [63335] = 7, + ACTIONS(4045), 1, + sym_identifier, + STATE(792), 1, + sym_string_literal, + STATE(1789), 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, + [63469] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 1, + sym_identifier, + ACTIONS(4051), 1, + sym_system_lib_string, + STATE(2075), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4049), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [63490] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1601), 1, sym_parameter_list, - STATE(1556), 2, + STATE(1563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4055), 3, + ACTIONS(4053), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [63360] = 9, + [63515] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - STATE(227), 1, + STATE(149), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63389] = 6, + [63544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4057), 1, - anon_sym_RPAREN, - STATE(774), 1, + ACTIONS(4045), 1, + sym_identifier, + STATE(792), 1, sym_string_literal, - STATE(1781), 1, - sym_gnu_asm_output_operand_list, + STATE(1792), 2, + sym__string, + sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63412] = 5, + [63565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4045), 1, sym_identifier, - ACTIONS(4061), 1, + STATE(792), 1, + sym_string_literal, + STATE(1799), 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, + [63586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + sym_identifier, + ACTIONS(4057), 1, sym_system_lib_string, - STATE(2161), 2, + STATE(2099), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4047), 5, + ACTIONS(4049), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63433] = 9, + [63607] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3851), 1, + anon_sym_LPAREN2, + ACTIONS(3855), 1, + anon_sym_LBRACK, + STATE(471), 1, + sym_compound_statement, + STATE(1160), 1, + sym__old_style_parameter_list, + STATE(1480), 1, + sym_parameter_list, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63636] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3845), 1, + ACTIONS(3851), 1, anon_sym_LPAREN2, - ACTIONS(3849), 1, + ACTIONS(3855), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(398), 1, sym_compound_statement, - STATE(1145), 1, + STATE(1160), 1, sym__old_style_parameter_list, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63462] = 5, + [63665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4059), 1, sym_identifier, - ACTIONS(4065), 1, + ACTIONS(4061), 1, sym_system_lib_string, - STATE(2171), 2, + STATE(1942), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4047), 5, + ACTIONS(4049), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63483] = 6, + [63686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4067), 1, - anon_sym_RPAREN, - STATE(774), 1, + ACTIONS(4063), 1, + sym_identifier, + ACTIONS(4065), 1, + sym_system_lib_string, + STATE(2000), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1782), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(95), 5, + ACTIONS(4049), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63506] = 5, + [63707] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(4069), 1, + anon_sym_LBRACK, + STATE(1478), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4067), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [63728] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3851), 1, + anon_sym_LPAREN2, + ACTIONS(3855), 1, + anon_sym_LBRACK, + STATE(222), 1, + sym_compound_statement, + STATE(1160), 1, + sym__old_style_parameter_list, + STATE(1480), 1, + sym_parameter_list, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63757] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4045), 1, sym_identifier, - ACTIONS(4071), 1, - sym_system_lib_string, - STATE(2120), 2, - sym_preproc_call_expression, + STATE(792), 1, sym_string_literal, - ACTIONS(4047), 5, + STATE(1773), 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, - [63527] = 5, + [63778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(4071), 1, sym_identifier, - ACTIONS(4075), 1, + ACTIONS(4073), 1, sym_system_lib_string, - STATE(2031), 2, + STATE(2042), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4047), 5, + ACTIONS(4049), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4079), 1, - anon_sym_LBRACK, - ACTIONS(4077), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63564] = 7, + [63799] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, + ACTIONS(3961), 1, aux_sym_preproc_else_token1, - ACTIONS(4081), 1, + ACTIONS(3967), 1, + sym_identifier, + ACTIONS(4075), 1, aux_sym_preproc_if_token2, - ACTIONS(4083), 1, + ACTIONS(4077), 1, aux_sym_preproc_elif_token1, - STATE(1637), 2, + STATE(1642), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2180), 2, + STATE(2221), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [63588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - anon_sym_LBRACK, - STATE(1742), 1, - sym_gnu_asm_input_operand, - STATE(2132), 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, - [63608] = 8, + [63823] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3945), 1, aux_sym_preproc_else_token1, - ACTIONS(3947), 1, + ACTIONS(4079), 1, aux_sym_preproc_if_token2, - ACTIONS(4085), 1, + ACTIONS(4081), 1, aux_sym_preproc_elif_token1, - STATE(1595), 1, + STATE(1638), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, + STATE(2168), 1, sym_enumerator, - STATE(2154), 2, + STATE(2181), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [63634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - anon_sym_LBRACK, - ACTIONS(4087), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63650] = 8, + [63849] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(148), 1, + STATE(471), 1, sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63676] = 5, + [63875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 1, + STATE(1704), 1, + sym_string_literal, + ACTIONS(4083), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [63893] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, anon_sym_LBRACK, - STATE(1773), 1, + STATE(1794), 1, sym_gnu_asm_output_operand, - STATE(2066), 1, + STATE(2139), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -125531,12 +125931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63696] = 3, + [63913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, + ACTIONS(4087), 1, anon_sym_LBRACK, - ACTIONS(4091), 7, + ACTIONS(4085), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125544,62 +125944,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63712] = 8, + [63929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4093), 1, + anon_sym_EQ, + ACTIONS(4089), 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, + [63947] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3945), 1, aux_sym_preproc_else_token1, - ACTIONS(4085), 1, + ACTIONS(4081), 1, aux_sym_preproc_elif_token1, ACTIONS(4095), 1, aux_sym_preproc_if_token2, - STATE(1638), 1, + STATE(1568), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, + STATE(2168), 1, sym_enumerator, - STATE(2217), 2, + STATE(2144), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [63738] = 5, + [63973] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, - sym_identifier, - ACTIONS(4102), 1, - aux_sym_preproc_elif_token1, - STATE(1575), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4100), 4, - aux_sym_preproc_if_token2, + ACTIONS(3961), 1, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [63758] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4083), 1, + ACTIONS(4077), 1, aux_sym_preproc_elif_token1, - ACTIONS(4104), 1, + ACTIONS(4097), 1, aux_sym_preproc_if_token2, - STATE(1637), 2, + STATE(1586), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2216), 2, + STATE(2188), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [63782] = 3, + [63997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, + ACTIONS(4101), 1, anon_sym_LBRACK, - ACTIONS(4106), 7, + ACTIONS(4099), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125607,178 +126006,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [63798] = 4, + [64013] = 3, ACTIONS(3), 1, sym_comment, - STATE(1718), 1, - sym_string_literal, - ACTIONS(4110), 2, + ACTIONS(4105), 1, + anon_sym_LBRACK, + ACTIONS(4103), 7, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, + [64029] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + STATE(222), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64055] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_LBRACK, + STATE(1819), 1, + sym_gnu_asm_input_operand, + STATE(2178), 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, - [63816] = 8, + [64075] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, + sym_identifier, + ACTIONS(3945), 1, + aux_sym_preproc_else_token1, + ACTIONS(3973), 1, + aux_sym_preproc_if_token2, + ACTIONS(4081), 1, + aux_sym_preproc_elif_token1, + STATE(1597), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2168), 1, + sym_enumerator, + STATE(2186), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [64101] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + STATE(446), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64127] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(645), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(373), 1, + STATE(149), 1, sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63842] = 8, + [64153] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3945), 1, aux_sym_preproc_else_token1, - ACTIONS(3959), 1, - aux_sym_preproc_if_token2, - ACTIONS(4085), 1, + ACTIONS(4081), 1, aux_sym_preproc_elif_token1, - STATE(1574), 1, + ACTIONS(4107), 1, + aux_sym_preproc_if_token2, + STATE(1638), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, + STATE(2168), 1, sym_enumerator, - STATE(2176), 2, + STATE(2223), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [63868] = 7, + [64179] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, + ACTIONS(3961), 1, aux_sym_preproc_else_token1, - ACTIONS(4083), 1, + ACTIONS(3967), 1, + sym_identifier, + ACTIONS(4077), 1, aux_sym_preproc_elif_token1, - ACTIONS(4112), 1, + ACTIONS(4109), 1, aux_sym_preproc_if_token2, STATE(1567), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2155), 2, + STATE(2203), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [63892] = 8, + [64203] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(227), 1, - sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + ACTIONS(4111), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63918] = 8, + [64227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3961), 1, aux_sym_preproc_else_token1, - ACTIONS(4085), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4114), 1, - aux_sym_preproc_if_token2, - STATE(1589), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - STATE(2105), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63944] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4083), 1, + ACTIONS(4077), 1, aux_sym_preproc_elif_token1, - ACTIONS(4116), 1, + ACTIONS(4113), 1, aux_sym_preproc_if_token2, - STATE(1576), 2, + STATE(1642), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2177), 2, + STATE(2207), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [63968] = 5, + [64251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - sym_identifier, - STATE(1550), 1, - sym_string_literal, - STATE(1787), 1, - 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, - [63988] = 5, + ACTIONS(4117), 1, + anon_sym_LBRACK, + ACTIONS(4115), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [64267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - sym_identifier, - STATE(1559), 1, - sym_string_literal, - STATE(1769), 1, - 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, - [64008] = 6, + ACTIONS(4121), 1, + anon_sym_LBRACK, + ACTIONS(4119), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [64283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - sym_identifier, ACTIONS(4125), 1, + anon_sym_LBRACK, + ACTIONS(4123), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [64299] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + sym_identifier, + ACTIONS(4132), 1, aux_sym_preproc_elif_token1, - STATE(1587), 1, + STATE(1590), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, + STATE(2150), 1, sym_enumerator, - ACTIONS(4123), 4, + ACTIONS(4130), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [64030] = 3, + [64321] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, + sym_identifier, + ACTIONS(3945), 1, + aux_sym_preproc_else_token1, + ACTIONS(3993), 1, + aux_sym_preproc_if_token2, + ACTIONS(4081), 1, + aux_sym_preproc_elif_token1, + STATE(1583), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2168), 1, + sym_enumerator, + STATE(2202), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [64347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 1, + ACTIONS(4136), 1, anon_sym_LBRACK, - ACTIONS(4127), 7, + ACTIONS(4134), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125786,30 +126261,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64046] = 8, + [64363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3961), 1, aux_sym_preproc_else_token1, - ACTIONS(4085), 1, + ACTIONS(3967), 1, + sym_identifier, + ACTIONS(4077), 1, aux_sym_preproc_elif_token1, - ACTIONS(4131), 1, + ACTIONS(4138), 1, aux_sym_preproc_if_token2, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, + STATE(1642), 2, sym_enumerator, - STATE(2122), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64072] = 3, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2159), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [64387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 1, + ACTIONS(4142), 1, anon_sym_LBRACK, - ACTIONS(4133), 7, + ACTIONS(4140), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125817,236 +126291,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64088] = 8, + [64403] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_LBRACK, ACTIONS(3855), 1, - anon_sym_LPAREN2, - STATE(382), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64114] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(475), 1, + STATE(398), 1, sym_compound_statement, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64140] = 4, + [64429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4149), 1, aux_sym_preproc_elif_token1, - ACTIONS(4141), 1, - anon_sym_EQ, - ACTIONS(4137), 6, - anon_sym_COMMA, + STATE(1596), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4147), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - sym_identifier, - [64158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4145), 1, - anon_sym_LBRACK, - ACTIONS(4143), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64174] = 8, + [64449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3945), 1, aux_sym_preproc_else_token1, - ACTIONS(4085), 1, + ACTIONS(4081), 1, aux_sym_preproc_elif_token1, - ACTIONS(4147), 1, + ACTIONS(4151), 1, aux_sym_preproc_if_token2, STATE(1638), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, + STATE(2168), 1, sym_enumerator, - STATE(2179), 2, + STATE(2205), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [64200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, - sym_identifier, - STATE(1551), 1, - sym_string_literal, - STATE(1757), 1, - 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, - [64220] = 7, + [64475] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - ACTIONS(4149), 2, - anon_sym_COMMA, + ACTIONS(3933), 1, + anon_sym_LBRACK, + ACTIONS(4153), 1, anon_sym_RPAREN, - STATE(1512), 2, + STATE(1594), 1, + sym_parameter_list, + STATE(1550), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64244] = 7, + [64498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, - sym_identifier, - ACTIONS(3965), 1, - aux_sym_preproc_else_token1, - ACTIONS(4083), 1, + ACTIONS(4157), 1, + anon_sym_COMMA, + ACTIONS(4159), 1, aux_sym_preproc_elif_token1, - ACTIONS(4151), 1, + ACTIONS(4155), 5, aux_sym_preproc_if_token2, - STATE(1637), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2151), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 1, - anon_sym_LBRACK, - ACTIONS(4153), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - STATE(1563), 1, - sym_string_literal, - STATE(1755), 1, - 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, - [64304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 1, - anon_sym_LBRACK, - ACTIONS(4157), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [64319] = 8, + [64515] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, ACTIONS(4161), 1, sym_identifier, - STATE(1056), 1, + STATE(1055), 1, sym_field_declaration_list, - STATE(1661), 1, + STATE(1655), 1, sym_attribute_specifier, - STATE(1800), 1, + STATE(1739), 1, sym_ms_declspec_modifier, - [64344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4166), 1, - anon_sym_EQ, - ACTIONS(4168), 1, - anon_sym_DOT, - STATE(1603), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [64363] = 3, + [64540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 1, + ACTIONS(4165), 1, anon_sym_LBRACK, - ACTIONS(4171), 6, + ACTIONS(4163), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64378] = 7, + [64555] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4175), 1, + ACTIONS(4167), 1, anon_sym_RPAREN, - STATE(1577), 1, + STATE(1601), 1, sym_parameter_list, - STATE(1543), 2, + STATE(1563), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64401] = 3, + [64578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 1, + anon_sym_LBRACK, + ACTIONS(4169), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [64593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 1, + anon_sym_LBRACK, + ACTIONS(4173), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [64608] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4179), 1, @@ -126058,7 +126452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64416] = 3, + [64623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4183), 1, @@ -126070,162 +126464,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64431] = 5, + [64638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 1, + ACTIONS(4187), 1, + anon_sym_LBRACK, + ACTIONS(4185), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [64653] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, anon_sym_LBRACK, - ACTIONS(4185), 1, + ACTIONS(4192), 1, anon_sym_EQ, - ACTIONS(4187), 1, + ACTIONS(4194), 1, anon_sym_DOT, - STATE(1603), 4, + STATE(1608), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [64450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4191), 1, - anon_sym_COMMA, - ACTIONS(4193), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4189), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64467] = 3, + [64672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4199), 1, anon_sym_LBRACK, - ACTIONS(4195), 6, + ACTIONS(4197), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64482] = 7, + [64687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4011), 1, + ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(4199), 1, - anon_sym_RPAREN, - STATE(1613), 1, - sym_parameter_list, - STATE(1556), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64505] = 3, + ACTIONS(4201), 1, + anon_sym_EQ, + ACTIONS(4203), 1, + anon_sym_DOT, + STATE(1608), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [64706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4203), 1, + ACTIONS(4207), 1, anon_sym_LBRACK, - ACTIONS(4201), 6, + ACTIONS(4205), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64520] = 3, + [64721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, + ACTIONS(4211), 1, anon_sym_LBRACK, - ACTIONS(4205), 6, + ACTIONS(4209), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64535] = 7, + [64736] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, - anon_sym_LBRACK, ACTIONS(3855), 1, + anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4209), 1, + ACTIONS(4213), 1, anon_sym_RPAREN, STATE(1480), 1, sym_parameter_list, - STATE(1512), 2, + STATE(1507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 1, - anon_sym_LBRACK, - ACTIONS(4211), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [64573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4217), 1, - anon_sym_LBRACK, - ACTIONS(4215), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [64588] = 4, + [64759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 1, + ACTIONS(4215), 1, anon_sym_LPAREN2, - STATE(1624), 2, + STATE(1617), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, + ACTIONS(4217), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64604] = 3, + [64775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 2, + ACTIONS(4219), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4223), 4, + ACTIONS(4221), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64618] = 5, + [64789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(4223), 1, + anon_sym_LPAREN2, + STATE(1634), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4217), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [64805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, anon_sym_LPAREN2, + STATE(1634), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4217), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [64821] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4227), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4225), 3, + anon_sym_EQ, + ACTIONS(4089), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64636] = 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [64835] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4229), 2, @@ -126236,255 +126625,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64650] = 5, + [64849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4233), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64668] = 3, + STATE(2212), 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, + [64863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4123), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(4229), 2, + anon_sym_RBRACE, sym_identifier, - [64682] = 3, + ACTIONS(4231), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [64877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 2, + ACTIONS(4233), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4237), 4, + ACTIONS(4235), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64696] = 4, + [64891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, + ACTIONS(4237), 1, anon_sym_LPAREN2, - STATE(1624), 2, + STATE(1616), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4241), 3, + ACTIONS(4217), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4244), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4246), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [64726] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(774), 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, - [64740] = 5, + [64907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4227), 1, + ACTIONS(4241), 1, anon_sym_LBRACK, - STATE(1660), 1, + STATE(1654), 1, sym_parameter_list, - ACTIONS(4248), 3, + ACTIONS(4239), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64758] = 3, + [64925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 2, + ACTIONS(4243), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4246), 4, + ACTIONS(4245), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64772] = 3, + [64939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 2, + ACTIONS(4247), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4252), 4, + ACTIONS(4249), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64786] = 3, + [64953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 2, + ACTIONS(4251), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4252), 4, + ACTIONS(4253), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 1, - anon_sym_EQ, - ACTIONS(4137), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [64814] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4256), 1, - anon_sym_LPAREN2, - STATE(1624), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [64830] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4258), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - STATE(1660), 1, - sym_parameter_list, - ACTIONS(4260), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64866] = 3, + [64967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 2, + ACTIONS(3987), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4264), 4, + ACTIONS(4255), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 1, - anon_sym_LPAREN2, - STATE(1632), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [64896] = 4, + [64981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4268), 1, - sym_identifier, - STATE(1637), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4100), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(4132), 1, aux_sym_preproc_elif_token1, - [64912] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - sym_identifier, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2123), 1, - sym_enumerator, - ACTIONS(4123), 3, + ACTIONS(4130), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [64930] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2206), 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, - [64944] = 3, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [64995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4257), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4273), 4, + ACTIONS(4259), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64958] = 3, + [65009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 2, + ACTIONS(4261), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4277), 4, + ACTIONS(4263), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64972] = 3, + [65023] = 3, ACTIONS(3), 1, sym_comment, - STATE(2085), 1, + STATE(2214), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -126492,10 +126771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64986] = 3, + [65037] = 3, ACTIONS(3), 1, sym_comment, - STATE(1756), 1, + STATE(1755), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -126503,5625 +126782,5710 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65000] = 4, + [65051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 1, + ACTIONS(4265), 1, anon_sym_LPAREN2, - STATE(1617), 2, + STATE(1634), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4221), 3, + ACTIONS(4267), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [65016] = 3, + [65067] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + ACTIONS(4241), 1, + anon_sym_LBRACK, + STATE(1654), 1, + sym_parameter_list, + ACTIONS(4270), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65085] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(770), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65099] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + ACTIONS(4241), 1, + anon_sym_LBRACK, + STATE(1654), 1, + sym_parameter_list, + ACTIONS(4272), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + sym_identifier, + STATE(1638), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2168), 1, + sym_enumerator, + ACTIONS(4130), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [65135] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + ACTIONS(4241), 1, + anon_sym_LBRACK, + STATE(1654), 1, + sym_parameter_list, + ACTIONS(4274), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4243), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4283), 4, + ACTIONS(4245), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65030] = 5, + [65167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4227), 1, + ACTIONS(4241), 1, anon_sym_LBRACK, - STATE(1660), 1, + STATE(1654), 1, sym_parameter_list, - ACTIONS(4285), 3, + ACTIONS(4276), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [65048] = 5, + [65185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(4278), 1, + sym_identifier, + STATE(1642), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4147), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [65201] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4227), 1, + ACTIONS(4241), 1, anon_sym_LBRACK, - STATE(1660), 1, + STATE(1654), 1, sym_parameter_list, - ACTIONS(4149), 2, + ACTIONS(4281), 3, anon_sym_COMMA, anon_sym_RPAREN, - [65065] = 5, + anon_sym_COLON, + [65219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - ACTIONS(4289), 1, - anon_sym_COLON_COLON, - STATE(1831), 1, - sym_argument_list, - ACTIONS(4287), 2, + ACTIONS(4283), 5, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [65082] = 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [65230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(4285), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65093] = 2, + [65241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 5, + ACTIONS(4287), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65104] = 2, + [65252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 5, + ACTIONS(4289), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65115] = 2, + [65263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 5, + ACTIONS(4291), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65126] = 2, + [65274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 5, + ACTIONS(4293), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65137] = 6, + [65285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(3867), 1, sym_identifier, - ACTIONS(4301), 1, + ACTIONS(4295), 1, aux_sym_preproc_if_token2, - STATE(1609), 1, + STATE(1599), 1, sym_enumerator, - STATE(1695), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1701), 1, + STATE(1707), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - [65156] = 2, + STATE(1708), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [65304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4303), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3863), 1, anon_sym_LPAREN2, + ACTIONS(4241), 1, anon_sym_LBRACK, - anon_sym_COLON, - [65167] = 6, + STATE(1654), 1, + sym_parameter_list, + ACTIONS(4111), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [65321] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(4305), 1, + ACTIONS(4297), 1, sym_identifier, - STATE(1057), 1, + STATE(1077), 1, sym_field_declaration_list, - STATE(1804), 1, + STATE(1771), 1, sym_ms_declspec_modifier, - [65186] = 2, + [65340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 5, + ACTIONS(4299), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65197] = 2, + [65351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 5, + ACTIONS(4301), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65208] = 2, + [65362] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2819), 1, + anon_sym_LBRACE, + ACTIONS(4303), 1, + sym_identifier, + STATE(1076), 1, + sym_field_declaration_list, + STATE(1743), 1, + sym_ms_declspec_modifier, + [65381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 5, + ACTIONS(4305), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65219] = 2, + [65392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(4307), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65230] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4315), 1, - sym_identifier, - STATE(1026), 1, - sym_field_declaration_list, - STATE(1766), 1, - sym_ms_declspec_modifier, - [65249] = 2, + [65403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 5, + ACTIONS(4309), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65260] = 3, + [65414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + ACTIONS(4313), 1, + anon_sym_COLON_COLON, + STATE(1855), 1, + sym_argument_list, + ACTIONS(4311), 2, anon_sym_COMMA, - ACTIONS(4189), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [65273] = 2, + anon_sym_RBRACK_RBRACK, + [65431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 5, + ACTIONS(4315), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65284] = 4, + [65442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4323), 1, - anon_sym_SEMI, - STATE(1668), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65298] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4325), 1, - aux_sym_preproc_include_token2, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4329), 1, - sym_preproc_arg, - STATE(1925), 1, - sym_preproc_params, - [65314] = 4, + ACTIONS(4317), 1, + anon_sym_COMMA, + ACTIONS(4155), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [65455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4331), 1, + ACTIONS(4319), 1, anon_sym_COMMA, - STATE(1670), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4333), 2, + STATE(1662), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4322), 2, anon_sym_RPAREN, anon_sym_COLON, - [65328] = 4, + [65469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4335), 1, + ACTIONS(4324), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65342] = 4, + [65483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, - sym_identifier, - ACTIONS(4337), 1, - aux_sym_preproc_if_token2, - STATE(1695), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [65356] = 4, - ACTIONS(3), 1, + ACTIONS(4326), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [65493] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4331), 1, - anon_sym_COMMA, - STATE(1735), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4339), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65370] = 4, + ACTIONS(4328), 1, + anon_sym_DQUOTE, + ACTIONS(4330), 1, + aux_sym_string_literal_token1, + ACTIONS(4333), 1, + sym_escape_sequence, + STATE(1665), 1, + aux_sym_string_literal_repeat1, + [65509] = 4, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_SQUOTE, + STATE(1666), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4338), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [65523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, ACTIONS(4341), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1702), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65384] = 4, + [65537] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4343), 1, anon_sym_COMMA, - STATE(1672), 1, - aux_sym__type_definition_declarators_repeat1, + STATE(1668), 1, + aux_sym_gnu_asm_clobber_list_repeat1, ACTIONS(4346), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [65398] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [65551] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3844), 1, + anon_sym___attribute__, ACTIONS(4348), 1, - anon_sym___except, - ACTIONS(4350), 1, - anon_sym___finally, - STATE(319), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65412] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - STATE(1852), 1, - sym_argument_list, - ACTIONS(4352), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [65426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(4301), 1, - aux_sym_preproc_if_token2, - STATE(1701), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, - sym_enumerator, - [65442] = 5, - ACTIONS(3589), 1, + anon_sym_SEMI, + STATE(1720), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [65565] = 5, + ACTIONS(3597), 1, sym_comment, + ACTIONS(4350), 1, + aux_sym_preproc_include_token2, + ACTIONS(4352), 1, + anon_sym_LPAREN, ACTIONS(4354), 1, - anon_sym_DQUOTE, - ACTIONS(4356), 1, - aux_sym_string_literal_token1, - ACTIONS(4358), 1, - sym_escape_sequence, - STATE(1698), 1, - aux_sym_string_literal_repeat1, - [65458] = 4, + sym_preproc_arg, + STATE(1906), 1, + sym_preproc_params, + [65581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_COMMA, - STATE(1672), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4360), 2, - anon_sym_SEMI, + ACTIONS(3844), 1, anon_sym___attribute__, - [65472] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4362), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65486] = 4, + ACTIONS(4356), 1, + anon_sym_SEMI, + STATE(1501), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [65595] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3929), 1, anon_sym_COMMA, - STATE(1684), 1, + STATE(1725), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4366), 2, + ACTIONS(4358), 2, anon_sym_SEMI, anon_sym___attribute__, - [65500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4368), 1, - anon_sym_SEMI, - STATE(1688), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65514] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4370), 1, - aux_sym_preproc_include_token2, - ACTIONS(4372), 1, - sym_preproc_arg, - STATE(1877), 1, - sym_preproc_params, - [65530] = 5, - ACTIONS(3589), 1, + [65609] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4360), 1, anon_sym_DQUOTE, - ACTIONS(4376), 1, + ACTIONS(4362), 1, aux_sym_string_literal_token1, - ACTIONS(4378), 1, + ACTIONS(4364), 1, sym_escape_sequence, - STATE(1708), 1, + STATE(1694), 1, aux_sym_string_literal_repeat1, - [65546] = 5, - ACTIONS(3589), 1, + [65625] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4366), 1, + anon_sym_DQUOTE, + ACTIONS(4368), 1, aux_sym_string_literal_token1, - ACTIONS(4358), 1, + ACTIONS(4370), 1, sym_escape_sequence, - ACTIONS(4380), 1, + STATE(1665), 1, + aux_sym_string_literal_repeat1, + [65641] = 5, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4372), 1, anon_sym_DQUOTE, - STATE(1698), 1, + ACTIONS(4374), 1, + aux_sym_string_literal_token1, + ACTIONS(4376), 1, + sym_escape_sequence, + STATE(1686), 1, aux_sym_string_literal_repeat1, - [65562] = 4, + [65657] = 5, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4352), 1, + anon_sym_LPAREN, + ACTIONS(4378), 1, + aux_sym_preproc_include_token2, + ACTIONS(4380), 1, + sym_preproc_arg, + STATE(1856), 1, + sym_preproc_params, + [65673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(3929), 1, anon_sym_COMMA, - STATE(1684), 1, + STATE(1724), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4385), 2, + ACTIONS(4382), 2, anon_sym_SEMI, anon_sym___attribute__, - [65576] = 4, + [65687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4387), 1, - anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65590] = 4, - ACTIONS(3589), 1, + ACTIONS(4384), 1, + anon_sym_COMMA, + STATE(1678), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4387), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65701] = 5, + ACTIONS(3597), 1, sym_comment, + ACTIONS(4352), 1, + anon_sym_LPAREN, ACTIONS(4389), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65604] = 5, - ACTIONS(3589), 1, + aux_sym_preproc_include_token2, + ACTIONS(4391), 1, + sym_preproc_arg, + STATE(1861), 1, + sym_preproc_params, + [65717] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(4352), 1, anon_sym_LPAREN, - ACTIONS(4391), 1, - aux_sym_preproc_include_token2, ACTIONS(4393), 1, + aux_sym_preproc_include_token2, + ACTIONS(4395), 1, sym_preproc_arg, - STATE(1929), 1, + STATE(1832), 1, sym_preproc_params, - [65620] = 4, - ACTIONS(3), 1, + [65733] = 4, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4395), 1, - anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65634] = 4, + ACTIONS(4397), 1, + anon_sym_SQUOTE, + STATE(1666), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4399), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [65747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4397), 1, + ACTIONS(4401), 1, anon_sym_SEMI, - STATE(1724), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65648] = 5, + [65761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4403), 1, anon_sym_COMMA, - ACTIONS(4401), 1, - anon_sym_RPAREN, - STATE(1807), 1, - aux_sym_parameter_list_repeat1, - STATE(1826), 1, - aux_sym__old_style_parameter_list_repeat1, - [65664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65674] = 4, + STATE(1683), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4406), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [65775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4408), 1, anon_sym___except, - ACTIONS(4407), 1, + ACTIONS(4410), 1, anon_sym___finally, - STATE(199), 2, + STATE(309), 2, sym_seh_except_clause, sym_seh_finally_clause, - [65688] = 4, + [65789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 1, + anon_sym_COMMA, + STATE(1731), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4414), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65803] = 5, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4368), 1, + aux_sym_string_literal_token1, + ACTIONS(4370), 1, + sym_escape_sequence, + ACTIONS(4416), 1, + anon_sym_DQUOTE, + STATE(1665), 1, + aux_sym_string_literal_repeat1, + [65819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4418), 1, anon_sym___except, - ACTIONS(4411), 1, + ACTIONS(4420), 1, anon_sym___finally, - STATE(319), 2, + STATE(325), 2, sym_seh_except_clause, sym_seh_finally_clause, - [65702] = 5, - ACTIONS(3589), 1, + [65833] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(4352), 1, anon_sym_LPAREN, - ACTIONS(4413), 1, + ACTIONS(4422), 1, aux_sym_preproc_include_token2, - ACTIONS(4415), 1, + ACTIONS(4424), 1, sym_preproc_arg, - STATE(1861), 1, + STATE(1837), 1, sym_preproc_params, - [65718] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - sym_identifier, - ACTIONS(4417), 1, - aux_sym_preproc_if_token2, - STATE(1575), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [65732] = 5, - ACTIONS(3589), 1, + [65849] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4419), 1, + ACTIONS(4426), 1, anon_sym_DQUOTE, - ACTIONS(4421), 1, + ACTIONS(4428), 1, aux_sym_string_literal_token1, - ACTIONS(4423), 1, + ACTIONS(4430), 1, sym_escape_sequence, - STATE(1736), 1, + STATE(1699), 1, aux_sym_string_literal_repeat1, - [65748] = 5, - ACTIONS(3589), 1, + [65865] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - ACTIONS(4427), 1, - aux_sym_string_literal_token1, - ACTIONS(4429), 1, - sym_escape_sequence, - STATE(1683), 1, - aux_sym_string_literal_repeat1, - [65764] = 5, - ACTIONS(3589), 1, + ACTIONS(3863), 1, + anon_sym_LPAREN2, + ACTIONS(4241), 1, + anon_sym_LBRACK, + ACTIONS(4432), 1, + anon_sym_RPAREN, + STATE(1654), 1, + sym_parameter_list, + [65881] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_DQUOTE, - ACTIONS(4433), 1, - aux_sym_string_literal_token1, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4434), 1, + anon_sym_SEMI, + STATE(1730), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [65895] = 5, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4352), 1, + anon_sym_LPAREN, ACTIONS(4436), 1, - sym_escape_sequence, - STATE(1698), 1, - aux_sym_string_literal_repeat1, - [65780] = 4, - ACTIONS(3589), 1, + aux_sym_preproc_include_token2, + ACTIONS(4438), 1, + sym_preproc_arg, + STATE(1924), 1, + sym_preproc_params, + [65911] = 4, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4439), 1, + ACTIONS(4440), 1, anon_sym_SQUOTE, - STATE(1699), 1, + STATE(1666), 1, aux_sym_char_literal_repeat1, - ACTIONS(4441), 2, + ACTIONS(4399), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [65794] = 5, - ACTIONS(3589), 1, + [65925] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4444), 1, - anon_sym_DQUOTE, - ACTIONS(4446), 1, + ACTIONS(4368), 1, aux_sym_string_literal_token1, - ACTIONS(4448), 1, + ACTIONS(4370), 1, sym_escape_sequence, - STATE(1676), 1, + ACTIONS(4442), 1, + anon_sym_DQUOTE, + STATE(1665), 1, aux_sym_string_literal_repeat1, - [65810] = 5, + [65941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - sym_identifier, + ACTIONS(4444), 1, + anon_sym_COMMA, + ACTIONS(4446), 1, + anon_sym_RPAREN, + STATE(1741), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1820), 1, + aux_sym_parameter_list_repeat1, + [65957] = 5, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4352), 1, + anon_sym_LPAREN, + ACTIONS(4448), 1, + aux_sym_preproc_include_token2, ACTIONS(4450), 1, - aux_sym_preproc_if_token2, - STATE(1587), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2112), 1, - sym_enumerator, - [65826] = 4, + sym_preproc_arg, + STATE(1850), 1, + sym_preproc_params, + [65973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, ACTIONS(4452), 1, anon_sym_SEMI, - STATE(1671), 2, + STATE(1726), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65840] = 4, + [65987] = 4, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4454), 1, + anon_sym_SQUOTE, + STATE(1666), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4399), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66001] = 5, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4368), 1, + aux_sym_string_literal_token1, + ACTIONS(4370), 1, + sym_escape_sequence, + ACTIONS(4456), 1, + anon_sym_DQUOTE, + STATE(1665), 1, + aux_sym_string_literal_repeat1, + [66017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4454), 1, + ACTIONS(4458), 1, anon_sym_SEMI, - STATE(1721), 2, + STATE(1715), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65854] = 5, + [66031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4460), 1, + anon_sym_COMMA, + STATE(1678), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4462), 2, anon_sym_RPAREN, - STATE(1660), 1, - sym_parameter_list, - [65870] = 4, + anon_sym_COLON, + [66045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, - anon_sym_COMMA, - STATE(1716), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4458), 2, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4464), 1, anon_sym_SEMI, + STATE(1501), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, anon_sym___attribute__, - [65884] = 4, + ACTIONS(4466), 1, + anon_sym_SEMI, + STATE(1682), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4468), 1, anon_sym_COMMA, - STATE(1706), 1, + STATE(1705), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4463), 2, + ACTIONS(4470), 2, anon_sym_RPAREN, anon_sym_COLON, - [65898] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4465), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [65912] = 5, - ACTIONS(3589), 1, + [66087] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, - aux_sym_string_literal_token1, - ACTIONS(4358), 1, - sym_escape_sequence, - ACTIONS(4467), 1, - anon_sym_DQUOTE, - STATE(1698), 1, - aux_sym_string_literal_repeat1, - [65928] = 4, + ACTIONS(4468), 1, + anon_sym_COMMA, + STATE(1668), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4472), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 1, + ACTIONS(4474), 1, anon_sym___except, - ACTIONS(4471), 1, + ACTIONS(4476), 1, anon_sym___finally, - STATE(300), 2, + STATE(194), 2, sym_seh_except_clause, sym_seh_finally_clause, - [65942] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4473), 1, - anon_sym_COMMA, - STATE(1712), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4475), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65956] = 2, + [66115] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(3906), 1, sym_identifier, - [65966] = 4, + ACTIONS(4478), 1, + aux_sym_preproc_if_token2, + STATE(1590), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2150), 1, + sym_enumerator, + [66131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4477), 1, - anon_sym_COMMA, - STATE(1712), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4480), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [65980] = 4, + ACTIONS(3867), 1, + sym_identifier, + ACTIONS(4480), 1, + aux_sym_preproc_if_token2, + STATE(1596), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [66145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, ACTIONS(4482), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1729), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65994] = 5, - ACTIONS(3589), 1, + [66159] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(4352), 1, anon_sym_LPAREN, ACTIONS(4484), 1, aux_sym_preproc_include_token2, ACTIONS(4486), 1, sym_preproc_arg, - STATE(1899), 1, + STATE(1876), 1, + sym_preproc_params, + [66175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym___except, + ACTIONS(4490), 1, + anon_sym___finally, + STATE(103), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66189] = 5, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4352), 1, + anon_sym_LPAREN, + ACTIONS(4492), 1, + aux_sym_preproc_include_token2, + ACTIONS(4494), 1, + sym_preproc_arg, + STATE(1870), 1, sym_preproc_params, - [66010] = 4, + [66205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4496), 1, + anon_sym_SEMI, + STATE(1723), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3906), 1, + sym_identifier, + ACTIONS(4295), 1, + aux_sym_preproc_if_token2, + STATE(1707), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2150), 1, + sym_enumerator, + [66235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4488), 1, + ACTIONS(4498), 1, anon_sym_SEMI, - STATE(1685), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66024] = 4, + [66249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + STATE(1857), 1, + sym_argument_list, + ACTIONS(4500), 2, anon_sym_COMMA, - STATE(1684), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4490), 2, + anon_sym_RBRACK_RBRACK, + [66263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3867), 1, + sym_identifier, + ACTIONS(4502), 1, + aux_sym_preproc_if_token2, + STATE(1708), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [66277] = 4, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_SQUOTE, + STATE(1666), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4399), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_COMMA, + STATE(1683), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4506), 2, anon_sym_SEMI, anon_sym___attribute__, - [66038] = 4, + [66305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4492), 1, + ACTIONS(4508), 1, anon_sym_SEMI, - STATE(1727), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66052] = 4, + [66319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, - anon_sym_COMMA, - STATE(1730), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4496), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66066] = 4, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4510), 1, + anon_sym_SEMI, + STATE(1663), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym___except, - ACTIONS(4500), 1, - anon_sym___finally, - STATE(103), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66080] = 4, + ACTIONS(4130), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [66343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4502), 1, + ACTIONS(4512), 1, anon_sym_SEMI, - STATE(1722), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66094] = 4, + [66357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3929), 1, + anon_sym_COMMA, + STATE(1725), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4514), 2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(4504), 1, + [66371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 1, + anon_sym_COMMA, + STATE(1725), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4519), 2, anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66108] = 4, + anon_sym___attribute__, + [66385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4506), 1, + ACTIONS(4521), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66122] = 5, - ACTIONS(3589), 1, + [66399] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4508), 1, - aux_sym_preproc_include_token2, - ACTIONS(4510), 1, - sym_preproc_arg, - STATE(1911), 1, - sym_preproc_params, - [66138] = 4, + ACTIONS(4523), 1, + anon_sym___except, + ACTIONS(4525), 1, + anon_sym___finally, + STATE(297), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4512), 1, + ACTIONS(4527), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1671), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66152] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4514), 1, - aux_sym_preproc_include_token2, - ACTIONS(4516), 1, - sym_preproc_arg, - STATE(1921), 1, - sym_preproc_params, - [66168] = 4, + [66427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4518), 1, + ACTIONS(4529), 1, anon_sym_SEMI, - STATE(1733), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66182] = 4, + [66441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym___attribute__, - ACTIONS(4520), 1, + ACTIONS(4531), 1, anon_sym_SEMI, - STATE(1487), 2, + STATE(1501), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66196] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - aux_sym_preproc_include_token2, - ACTIONS(4524), 1, - sym_preproc_arg, - STATE(1928), 1, - sym_preproc_params, - [66212] = 5, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4327), 1, - anon_sym_LPAREN, - ACTIONS(4526), 1, - aux_sym_preproc_include_token2, - ACTIONS(4528), 1, - sym_preproc_arg, - STATE(1909), 1, - sym_preproc_params, - [66228] = 4, + [66455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(4412), 1, anon_sym_COMMA, - STATE(1706), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4530), 2, + STATE(1662), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4533), 2, anon_sym_RPAREN, anon_sym_COLON, - [66242] = 4, + [66469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, + ACTIONS(4535), 1, anon_sym___except, - ACTIONS(4534), 1, + ACTIONS(4537), 1, anon_sym___finally, - STATE(311), 2, + STATE(325), 2, sym_seh_except_clause, sym_seh_finally_clause, - [66256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4473), 1, - anon_sym_COMMA, - STATE(1710), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4536), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66270] = 4, + [66483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4538), 1, - anon_sym_SEMI, - STATE(1487), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66284] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4540), 1, - anon_sym_SEMI, - STATE(1713), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_COMMA, - STATE(1735), 1, + STATE(1701), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4545), 2, + ACTIONS(4539), 2, anon_sym_RPAREN, anon_sym_COLON, - [66312] = 5, - ACTIONS(3589), 1, + [66497] = 5, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4541), 1, + anon_sym_DQUOTE, + ACTIONS(4543), 1, aux_sym_string_literal_token1, - ACTIONS(4358), 1, + ACTIONS(4545), 1, sym_escape_sequence, - ACTIONS(4547), 1, - anon_sym_DQUOTE, - STATE(1698), 1, + STATE(1674), 1, aux_sym_string_literal_repeat1, - [66328] = 4, - ACTIONS(3589), 1, + [66513] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(4547), 1, + anon_sym_RPAREN, ACTIONS(4549), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4364), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66342] = 4, + anon_sym_COLON, + STATE(1817), 1, + sym_gnu_asm_clobber_list, + [66526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, - anon_sym_RPAREN, - ACTIONS(4551), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - STATE(1738), 1, - aux_sym_preproc_argument_list_repeat1, - [66355] = 4, + ACTIONS(4551), 1, + anon_sym_SEMI, + STATE(1811), 1, + aux_sym__declaration_declarator_repeat1, + [66539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_RPAREN, - ACTIONS(4556), 1, - anon_sym_COLON, - STATE(1790), 1, - sym_gnu_asm_clobber_list, - [66368] = 3, - ACTIONS(3589), 1, + ACTIONS(2083), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4553), 1, + sym_identifier, + STATE(1854), 1, + sym_variadic_parameter, + [66552] = 3, + ACTIONS(3597), 1, sym_comment, - STATE(1737), 1, + STATE(1698), 1, aux_sym_char_literal_repeat1, - ACTIONS(4558), 2, + ACTIONS(4555), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [66379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 1, - anon_sym_COMMA, - ACTIONS(4562), 1, - anon_sym_RBRACK_RBRACK, - STATE(1765), 1, - aux_sym_attribute_declaration_repeat1, - [66392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4564), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66401] = 4, + [66563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, - anon_sym_COMMA, - ACTIONS(4568), 1, - anon_sym_RPAREN, - STATE(1807), 1, - aux_sym_parameter_list_repeat1, - [66414] = 4, + ACTIONS(2819), 1, + anon_sym_LBRACE, + ACTIONS(4557), 1, + sym_identifier, + STATE(1076), 1, + sym_field_declaration_list, + [66576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(4559), 1, anon_sym_COMMA, - ACTIONS(4572), 1, + ACTIONS(4561), 1, anon_sym_RPAREN, - STATE(1760), 1, + STATE(1759), 1, aux_sym_gnu_asm_goto_list_repeat1, - [66427] = 4, + [66589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4563), 1, anon_sym_COMMA, - ACTIONS(4574), 1, - anon_sym_RBRACK_RBRACK, - STATE(1741), 1, - aux_sym_attribute_declaration_repeat1, - [66440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4576), 1, - anon_sym_SEMI, - STATE(2200), 1, - sym_attribute_specifier, - [66453] = 2, + ACTIONS(4565), 1, + anon_sym_RPAREN, + STATE(1784), 1, + aux_sym__old_style_parameter_list_repeat1, + [66602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 3, + ACTIONS(4567), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [66462] = 4, + [66611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, - anon_sym_COMMA, - ACTIONS(4580), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_generic_expression_repeat1, - [66475] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4582), 1, - aux_sym_preproc_include_token2, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - STATE(1978), 1, - sym_preproc_argument_list, - [66488] = 4, + ACTIONS(2819), 1, + anon_sym_LBRACE, + ACTIONS(4569), 1, + sym_identifier, + STATE(1043), 1, + sym_field_declaration_list, + [66624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4571), 1, anon_sym_COMMA, - ACTIONS(4589), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_generic_expression_repeat1, - [66501] = 4, + ACTIONS(4573), 1, + anon_sym_RBRACK_RBRACK, + STATE(1765), 1, + aux_sym_attribute_declaration_repeat1, + [66637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(4575), 1, anon_sym_COMMA, - ACTIONS(4591), 1, + ACTIONS(4578), 1, anon_sym_RPAREN, - STATE(1738), 1, - aux_sym_preproc_argument_list_repeat1, - [66514] = 2, + STATE(1745), 1, + aux_sym_generic_expression_repeat1, + [66650] = 3, + ACTIONS(3597), 1, + sym_comment, + STATE(1681), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4580), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 3, + ACTIONS(4582), 1, anon_sym_COMMA, + ACTIONS(4584), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66523] = 4, + STATE(1822), 1, + aux_sym_preproc_params_repeat1, + [66674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4571), 1, anon_sym_COMMA, - ACTIONS(4595), 1, + ACTIONS(4586), 1, anon_sym_RBRACK_RBRACK, - STATE(1765), 1, + STATE(1785), 1, aux_sym_attribute_declaration_repeat1, - [66536] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(4597), 1, - sym_identifier, - STATE(1170), 1, - sym_enumerator_list, - [66549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4067), 1, - anon_sym_RPAREN, - STATE(1782), 1, - sym_gnu_asm_output_operand_list, - [66562] = 2, + [66687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 3, + ACTIONS(4571), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66571] = 4, - ACTIONS(3), 1, + ACTIONS(4588), 1, + anon_sym_RBRACK_RBRACK, + STATE(1783), 1, + aux_sym_attribute_declaration_repeat1, + [66700] = 4, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4043), 1, - anon_sym_RPAREN, - STATE(1827), 1, - sym_gnu_asm_output_operand_list, - [66584] = 4, - ACTIONS(3), 1, + ACTIONS(4590), 1, + aux_sym_preproc_include_token2, + ACTIONS(4592), 1, + anon_sym_LPAREN2, + STATE(1959), 1, + sym_preproc_argument_list, + [66713] = 4, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3164), 1, - anon_sym_LBRACE, - ACTIONS(4601), 1, - sym_identifier, - STATE(1308), 1, - sym_enumerator_list, - [66597] = 4, + ACTIONS(4592), 1, + anon_sym_LPAREN2, + ACTIONS(4594), 1, + aux_sym_preproc_include_token2, + STATE(1959), 1, + sym_preproc_argument_list, + [66726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, ACTIONS(3326), 1, + anon_sym_COMMA, + ACTIONS(4596), 1, anon_sym_RPAREN, - STATE(1789), 1, + STATE(1757), 1, aux_sym_argument_list_repeat1, - [66610] = 4, + [66739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(4598), 1, anon_sym_COMMA, - ACTIONS(4603), 1, - anon_sym_RPAREN, - STATE(1763), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66623] = 3, - ACTIONS(3589), 1, - sym_comment, - STATE(1686), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4605), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4609), 1, + ACTIONS(4600), 1, anon_sym_RPAREN, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [66645] = 4, + STATE(1820), 1, + aux_sym_parameter_list_repeat1, + [66752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 1, + ACTIONS(4602), 3, anon_sym_COMMA, - ACTIONS(4614), 1, anon_sym_RPAREN, - STATE(1763), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66658] = 2, + anon_sym_COLON, + [66761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 3, + ACTIONS(4604), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66667] = 4, + [66770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_COMMA, - ACTIONS(4621), 1, - anon_sym_RBRACK_RBRACK, - STATE(1765), 1, - aux_sym_attribute_declaration_repeat1, - [66680] = 4, + anon_sym_RBRACE, + [66781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4623), 1, - sym_identifier, - STATE(1066), 1, - sym_field_declaration_list, - [66693] = 4, + ACTIONS(3422), 1, + anon_sym_RPAREN, + ACTIONS(4608), 1, + anon_sym_COMMA, + STATE(1757), 1, + aux_sym_argument_list_repeat1, + [66794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(4625), 1, + ACTIONS(3853), 1, anon_sym_SEMI, - STATE(1792), 1, + STATE(1736), 1, aux_sym__declaration_declarator_repeat1, - [66706] = 2, + [66807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 3, + ACTIONS(4559), 1, anon_sym_COMMA, + ACTIONS(4611), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66715] = 4, + STATE(1767), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [66820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_COLON, - ACTIONS(4057), 1, + ACTIONS(4613), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1781), 1, - sym_gnu_asm_output_operand_list, - [66728] = 4, + anon_sym_COLON, + [66829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(3643), 1, anon_sym_RPAREN, - ACTIONS(4631), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_gnu_asm_goto_list, - [66741] = 4, - ACTIONS(3589), 1, + ACTIONS(4615), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym_preproc_argument_list_repeat1, + [66842] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, + ACTIONS(4571), 1, + anon_sym_COMMA, + ACTIONS(4618), 1, + anon_sym_RBRACK_RBRACK, + STATE(1749), 1, + aux_sym_attribute_declaration_repeat1, + [66855] = 4, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4592), 1, anon_sym_LPAREN2, - ACTIONS(4633), 1, + ACTIONS(4620), 1, aux_sym_preproc_include_token2, - STATE(1978), 1, + STATE(1959), 1, sym_preproc_argument_list, - [66754] = 4, + [66868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4635), 1, - anon_sym_SEMI, - STATE(2006), 1, - sym_attribute_specifier, - [66767] = 2, + ACTIONS(3338), 1, + anon_sym_COMMA, + ACTIONS(4622), 1, + anon_sym_RPAREN, + STATE(1745), 1, + aux_sym_generic_expression_repeat1, + [66881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 3, + ACTIONS(4571), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66776] = 4, + ACTIONS(4624), 1, + anon_sym_RBRACK_RBRACK, + STATE(1783), 1, + aux_sym_attribute_declaration_repeat1, + [66894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, + ACTIONS(4626), 1, anon_sym_COMMA, - ACTIONS(4641), 1, + ACTIONS(4629), 1, anon_sym_RPAREN, - STATE(1805), 1, + STATE(1766), 1, aux_sym_preproc_params_repeat1, - [66789] = 4, + [66907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(4631), 1, anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_SEMI, - STATE(1815), 1, - aux_sym__declaration_declarator_repeat1, - [66802] = 2, + ACTIONS(4634), 1, + anon_sym_RPAREN, + STATE(1767), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [66920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 3, + ACTIONS(4636), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [66811] = 2, + ACTIONS(4639), 1, + anon_sym_RPAREN, + STATE(1768), 1, + aux_sym_parameter_list_repeat1, + [66933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 3, + ACTIONS(4641), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66820] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - ACTIONS(4647), 1, - aux_sym_preproc_include_token2, - STATE(1978), 1, - sym_preproc_argument_list, - [66833] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, - ACTIONS(4649), 1, - anon_sym_SEMI, - STATE(2027), 1, - sym_attribute_specifier, - [66846] = 4, + [66942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, - anon_sym_RBRACE, - ACTIONS(4651), 1, + ACTIONS(4643), 3, anon_sym_COMMA, - STATE(1780), 1, - aux_sym_initializer_list_repeat1, - [66859] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4654), 1, anon_sym_RPAREN, - ACTIONS(4656), 1, anon_sym_COLON, - STATE(1739), 1, - sym_gnu_asm_input_operand_list, - [66872] = 4, + [66951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_RPAREN, - STATE(1810), 1, - sym_gnu_asm_input_operand_list, - [66885] = 4, + ACTIONS(2819), 1, + anon_sym_LBRACE, + ACTIONS(4645), 1, + sym_identifier, + STATE(1066), 1, + sym_field_declaration_list, + [66964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, - anon_sym_COMMA, - ACTIONS(4660), 1, - anon_sym_RBRACK_RBRACK, - STATE(1753), 1, - aux_sym_attribute_declaration_repeat1, - [66898] = 2, + ACTIONS(3162), 1, + anon_sym_LBRACE, + ACTIONS(4647), 1, + sym_identifier, + STATE(1308), 1, + sym_enumerator_list, + [66977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 3, + ACTIONS(4649), 1, + anon_sym_RPAREN, + ACTIONS(4651), 1, + anon_sym_COLON, + STATE(1797), 1, + sym_gnu_asm_output_operand_list, + [66990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [66907] = 4, + [66999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(2053), 1, + anon_sym_RBRACE, + ACTIONS(4655), 1, anon_sym_COMMA, - ACTIONS(4664), 1, - anon_sym_SEMI, - STATE(1792), 1, - aux_sym__declaration_declarator_repeat1, - [66920] = 4, + STATE(1813), 1, + aux_sym_initializer_list_repeat1, + [67012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4666), 1, + ACTIONS(3326), 1, anon_sym_COMMA, - ACTIONS(4669), 1, - anon_sym_RPAREN, - STATE(1786), 1, - aux_sym__old_style_parameter_list_repeat1, - [66933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4039), 1, + ACTIONS(3350), 1, anon_sym_RPAREN, - ACTIONS(4041), 1, - anon_sym_COLON, - STATE(1811), 1, - sym_gnu_asm_output_operand_list, - [66946] = 4, + STATE(1807), 1, + aux_sym_argument_list_repeat1, + [67025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4549), 1, anon_sym_COLON, - ACTIONS(4671), 1, + ACTIONS(4657), 1, anon_sym_RPAREN, - STATE(1770), 1, + STATE(1795), 1, sym_gnu_asm_clobber_list, - [66959] = 4, + [67038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3338), 1, + ACTIONS(4661), 1, anon_sym_RPAREN, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [66972] = 4, + ACTIONS(4659), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [67049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_COLON, - ACTIONS(4673), 1, + ACTIONS(4663), 1, anon_sym_RPAREN, - STATE(2169), 1, - sym_gnu_asm_goto_list, - [66985] = 4, - ACTIONS(3589), 1, + ACTIONS(4665), 1, + anon_sym_COLON, + STATE(1796), 1, + sym_gnu_asm_input_operand_list, + [67062] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - ACTIONS(4675), 1, - aux_sym_preproc_include_token2, - STATE(1978), 1, - sym_preproc_argument_list, - [66998] = 4, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4667), 1, + anon_sym_SEMI, + STATE(1956), 1, + sym_attribute_specifier, + [67075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_COMMA, - ACTIONS(4680), 1, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4669), 1, anon_sym_SEMI, - STATE(1792), 1, - aux_sym__declaration_declarator_repeat1, - [67011] = 4, + STATE(2012), 1, + sym_attribute_specifier, + [67088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3162), 1, + anon_sym_LBRACE, + ACTIONS(4671), 1, + sym_identifier, + STATE(1308), 1, + sym_enumerator_list, + [67101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4673), 1, anon_sym_COMMA, - ACTIONS(4682), 1, + ACTIONS(4676), 1, anon_sym_RBRACK_RBRACK, - STATE(1825), 1, + STATE(1783), 1, aux_sym_attribute_declaration_repeat1, - [67024] = 4, + [67114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(4678), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(4681), 1, anon_sym_RPAREN, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [67037] = 4, + STATE(1784), 1, + aux_sym__old_style_parameter_list_repeat1, + [67127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(4571), 1, + anon_sym_COMMA, + ACTIONS(4683), 1, + anon_sym_RBRACK_RBRACK, + STATE(1783), 1, + aux_sym_attribute_declaration_repeat1, + [67140] = 4, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4592), 1, + anon_sym_LPAREN2, + ACTIONS(4685), 1, + aux_sym_preproc_include_token2, + STATE(1959), 1, + sym_preproc_argument_list, + [67153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3541), 1, anon_sym_COMMA, - ACTIONS(4684), 1, + ACTIONS(4687), 1, anon_sym_RPAREN, - STATE(1738), 1, + STATE(1761), 1, aux_sym_preproc_argument_list_repeat1, - [67050] = 4, + [67166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, - anon_sym_RBRACE, - ACTIONS(4686), 1, - anon_sym_COMMA, - STATE(1780), 1, - aux_sym_initializer_list_repeat1, - [67063] = 2, + ACTIONS(4689), 1, + anon_sym_RPAREN, + ACTIONS(4691), 1, + anon_sym_COLON, + STATE(2185), 1, + sym_gnu_asm_goto_list, + [67179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [67072] = 4, + ACTIONS(4651), 1, + anon_sym_COLON, + ACTIONS(4693), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym_gnu_asm_output_operand_list, + [67192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4695), 1, + anon_sym_SEMI, + STATE(2130), 1, + sym_attribute_specifier, + [67205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, - anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4665), 1, + anon_sym_COLON, + ACTIONS(4697), 1, anon_sym_RPAREN, - STATE(1738), 1, - aux_sym_preproc_argument_list_repeat1, - [67085] = 4, + STATE(1777), 1, + sym_gnu_asm_input_operand_list, + [67218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_COMMA, - ACTIONS(4695), 1, + ACTIONS(4651), 1, + anon_sym_COLON, + ACTIONS(4699), 1, anon_sym_RPAREN, - STATE(1799), 1, - aux_sym_parameter_list_repeat1, - [67098] = 4, + STATE(1779), 1, + sym_gnu_asm_output_operand_list, + [67231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4697), 1, - sym_identifier, - STATE(1026), 1, - sym_field_declaration_list, - [67111] = 4, + ACTIONS(3844), 1, + anon_sym___attribute__, + ACTIONS(4701), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_attribute_specifier, + [67244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4703), 3, anon_sym_COMMA, - ACTIONS(4702), 1, anon_sym_RPAREN, - STATE(1801), 1, - aux_sym_preproc_params_repeat1, - [67124] = 4, + anon_sym_COLON, + [67253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_COMMA, - ACTIONS(3348), 1, - anon_sym_RBRACE, - STATE(1813), 1, - aux_sym_initializer_list_repeat1, - [67137] = 3, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4705), 1, + anon_sym_RPAREN, + STATE(2197), 1, + sym_gnu_asm_goto_list, + [67266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, - anon_sym_EQ, - ACTIONS(4137), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67148] = 4, + ACTIONS(4549), 1, + anon_sym_COLON, + ACTIONS(4707), 1, + anon_sym_RPAREN, + STATE(1788), 1, + sym_gnu_asm_clobber_list, + [67279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, - anon_sym_LBRACE, - ACTIONS(4706), 1, - sym_identifier, - STATE(1078), 1, - sym_field_declaration_list, - [67161] = 4, + ACTIONS(4665), 1, + anon_sym_COLON, + ACTIONS(4709), 1, + anon_sym_RPAREN, + STATE(1735), 1, + sym_gnu_asm_input_operand_list, + [67292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, + ACTIONS(4711), 3, anon_sym_COMMA, - ACTIONS(4708), 1, + anon_sym_SEMI, + anon_sym___attribute__, + [67301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4651), 1, + anon_sym_COLON, + ACTIONS(4713), 1, anon_sym_RPAREN, - STATE(1801), 1, - aux_sym_preproc_params_repeat1, - [67174] = 3, - ACTIONS(3589), 1, + STATE(1826), 1, + sym_gnu_asm_output_operand_list, + [67314] = 3, + ACTIONS(3597), 1, sym_comment, - STATE(1707), 1, + STATE(1718), 1, aux_sym_char_literal_repeat1, - ACTIONS(4710), 2, + ACTIONS(4715), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67185] = 4, + [67325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(3326), 1, anon_sym_COMMA, - ACTIONS(4712), 1, + ACTIONS(3342), 1, anon_sym_RPAREN, - STATE(1799), 1, - aux_sym_parameter_list_repeat1, - [67198] = 4, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - ACTIONS(4714), 1, - aux_sym_preproc_include_token2, - STATE(1978), 1, - sym_preproc_argument_list, - [67211] = 4, + STATE(1804), 1, + aux_sym_argument_list_repeat1, + [67338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3164), 1, + ACTIONS(3162), 1, anon_sym_LBRACE, - ACTIONS(4716), 1, + ACTIONS(4717), 1, sym_identifier, - STATE(1308), 1, + STATE(1169), 1, sym_enumerator_list, - [67224] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4556), 1, - anon_sym_COLON, - ACTIONS(4718), 1, - anon_sym_RPAREN, - STATE(1821), 1, - sym_gnu_asm_clobber_list, - [67237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4720), 1, - anon_sym_RPAREN, - STATE(1822), 1, - sym_gnu_asm_input_operand_list, - [67250] = 4, + [67351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(4722), 1, + ACTIONS(4719), 1, anon_sym_SEMI, - STATE(1785), 1, + STATE(1811), 1, aux_sym__declaration_declarator_repeat1, - [67263] = 4, + [67364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_RBRACE, - ACTIONS(4724), 1, + ACTIONS(3326), 1, anon_sym_COMMA, - STATE(1780), 1, - aux_sym_initializer_list_repeat1, - [67276] = 4, + ACTIONS(3328), 1, + anon_sym_RPAREN, + STATE(1757), 1, + aux_sym_argument_list_repeat1, + [67377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 1, + ACTIONS(3344), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(3346), 1, anon_sym_RBRACE, - STATE(1796), 1, + STATE(1775), 1, aux_sym_initializer_list_repeat1, - [67289] = 4, + [67390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(4625), 1, - anon_sym_SEMI, - STATE(1792), 1, - aux_sym__declaration_declarator_repeat1, - [67302] = 4, + ACTIONS(4721), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [67399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(3326), 1, anon_sym_COMMA, ACTIONS(3334), 1, anon_sym_RPAREN, - STATE(1794), 1, - aux_sym_argument_list_repeat1, - [67315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(4726), 1, - anon_sym_RPAREN, - STATE(1819), 1, + STATE(1757), 1, aux_sym_argument_list_repeat1, - [67328] = 4, + [67412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, + ACTIONS(3338), 1, anon_sym_COMMA, - ACTIONS(4728), 1, + ACTIONS(4723), 1, anon_sym_RPAREN, - STATE(1750), 1, + STATE(1745), 1, aux_sym_generic_expression_repeat1, - [67341] = 4, + [67425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, + ACTIONS(4691), 1, + anon_sym_COLON, + ACTIONS(4725), 1, anon_sym_RPAREN, - ACTIONS(4730), 1, - anon_sym_COMMA, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [67354] = 3, - ACTIONS(3589), 1, + STATE(2056), 1, + sym_gnu_asm_goto_list, + [67438] = 3, + ACTIONS(3597), 1, sym_comment, - STATE(1678), 1, + STATE(1693), 1, aux_sym_char_literal_repeat1, - ACTIONS(4733), 2, + ACTIONS(4727), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67365] = 4, + [67449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_COLON, - ACTIONS(4735), 1, - anon_sym_RPAREN, - STATE(2078), 1, - sym_gnu_asm_goto_list, - [67378] = 4, + ACTIONS(4729), 1, + anon_sym_COMMA, + ACTIONS(4732), 1, + anon_sym_SEMI, + STATE(1811), 1, + aux_sym__declaration_declarator_repeat1, + [67462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, - anon_sym_COLON, - ACTIONS(4737), 1, + ACTIONS(3541), 1, + anon_sym_COMMA, + ACTIONS(4734), 1, anon_sym_RPAREN, - STATE(1823), 1, - sym_gnu_asm_clobber_list, - [67391] = 4, + STATE(1761), 1, + aux_sym_preproc_argument_list_repeat1, + [67475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - anon_sym_COLON, + ACTIONS(3440), 1, + anon_sym_RBRACE, + ACTIONS(4736), 1, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_initializer_list_repeat1, + [67488] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_COMMA, ACTIONS(4739), 1, anon_sym_RPAREN, - STATE(2084), 1, - sym_gnu_asm_goto_list, - [67404] = 4, + STATE(1761), 1, + aux_sym_preproc_argument_list_repeat1, + [67501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, + ACTIONS(4549), 1, + anon_sym_COLON, ACTIONS(4741), 1, anon_sym_RPAREN, - STATE(1819), 1, - aux_sym_argument_list_repeat1, - [67417] = 4, + STATE(1809), 1, + sym_gnu_asm_clobber_list, + [67514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(3330), 1, anon_sym_COMMA, + ACTIONS(3332), 1, + anon_sym_RBRACE, + STATE(1823), 1, + aux_sym_initializer_list_repeat1, + [67527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 1, + anon_sym_COLON, ACTIONS(4743), 1, - anon_sym_RBRACK_RBRACK, - STATE(1765), 1, - aux_sym_attribute_declaration_repeat1, - [67430] = 4, + anon_sym_RPAREN, + STATE(2058), 1, + sym_gnu_asm_goto_list, + [67540] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3849), 1, + anon_sym_COMMA, ACTIONS(4745), 1, + anon_sym_SEMI, + STATE(1803), 1, + aux_sym__declaration_declarator_repeat1, + [67553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4747), 3, anon_sym_COMMA, - ACTIONS(4747), 1, anon_sym_RPAREN, - STATE(1786), 1, - aux_sym__old_style_parameter_list_repeat1, - [67443] = 4, + anon_sym_COLON, + [67562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, - anon_sym_COLON, + ACTIONS(4598), 1, + anon_sym_COMMA, ACTIONS(4749), 1, anon_sym_RPAREN, - STATE(1788), 1, - sym_gnu_asm_input_operand_list, - [67456] = 4, - ACTIONS(3), 1, + STATE(1768), 1, + aux_sym_parameter_list_repeat1, + [67575] = 4, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym___attribute__, + ACTIONS(4592), 1, + anon_sym_LPAREN2, ACTIONS(4751), 1, - anon_sym_SEMI, - STATE(2056), 1, - sym_attribute_specifier, - [67469] = 4, + aux_sym_preproc_include_token2, + STATE(1959), 1, + sym_preproc_argument_list, + [67588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(4582), 1, + anon_sym_COMMA, ACTIONS(4753), 1, - sym_identifier, - STATE(1875), 1, - sym_variadic_parameter, - [67482] = 3, + anon_sym_RPAREN, + STATE(1766), 1, + aux_sym_preproc_params_repeat1, + [67601] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2049), 1, + anon_sym_RBRACE, ACTIONS(4755), 1, - sym_identifier, - STATE(1893), 1, - sym_attribute, - [67492] = 2, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_initializer_list_repeat1, + [67614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 2, + ACTIONS(3849), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [67500] = 2, + ACTIONS(4551), 1, + anon_sym_SEMI, + STATE(1811), 1, + aux_sym__declaration_declarator_repeat1, + [67627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 2, + ACTIONS(3326), 1, anon_sym_COMMA, - anon_sym_SEMI, - [67508] = 3, + ACTIONS(4757), 1, + anon_sym_RPAREN, + STATE(1757), 1, + aux_sym_argument_list_repeat1, + [67640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4665), 1, + anon_sym_COLON, + ACTIONS(4759), 1, + anon_sym_RPAREN, + STATE(1815), 1, + sym_gnu_asm_input_operand_list, + [67653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1867), 1, + STATE(440), 1, sym_parenthesized_expression, - [67518] = 3, + [67663] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(121), 1, sym_compound_statement, - [67528] = 3, + [67673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(381), 1, + sym_parenthesized_expression, + [67683] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4763), 1, sym_identifier, - ACTIONS(4765), 1, + STATE(1744), 1, + sym_attribute, + [67693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, anon_sym_LPAREN2, - [67538] = 3, + STATE(422), 1, + sym_parenthesized_expression, + [67703] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4765), 1, + aux_sym_preproc_include_token2, + ACTIONS(4767), 1, + sym_preproc_arg, + [67713] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4769), 1, + aux_sym_preproc_include_token2, + ACTIONS(4771), 1, + sym_preproc_arg, + [67723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1709), 1, + STATE(239), 1, sym_compound_statement, - [67548] = 3, + [67733] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4773), 1, + aux_sym_preproc_include_token2, + ACTIONS(4775), 1, + sym_preproc_arg, + [67743] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(278), 1, + STATE(1684), 1, sym_compound_statement, - [67558] = 3, - ACTIONS(3), 1, + [67753] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(92), 1, - sym_compound_statement, - [67568] = 3, + ACTIONS(4777), 1, + aux_sym_preproc_include_token2, + ACTIONS(4779), 1, + sym_preproc_arg, + [67763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1838), 1, - sym_parenthesized_expression, - [67578] = 3, - ACTIONS(3), 1, + ACTIONS(4781), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [67771] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(2075), 1, - sym_parenthesized_expression, - [67588] = 3, + ACTIONS(4783), 1, + aux_sym_preproc_include_token2, + ACTIONS(4785), 1, + sym_preproc_arg, + [67781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - STATE(1692), 1, + STATE(196), 1, sym_compound_statement, - [67598] = 2, + [67791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67606] = 2, + ACTIONS(4787), 1, + anon_sym_LPAREN2, + STATE(1840), 1, + sym_parenthesized_expression, + [67801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 2, + ACTIONS(3426), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [67614] = 3, + anon_sym_RBRACE, + [67809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(422), 1, - sym_parenthesized_expression, - [67624] = 3, + ACTIONS(3440), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [67817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1874), 1, - sym_parenthesized_expression, - [67634] = 3, + ACTIONS(3448), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [67825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(430), 1, + STATE(1834), 1, sym_parenthesized_expression, - [67644] = 3, + [67835] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4789), 1, + aux_sym_preproc_include_token2, + ACTIONS(4791), 1, + sym_preproc_arg, + [67845] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1906), 1, + STATE(367), 1, sym_parenthesized_expression, - [67654] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4769), 1, - aux_sym_preproc_include_token2, - ACTIONS(4771), 1, - sym_preproc_arg, - [67664] = 3, + [67855] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(2219), 1, + STATE(378), 1, sym_parenthesized_expression, - [67674] = 3, + [67865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(278), 1, sym_compound_statement, - [67684] = 3, + [67875] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4793), 1, + aux_sym_preproc_include_token2, + ACTIONS(4795), 1, + sym_preproc_arg, + [67885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1980), 1, - sym_parenthesized_expression, - [67694] = 2, + ACTIONS(4797), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [67893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4773), 2, + ACTIONS(3432), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [67702] = 3, + anon_sym_SEMI, + [67901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1902), 1, - sym_parenthesized_expression, - [67712] = 2, + ACTIONS(3937), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [67909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 2, + ACTIONS(4681), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67720] = 3, - ACTIONS(3589), 1, + [67917] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, + ACTIONS(4800), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [67925] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4802), 1, aux_sym_preproc_include_token2, - ACTIONS(4777), 1, + ACTIONS(4804), 1, sym_preproc_arg, - [67730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1719), 1, - sym_compound_statement, - [67740] = 3, + [67935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1915), 1, - sym_parenthesized_expression, - [67750] = 3, - ACTIONS(3589), 1, + ACTIONS(4806), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [67943] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(4808), 1, aux_sym_preproc_include_token2, - ACTIONS(4781), 1, + ACTIONS(4810), 1, sym_preproc_arg, - [67760] = 3, + [67953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(409), 1, - sym_parenthesized_expression, - [67770] = 3, + ACTIONS(4763), 1, + sym_identifier, + STATE(1880), 1, + sym_attribute, + [67963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(443), 1, - sym_parenthesized_expression, - [67780] = 3, - ACTIONS(3589), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(238), 1, + sym_compound_statement, + [67973] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4783), 1, + ACTIONS(4812), 1, aux_sym_preproc_include_token2, - ACTIONS(4785), 1, + ACTIONS(4814), 1, sym_preproc_arg, - [67790] = 3, + [67983] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1884), 1, - sym_parenthesized_expression, - [67800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(442), 1, + STATE(421), 1, sym_parenthesized_expression, - [67810] = 3, + [67993] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(240), 1, sym_compound_statement, - [67820] = 3, + [68003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 1, + ACTIONS(4816), 1, sym_identifier, - STATE(1783), 1, - sym_attribute, - [67830] = 3, + ACTIONS(4818), 1, + anon_sym_RPAREN, + [68013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_COMMA, - [67840] = 3, + ACTIONS(553), 1, + anon_sym_LBRACE, + STATE(342), 1, + sym_compound_statement, + [68023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(275), 1, + STATE(239), 1, sym_compound_statement, - [67850] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4789), 1, - aux_sym_preproc_include_token2, - ACTIONS(4791), 1, - sym_preproc_arg, - [67860] = 2, + [68033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(4820), 1, sym_identifier, - [67868] = 3, + ACTIONS(4822), 1, + anon_sym_LPAREN2, + [68043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + STATE(318), 1, + sym_compound_statement, + [68053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(413), 1, + STATE(449), 1, sym_parenthesized_expression, - [67878] = 3, + [68063] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4824), 1, + aux_sym_preproc_include_token2, + ACTIONS(4826), 1, + sym_preproc_arg, + [68073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1673), 1, - sym_compound_statement, - [67888] = 3, + ACTIONS(4763), 1, + sym_identifier, + STATE(1748), 1, + sym_attribute, + [68083] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1693), 1, + STATE(1706), 1, sym_compound_statement, - [67898] = 3, + [68093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(2072), 1, - sym_argument_list, - [67908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(181), 1, - sym_compound_statement, - [67918] = 2, + STATE(1863), 1, + sym_parenthesized_expression, + [68103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 2, + ACTIONS(4828), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [67926] = 2, + ACTIONS(4830), 1, + anon_sym_RBRACE, + [68113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67934] = 3, - ACTIONS(3589), 1, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(238), 1, + sym_compound_statement, + [68123] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(4832), 1, aux_sym_preproc_include_token2, - ACTIONS(4800), 1, + ACTIONS(4834), 1, sym_preproc_arg, - [67944] = 2, + [68133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67952] = 2, + ACTIONS(4787), 1, + anon_sym_LPAREN2, + STATE(1866), 1, + sym_parenthesized_expression, + [68143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [67960] = 2, + ACTIONS(4787), 1, + anon_sym_LPAREN2, + STATE(1925), 1, + sym_parenthesized_expression, + [68153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [67968] = 2, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(448), 1, + sym_parenthesized_expression, + [68163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(4676), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [67976] = 2, + anon_sym_RBRACK_RBRACK, + [68171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 2, + ACTIONS(4836), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [67984] = 3, + anon_sym_SEMI, + [68179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_LPAREN2, - STATE(2088), 1, - sym_argument_list, - [67994] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1687), 1, + sym_compound_statement, + [68189] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4838), 1, + aux_sym_preproc_include_token2, + ACTIONS(4840), 1, + sym_preproc_arg, + [68199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - STATE(102), 1, + STATE(164), 1, sym_compound_statement, - [68004] = 3, + [68209] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(292), 1, + STATE(287), 1, sym_compound_statement, - [68014] = 3, + [68219] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4842), 1, + aux_sym_preproc_include_token2, + ACTIONS(4844), 1, + sym_preproc_arg, + [68229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3354), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [68237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, - sym_identifier, - ACTIONS(4804), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - [68024] = 3, + STATE(1849), 1, + sym_parenthesized_expression, + [68247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - sym_identifier, - ACTIONS(4808), 1, - anon_sym_RPAREN, - [68034] = 3, + ACTIONS(129), 1, + anon_sym_LBRACE, + STATE(107), 1, + sym_compound_statement, + [68257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4787), 1, - anon_sym_COMMA, - ACTIONS(4810), 1, - anon_sym_RBRACE, - [68044] = 3, + anon_sym_LPAREN2, + STATE(1889), 1, + sym_parenthesized_expression, + [68267] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1864), 1, + STATE(363), 1, sym_parenthesized_expression, - [68054] = 3, + [68277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(292), 1, + STATE(1727), 1, sym_compound_statement, - [68064] = 3, + [68287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(1850), 1, - sym_parenthesized_expression, - [68074] = 3, - ACTIONS(3589), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(191), 1, + sym_compound_statement, + [68297] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(4846), 1, aux_sym_preproc_include_token2, - ACTIONS(4814), 1, + ACTIONS(4848), 1, sym_preproc_arg, - [68084] = 2, + [68307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [68092] = 3, + ACTIONS(129), 1, + anon_sym_LBRACE, + STATE(119), 1, + sym_compound_statement, + [68317] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(2008), 1, + STATE(365), 1, sym_parenthesized_expression, - [68102] = 2, + [68327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [68110] = 3, + ACTIONS(4787), 1, + anon_sym_LPAREN2, + STATE(2017), 1, + sym_parenthesized_expression, + [68337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_compound_statement, - [68120] = 3, - ACTIONS(3589), 1, + ACTIONS(4850), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68345] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(4852), 1, aux_sym_preproc_include_token2, - ACTIONS(4818), 1, + ACTIONS(4854), 1, sym_preproc_arg, - [68130] = 2, + [68355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4639), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68138] = 3, - ACTIONS(3589), 1, + [68363] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN2, + STATE(451), 1, + sym_parenthesized_expression, + [68373] = 3, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4856), 1, aux_sym_preproc_include_token2, - ACTIONS(4824), 1, + ACTIONS(4858), 1, sym_preproc_arg, - [68148] = 3, + [68383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(425), 1, - sym_parenthesized_expression, - [68158] = 3, + ACTIONS(4629), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(1837), 1, + STATE(1865), 1, sym_parenthesized_expression, - [68168] = 3, + [68401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(169), 1, - sym_compound_statement, - [68178] = 3, - ACTIONS(3589), 1, + ACTIONS(4860), 1, + sym_identifier, + ACTIONS(4862), 1, + anon_sym_LPAREN2, + [68411] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(4864), 1, aux_sym_preproc_include_token2, - ACTIONS(4828), 1, + ACTIONS(4866), 1, sym_preproc_arg, - [68188] = 3, + [68421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(447), 1, + STATE(1921), 1, sym_parenthesized_expression, - [68198] = 3, + [68431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(428), 1, + STATE(1884), 1, sym_parenthesized_expression, - [68208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(252), 1, - sym_compound_statement, - [68218] = 3, + [68441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1793), 1, - sym_attribute, - [68228] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4830), 1, - aux_sym_preproc_include_token2, - ACTIONS(4832), 1, - sym_preproc_arg, - [68238] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4834), 1, - aux_sym_preproc_include_token2, - ACTIONS(4836), 1, - sym_preproc_arg, - [68248] = 3, + ACTIONS(3422), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(445), 1, + STATE(1953), 1, sym_parenthesized_expression, - [68258] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4838), 1, - aux_sym_preproc_include_token2, - ACTIONS(4840), 1, - sym_preproc_arg, - [68268] = 3, + [68459] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(294), 1, + STATE(1732), 1, sym_compound_statement, - [68278] = 3, + [68469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(344), 1, + STATE(1711), 1, sym_compound_statement, - [68288] = 3, + [68479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_LBRACE, - STATE(310), 1, - sym_compound_statement, - [68298] = 3, + ACTIONS(4763), 1, + sym_identifier, + STATE(1762), 1, + sym_attribute, + [68489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_compound_statement, - [68308] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4842), 1, - aux_sym_preproc_include_token2, - ACTIONS(4844), 1, - sym_preproc_arg, - [68318] = 3, - ACTIONS(3589), 1, + ACTIONS(4787), 1, + anon_sym_LPAREN2, + STATE(2070), 1, + sym_parenthesized_expression, + [68499] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(4868), 1, aux_sym_preproc_include_token2, - ACTIONS(4848), 1, + ACTIONS(4870), 1, sym_preproc_arg, - [68328] = 3, + [68509] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, anon_sym_LPAREN2, - STATE(1997), 1, + STATE(370), 1, sym_parenthesized_expression, - [68338] = 2, + [68519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 2, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4828), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [68346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4755), 1, - sym_identifier, - STATE(1745), 1, - sym_attribute, - [68356] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4852), 1, - aux_sym_preproc_include_token2, - ACTIONS(4854), 1, - sym_preproc_arg, - [68366] = 3, + [68529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN2, - STATE(439), 1, - sym_parenthesized_expression, - [68376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(1913), 1, + STATE(1895), 1, sym_parenthesized_expression, - [68386] = 3, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4856), 1, - aux_sym_preproc_include_token2, - ACTIONS(4858), 1, - sym_preproc_arg, - [68396] = 3, - ACTIONS(3589), 1, + [68539] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4860), 1, + ACTIONS(4872), 1, aux_sym_preproc_include_token2, - ACTIONS(4862), 1, + ACTIONS(4874), 1, sym_preproc_arg, - [68406] = 3, + [68549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4787), 1, anon_sym_LPAREN2, - STATE(440), 1, + STATE(1960), 1, sym_parenthesized_expression, - [68416] = 3, + [68559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - STATE(1731), 1, + STATE(295), 1, sym_compound_statement, - [68426] = 3, - ACTIONS(3589), 1, + [68569] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, - aux_sym_preproc_include_token2, - ACTIONS(4866), 1, - sym_preproc_arg, - [68436] = 3, - ACTIONS(3589), 1, + ACTIONS(4787), 1, + anon_sym_LPAREN2, + STATE(2110), 1, + sym_parenthesized_expression, + [68579] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, - aux_sym_preproc_include_token2, - ACTIONS(4870), 1, - sym_preproc_arg, - [68446] = 3, - ACTIONS(3589), 1, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + STATE(2055), 1, + sym_argument_list, + [68589] = 3, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4876), 1, aux_sym_preproc_include_token2, - ACTIONS(4874), 1, + ACTIONS(4878), 1, sym_preproc_arg, - [68456] = 2, + [68599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, - anon_sym_RPAREN, - [68463] = 2, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(339), 1, + sym_compound_statement, + [68609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4878), 1, - anon_sym_RPAREN, - [68470] = 2, + ACTIONS(2540), 1, + anon_sym_LPAREN2, + STATE(2007), 1, + sym_argument_list, + [68619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 1, + ACTIONS(4880), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [68477] = 2, + [68627] = 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3673), 1, + aux_sym_preproc_include_token2, + [68634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4882), 1, anon_sym_SEMI, - [68484] = 2, - ACTIONS(3589), 1, + [68641] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4884), 1, + anon_sym_SEMI, + [68648] = 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4886), 1, aux_sym_preproc_include_token2, - [68491] = 2, + [68655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, - anon_sym_RPAREN, - [68498] = 2, - ACTIONS(3589), 1, + ACTIONS(3388), 1, + anon_sym_SEMI, + [68662] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4888), 1, - aux_sym_preproc_include_token2, - [68505] = 2, + aux_sym_preproc_if_token2, + [68669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4890), 1, - anon_sym_RPAREN, - [68512] = 2, - ACTIONS(3589), 1, + aux_sym_preproc_if_token2, + [68676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3406), 1, + anon_sym_SEMI, + [68683] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4892), 1, - aux_sym_preproc_include_token2, - [68519] = 2, + anon_sym_SEMI, + [68690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4894), 1, anon_sym_SEMI, - [68526] = 2, - ACTIONS(3589), 1, + [68697] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4896), 1, - aux_sym_preproc_include_token2, - [68533] = 2, + anon_sym_RPAREN, + [68704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4898), 1, anon_sym_RPAREN, - [68540] = 2, - ACTIONS(3589), 1, + [68711] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4900), 1, aux_sym_preproc_include_token2, - [68547] = 2, + [68718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4902), 1, - anon_sym_RPAREN, - [68554] = 2, - ACTIONS(3589), 1, + anon_sym_STAR, + [68725] = 2, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(4594), 1, aux_sym_preproc_include_token2, - [68561] = 2, - ACTIONS(3589), 1, + [68732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, + anon_sym_SEMI, + [68739] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4906), 1, aux_sym_preproc_include_token2, - [68568] = 2, - ACTIONS(3589), 1, + [68746] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4908), 1, - aux_sym_preproc_include_token2, - [68575] = 2, + aux_sym_preproc_if_token2, + [68753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4910), 1, - aux_sym_preproc_if_token2, - [68582] = 2, - ACTIONS(3589), 1, + anon_sym_SEMI, + [68760] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4912), 1, - aux_sym_preproc_include_token2, - [68589] = 2, - ACTIONS(3589), 1, + aux_sym_preproc_if_token2, + [68767] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4914), 1, - aux_sym_preproc_include_token2, - [68596] = 2, - ACTIONS(3589), 1, + anon_sym_COLON, + [68774] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4916), 1, - aux_sym_preproc_include_token2, - [68603] = 2, + sym_identifier, + [68781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4918), 1, - sym_primitive_type, - [68610] = 2, + aux_sym_preproc_if_token2, + [68788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4920), 1, - sym_identifier, - [68617] = 2, + aux_sym_preproc_if_token2, + [68795] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4922), 1, - sym_identifier, - [68624] = 2, + aux_sym_preproc_if_token2, + [68802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4924), 1, - aux_sym_preproc_if_token2, - [68631] = 2, + anon_sym_SEMI, + [68809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4926), 1, - sym_identifier, - [68638] = 2, - ACTIONS(3589), 1, + anon_sym_while, + [68816] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4928), 1, - aux_sym_preproc_include_token2, - [68645] = 2, + aux_sym_preproc_if_token2, + [68823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4930), 1, - sym_identifier, - [68652] = 2, + anon_sym_SEMI, + [68830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4932), 1, - anon_sym_SEMI, - [68659] = 2, + aux_sym_preproc_if_token2, + [68837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4934), 1, - anon_sym_SEMI, - [68666] = 2, + aux_sym_preproc_if_token2, + [68844] = 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3705), 1, + aux_sym_preproc_include_token2, + [68851] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4936), 1, - anon_sym_COLON, - [68673] = 2, + anon_sym_SEMI, + [68858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4938), 1, - aux_sym_preproc_if_token2, - [68680] = 2, + anon_sym_COLON, + [68865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3400), 1, + ACTIONS(4940), 1, anon_sym_SEMI, - [68687] = 2, + [68872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, + ACTIONS(3356), 1, anon_sym_SEMI, - [68694] = 2, + [68879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4942), 1, - anon_sym_RPAREN, - [68701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3402), 1, - anon_sym_RPAREN, - [68708] = 2, - ACTIONS(3589), 1, + anon_sym_SEMI, + [68886] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4944), 1, aux_sym_preproc_include_token2, - [68715] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4582), 1, - aux_sym_preproc_include_token2, - [68722] = 2, - ACTIONS(3), 1, + [68893] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4946), 1, - anon_sym_SEMI, - [68729] = 2, + aux_sym_preproc_include_token2, + [68900] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4948), 1, - anon_sym_SEMI, - [68736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_SEMI, - [68743] = 2, + anon_sym_RPAREN, + [68907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4950), 1, - sym_identifier, - [68750] = 2, + aux_sym_preproc_if_token2, + [68914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4952), 1, - anon_sym_COLON, - [68757] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [68921] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4954), 1, - anon_sym_RPAREN, - [68764] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4956), 1, aux_sym_preproc_include_token2, - [68771] = 2, + [68928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(4956), 1, aux_sym_preproc_if_token2, - [68778] = 2, + [68935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, - sym_identifier, - [68785] = 2, - ACTIONS(3589), 1, + ACTIONS(4958), 1, + anon_sym_RPAREN, + [68942] = 2, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(4960), 1, aux_sym_preproc_include_token2, - [68792] = 2, - ACTIONS(3), 1, + [68949] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4962), 1, - aux_sym_preproc_if_token2, - [68799] = 2, + aux_sym_preproc_include_token2, + [68956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4964), 1, - anon_sym_SEMI, - [68806] = 2, + sym_identifier, + [68963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4966), 1, - sym_identifier, - [68813] = 2, - ACTIONS(3589), 1, + anon_sym_RPAREN, + [68970] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4968), 1, - aux_sym_preproc_include_token2, - [68820] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [68977] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4970), 1, - anon_sym_RPAREN, - [68827] = 2, + aux_sym_preproc_include_token2, + [68984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4972), 1, - anon_sym_RPAREN, - [68834] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [68991] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4974), 1, - anon_sym_RPAREN, - [68841] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [68998] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4976), 1, - aux_sym_preproc_if_token2, - [68848] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4978), 1, aux_sym_preproc_include_token2, - [68855] = 2, + [69005] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4978), 1, + anon_sym_RPAREN, + [69012] = 2, + ACTIONS(3597), 1, + sym_comment, ACTIONS(4980), 1, - aux_sym_preproc_if_token2, - [68862] = 2, + aux_sym_preproc_include_token2, + [69019] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4982), 1, - aux_sym_preproc_if_token2, - [68869] = 2, + anon_sym_SEMI, + [69026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4984), 1, - aux_sym_preproc_if_token2, - [68876] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [69033] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4986), 1, - sym_identifier, - [68883] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [69040] = 2, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4810), 1, - anon_sym_RBRACE, - [68890] = 2, + ACTIONS(4988), 1, + aux_sym_preproc_include_token2, + [69047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(3420), 1, anon_sym_SEMI, - [68897] = 2, - ACTIONS(3), 1, + [69054] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4990), 1, - anon_sym_STAR, - [68904] = 2, + aux_sym_preproc_include_token2, + [69061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3410), 1, + anon_sym_SEMI, + [69068] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4992), 1, - sym_identifier, - [68911] = 2, - ACTIONS(3589), 1, + anon_sym_SEMI, + [69075] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4994), 1, aux_sym_preproc_include_token2, - [68918] = 2, - ACTIONS(3), 1, + [69082] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(4996), 1, - anon_sym_SEMI, - [68925] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 1, - anon_sym_SEMI, - [68932] = 2, + aux_sym_preproc_include_token2, + [69089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4998), 1, - anon_sym_COMMA, - [68939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3414), 1, - anon_sym_SEMI, - [68946] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [69096] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(5000), 1, - anon_sym_STAR, - [68953] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [69103] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(5002), 1, - anon_sym_SEMI, - [68960] = 2, + aux_sym_preproc_include_token2, + [69110] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5004), 1, sym_identifier, - [68967] = 2, + [69117] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5006), 1, - anon_sym_RPAREN, - [68974] = 2, + sym_identifier, + [69124] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5008), 1, - anon_sym_SEMI, - [68981] = 2, + sym_identifier, + [69131] = 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4751), 1, + aux_sym_preproc_include_token2, + [69138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5010), 1, - anon_sym_SEMI, - [68988] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3737), 1, - aux_sym_preproc_include_token2, - [68995] = 2, + aux_sym_preproc_if_token2, + [69145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5012), 1, anon_sym_SEMI, - [69002] = 2, + [69152] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5014), 1, - aux_sym_preproc_if_token2, - [69009] = 2, - ACTIONS(3589), 1, + anon_sym_SEMI, + [69159] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5016), 1, - aux_sym_preproc_include_token2, - [69016] = 2, + anon_sym_COLON, + [69166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5018), 1, - anon_sym_SEMI, - [69023] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(3649), 1, - aux_sym_preproc_include_token2, - [69030] = 2, + anon_sym_STAR, + [69173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5020), 1, - anon_sym_SEMI, - [69037] = 2, + sym_identifier, + [69180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5022), 1, - sym_identifier, - [69044] = 2, + anon_sym_RPAREN, + [69187] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5024), 1, - sym_identifier, - [69051] = 2, + aux_sym_preproc_if_token2, + [69194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5026), 1, - anon_sym_COLON, - [69058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5028), 1, aux_sym_preproc_if_token2, - [69065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 1, - anon_sym_RBRACE, - [69072] = 2, + [69201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - anon_sym_SEMI, - [69079] = 2, + ACTIONS(5028), 1, + sym_identifier, + [69208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5030), 1, - anon_sym_SEMI, - [69086] = 2, + aux_sym_preproc_if_token2, + [69215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5032), 1, - aux_sym_preproc_if_token2, - [69093] = 2, + anon_sym_SEMI, + [69222] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5034), 1, anon_sym_RPAREN, - [69100] = 2, + [69229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5036), 1, - sym_identifier, - [69107] = 2, - ACTIONS(3589), 1, + anon_sym_COMMA, + [69236] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5038), 1, - aux_sym_preproc_include_token2, - [69114] = 2, + aux_sym_preproc_if_token2, + [69243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5040), 1, - aux_sym_preproc_if_token2, - [69121] = 2, + anon_sym_RPAREN, + [69250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5042), 1, - aux_sym_preproc_if_token2, - [69128] = 2, + anon_sym_SEMI, + [69257] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5044), 1, anon_sym_SEMI, - [69135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 1, - anon_sym_RBRACE, - [69142] = 2, + [69264] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5046), 1, - anon_sym_RPAREN, - [69149] = 2, + aux_sym_preproc_if_token2, + [69271] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5048), 1, sym_identifier, - [69156] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4714), 1, - aux_sym_preproc_include_token2, - [69163] = 2, + [69278] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5050), 1, - anon_sym_SEMI, - [69170] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [69285] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(5052), 1, - anon_sym_SEMI, - [69177] = 2, + aux_sym_preproc_include_token2, + [69292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5054), 1, - sym_identifier, - [69184] = 2, + anon_sym_RPAREN, + [69299] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5056), 1, - anon_sym_COLON, - [69191] = 2, + anon_sym_RPAREN, + [69306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, - anon_sym_RPAREN, - [69198] = 2, + ACTIONS(3912), 1, + anon_sym_RBRACE, + [69313] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(5058), 1, + aux_sym_preproc_if_token2, + [69320] = 2, + ACTIONS(3597), 1, + sym_comment, ACTIONS(5060), 1, - sym_identifier, - [69205] = 2, + aux_sym_preproc_include_token2, + [69327] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5062), 1, - anon_sym_STAR, - [69212] = 2, + sym_primitive_type, + [69334] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5064), 1, - aux_sym_preproc_if_token2, - [69219] = 2, + anon_sym_SEMI, + [69341] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5066), 1, - aux_sym_preproc_if_token2, - [69226] = 2, + anon_sym_SEMI, + [69348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3396), 1, + anon_sym_SEMI, + [69355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5068), 1, sym_identifier, - [69233] = 2, + [69362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3412), 1, + anon_sym_SEMI, + [69369] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5070), 1, - sym_identifier, - [69240] = 2, + anon_sym_SEMI, + [69376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - sym_identifier, - [69247] = 2, + ACTIONS(3414), 1, + anon_sym_SEMI, + [69383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_COMMA, - [69254] = 2, + ACTIONS(5072), 1, + anon_sym_RPAREN, + [69390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5074), 1, - sym_identifier, - [69261] = 2, + anon_sym_SEMI, + [69397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 1, - anon_sym_SEMI, - [69268] = 2, + ACTIONS(3418), 1, + anon_sym_RPAREN, + [69404] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5076), 1, - aux_sym_preproc_if_token2, - [69275] = 2, - ACTIONS(3), 1, + sym_identifier, + [69411] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(5078), 1, - anon_sym_SEMI, - [69282] = 2, + aux_sym_preproc_include_token2, + [69418] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5080), 1, - aux_sym_preproc_if_token2, - [69289] = 2, + sym_identifier, + [69425] = 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4590), 1, + aux_sym_preproc_include_token2, + [69432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5082), 1, - sym_identifier, - [69296] = 2, + anon_sym_SEMI, + [69439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5084), 1, - sym_identifier, - [69303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 1, anon_sym_SEMI, - [69310] = 2, + [69446] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5086), 1, - aux_sym_preproc_if_token2, - [69317] = 2, + anon_sym_COLON, + [69453] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5088), 1, - aux_sym_preproc_if_token2, - [69324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 1, - anon_sym_RPAREN, - [69331] = 2, + sym_identifier, + [69460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5090), 1, - anon_sym_SEMI, - [69338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3442), 1, anon_sym_RPAREN, - [69345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 1, - anon_sym_SEMI, - [69352] = 2, + [69467] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5092), 1, anon_sym_RPAREN, - [69359] = 2, + [69474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5094), 1, - sym_identifier, - [69366] = 2, + anon_sym_RPAREN, + [69481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3442), 1, + anon_sym_SEMI, + [69488] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5096), 1, - aux_sym_preproc_if_token2, - [69373] = 2, + anon_sym_RPAREN, + [69495] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5098), 1, anon_sym_RPAREN, - [69380] = 2, + [69502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5100), 1, - anon_sym_COLON, - [69387] = 2, + aux_sym_preproc_if_token2, + [69509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5102), 1, - aux_sym_preproc_if_token2, - [69394] = 2, + anon_sym_RPAREN, + [69516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5104), 1, - sym_identifier, - [69401] = 2, + anon_sym_STAR, + [69523] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5106), 1, - anon_sym_LPAREN2, - [69408] = 2, + anon_sym_RPAREN, + [69530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5108), 1, - aux_sym_preproc_if_token2, - [69415] = 2, + sym_identifier, + [69537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5110), 1, - sym_identifier, - [69422] = 2, + anon_sym_RPAREN, + [69544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5112), 1, - sym_identifier, - [69429] = 2, + aux_sym_preproc_if_token2, + [69551] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5114), 1, - anon_sym_while, - [69436] = 2, + aux_sym_preproc_if_token2, + [69558] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5116), 1, aux_sym_preproc_if_token2, - [69443] = 2, + [69565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5118), 1, anon_sym_RPAREN, - [69450] = 2, + [69572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5120), 1, - sym_identifier, - [69457] = 2, + anon_sym_RPAREN, + [69579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, - sym_identifier, - [69464] = 2, + ACTIONS(3424), 1, + anon_sym_RPAREN, + [69586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(5122), 1, anon_sym_SEMI, - [69471] = 2, + [69593] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(5124), 1, + aux_sym_preproc_if_token2, + [69600] = 2, + ACTIONS(3597), 1, + sym_comment, ACTIONS(5126), 1, - anon_sym_SEMI, - [69478] = 2, + aux_sym_preproc_include_token2, + [69607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3332), 1, + anon_sym_RBRACE, + [69614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5128), 1, aux_sym_preproc_if_token2, - [69485] = 2, + [69621] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5130), 1, - anon_sym_RPAREN, - [69492] = 2, + anon_sym_SEMI, + [69628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5132), 1, - aux_sym_preproc_if_token2, - [69499] = 2, - ACTIONS(3589), 1, + anon_sym_SEMI, + [69635] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5134), 1, - aux_sym_preproc_include_token2, - [69506] = 2, + aux_sym_preproc_if_token2, + [69642] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, aux_sym_preproc_if_token2, - [69513] = 2, - ACTIONS(3589), 1, + [69649] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5138), 1, - aux_sym_preproc_include_token2, - [69520] = 2, - ACTIONS(3589), 1, + anon_sym_RPAREN, + [69656] = 2, + ACTIONS(3597), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(4685), 1, aux_sym_preproc_include_token2, - [69527] = 2, - ACTIONS(3), 1, + [69663] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(5140), 1, - anon_sym_RPAREN, - [69534] = 2, + aux_sym_preproc_include_token2, + [69670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5142), 1, - anon_sym_LPAREN2, - [69541] = 2, + anon_sym_RPAREN, + [69677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5144), 1, - sym_identifier, - [69548] = 2, + anon_sym_RPAREN, + [69684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5146), 1, anon_sym_RPAREN, - [69555] = 2, + [69691] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5148), 1, - anon_sym_STAR, - [69562] = 2, + sym_identifier, + [69698] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5150), 1, sym_identifier, - [69569] = 2, + [69705] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5152), 1, - sym_identifier, - [69576] = 2, + sym_primitive_type, + [69712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5154), 1, - sym_identifier, - [69583] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [69719] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(5156), 1, - sym_identifier, - [69590] = 2, + aux_sym_preproc_include_token2, + [69726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5158), 1, - aux_sym_preproc_if_token2, - [69597] = 2, - ACTIONS(3589), 1, + sym_identifier, + [69733] = 2, + ACTIONS(3597), 1, sym_comment, ACTIONS(5160), 1, aux_sym_preproc_include_token2, - [69604] = 2, + [69740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5162), 1, - aux_sym_preproc_if_token2, - [69611] = 2, + anon_sym_RPAREN, + [69747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5164), 1, - anon_sym_LPAREN2, - [69618] = 2, + anon_sym_RPAREN, + [69754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5166), 1, - aux_sym_preproc_if_token2, - [69625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 1, - anon_sym_RBRACE, - [69632] = 2, + sym_identifier, + [69761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5168), 1, - anon_sym_LPAREN2, - [69639] = 2, + anon_sym_SEMI, + [69768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5170), 1, - aux_sym_preproc_if_token2, - [69646] = 2, + anon_sym_SEMI, + [69775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3386), 1, + anon_sym_SEMI, + [69782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5172), 1, - anon_sym_RPAREN, - [69653] = 2, + aux_sym_preproc_if_token2, + [69789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3416), 1, + anon_sym_SEMI, + [69796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5174), 1, anon_sym_SEMI, - [69660] = 2, + [69803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5176), 1, - anon_sym_RPAREN, - [69667] = 2, + sym_identifier, + [69810] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3430), 1, + anon_sym_RPAREN, + [69817] = 2, + ACTIONS(3597), 1, + sym_comment, ACTIONS(5178), 1, - anon_sym_SEMI, - [69674] = 2, + aux_sym_preproc_include_token2, + [69824] = 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(4620), 1, + aux_sym_preproc_include_token2, + [69831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5180), 1, - aux_sym_preproc_if_token2, - [69681] = 2, + sym_identifier, + [69838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5182), 1, anon_sym_SEMI, - [69688] = 2, + [69845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5184), 1, - anon_sym_while, - [69695] = 2, + anon_sym_RPAREN, + [69852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5186), 1, - aux_sym_preproc_if_token2, - [69702] = 2, + anon_sym_SEMI, + [69859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5188), 1, + anon_sym_COLON, + [69866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, anon_sym_RBRACE, - [69709] = 2, + [69873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5190), 1, - sym_identifier, - [69716] = 2, + anon_sym_SEMI, + [69880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5192), 1, - aux_sym_preproc_if_token2, - [69723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4191), 1, - anon_sym_COMMA, - [69730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 1, - anon_sym_SEMI, - [69737] = 2, + anon_sym_STAR, + [69887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5194), 1, - anon_sym_RBRACE, - [69744] = 2, + sym_identifier, + [69894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5196), 1, - anon_sym_SEMI, - [69751] = 2, + sym_identifier, + [69901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5198), 1, anon_sym_SEMI, - [69758] = 2, + [69908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, - sym_identifier, - [69765] = 2, + ACTIONS(3444), 1, + anon_sym_SEMI, + [69915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 1, + ACTIONS(3436), 1, anon_sym_SEMI, - [69772] = 2, + [69922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - sym_identifier, - [69779] = 2, - ACTIONS(3589), 1, + ACTIONS(5200), 1, + aux_sym_preproc_if_token2, + [69929] = 2, + ACTIONS(3597), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(3637), 1, aux_sym_preproc_include_token2, - [69786] = 2, + [69936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(5202), 1, aux_sym_preproc_if_token2, - [69793] = 2, + [69943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - aux_sym_preproc_if_token2, - [69800] = 2, + ACTIONS(5204), 1, + sym_identifier, + [69950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, - anon_sym_COMMA, - [69807] = 2, + ACTIONS(5206), 1, + aux_sym_preproc_if_token2, + [69957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5208), 1, - aux_sym_preproc_if_token2, - [69814] = 2, + ts_builtin_sym_end, + [69964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3410), 1, - anon_sym_RPAREN, - [69821] = 2, + ACTIONS(3346), 1, + anon_sym_RBRACE, + [69971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5210), 1, - anon_sym_COMMA, - [69828] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - anon_sym_RPAREN, - [69835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3434), 1, - anon_sym_RPAREN, - [69842] = 2, + sym_identifier, + [69978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5212), 1, - anon_sym_RBRACK, - [69849] = 2, + sym_identifier, + [69985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5214), 1, - sym_identifier, - [69856] = 2, + aux_sym_preproc_if_token2, + [69992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5216), 1, - sym_identifier, - [69863] = 2, + aux_sym_preproc_if_token2, + [69999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5218), 1, - anon_sym_LPAREN2, - [69870] = 2, + sym_identifier, + [70006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + anon_sym_COMMA, + [70013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5220), 1, - sym_primitive_type, - [69877] = 2, - ACTIONS(3589), 1, + sym_identifier, + [70020] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5222), 1, - aux_sym_preproc_include_token2, - [69884] = 2, + sym_identifier, + [70027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, + ACTIONS(5224), 1, anon_sym_RPAREN, - [69891] = 2, + [70034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5224), 1, - anon_sym_RPAREN, - [69898] = 2, + ACTIONS(5226), 1, + aux_sym_preproc_if_token2, + [70041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, + ACTIONS(5228), 1, anon_sym_SEMI, - [69905] = 2, + [70048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - aux_sym_preproc_if_token2, - [69912] = 2, + ACTIONS(3452), 1, + anon_sym_RPAREN, + [70055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(3446), 1, anon_sym_RPAREN, - [69919] = 2, + [70062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(3404), 1, anon_sym_SEMI, - [69926] = 2, + [70069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5230), 1, + sym_identifier, + [70076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5232), 1, - anon_sym_RPAREN, - [69933] = 2, + sym_identifier, + [70083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5234), 1, anon_sym_RPAREN, - [69940] = 2, + [70090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5236), 1, anon_sym_COLON, - [69947] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(5238), 1, - aux_sym_preproc_include_token2, - [69954] = 2, + [70097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3406), 1, - anon_sym_RPAREN, - [69961] = 2, + ACTIONS(5238), 1, + sym_identifier, + [70104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5240), 1, - sym_identifier, - [69968] = 2, + anon_sym_LPAREN2, + [70111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5242), 1, - anon_sym_RBRACE, - [69975] = 2, + sym_identifier, + [70118] = 2, + ACTIONS(3597), 1, + sym_comment, + ACTIONS(3617), 1, + aux_sym_preproc_include_token2, + [70125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5244), 1, - anon_sym_LPAREN2, - [69982] = 2, + aux_sym_preproc_if_token2, + [70132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5246), 1, - anon_sym_SEMI, - [69989] = 2, + aux_sym_preproc_if_token2, + [70139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5248), 1, - anon_sym_RBRACE, - [69996] = 2, + aux_sym_preproc_if_token2, + [70146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5250), 1, - aux_sym_preproc_if_token2, - [70003] = 2, + anon_sym_LPAREN2, + [70153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5252), 1, - anon_sym_while, - [70010] = 2, - ACTIONS(3589), 1, + aux_sym_preproc_if_token2, + [70160] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5254), 1, - aux_sym_preproc_include_token2, - [70017] = 2, + anon_sym_RBRACE, + [70167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5256), 1, - aux_sym_preproc_if_token2, - [70024] = 2, + sym_identifier, + [70174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5258), 1, aux_sym_preproc_if_token2, - [70031] = 2, - ACTIONS(2408), 1, - aux_sym_preproc_include_token2, - ACTIONS(3589), 1, + [70181] = 2, + ACTIONS(3), 1, sym_comment, - [70038] = 2, + ACTIONS(4157), 1, + anon_sym_COMMA, + [70188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5260), 1, anon_sym_RBRACE, - [70045] = 2, + [70195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5262), 1, - aux_sym_preproc_if_token2, - [70052] = 2, + sym_identifier, + [70202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5264), 1, - aux_sym_preproc_if_token2, - [70059] = 2, + anon_sym_LPAREN2, + [70209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5266), 1, - anon_sym_while, - [70066] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4647), 1, - aux_sym_preproc_include_token2, - [70073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3412), 1, - anon_sym_SEMI, - [70080] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 1, - anon_sym_RPAREN, - [70087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3418), 1, - anon_sym_SEMI, - [70094] = 2, + anon_sym_LPAREN2, + [70216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5268), 1, - anon_sym_RPAREN, - [70101] = 2, + sym_identifier, + [70223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5270), 1, - anon_sym_RBRACK, - [70108] = 2, + sym_identifier, + [70230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5272), 1, - anon_sym_SEMI, - [70115] = 2, + sym_identifier, + [70237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5274), 1, - anon_sym_while, - [70122] = 2, + sym_identifier, + [70244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5276), 1, - anon_sym_RPAREN, - [70129] = 2, + aux_sym_preproc_if_token2, + [70251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5278), 1, - anon_sym_SEMI, - [70136] = 2, - ACTIONS(3589), 1, - sym_comment, - ACTIONS(4633), 1, - aux_sym_preproc_include_token2, - [70143] = 2, + sym_identifier, + [70258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5280), 1, anon_sym_SEMI, - [70150] = 2, - ACTIONS(2412), 1, - aux_sym_preproc_include_token2, - ACTIONS(3589), 1, - sym_comment, - [70157] = 2, + [70265] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5282), 1, - anon_sym_RBRACE, - [70164] = 2, + anon_sym_SEMI, + [70272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5284), 1, - anon_sym_LPAREN2, - [70171] = 2, + aux_sym_preproc_if_token2, + [70279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5286), 1, - aux_sym_preproc_if_token2, - [70178] = 2, + anon_sym_LPAREN2, + [70286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5288), 1, - aux_sym_preproc_if_token2, - [70185] = 2, + anon_sym_LPAREN2, + [70293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5290), 1, - anon_sym_RPAREN, - [70192] = 2, + aux_sym_preproc_if_token2, + [70300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5292), 1, - aux_sym_preproc_if_token2, - [70199] = 2, + anon_sym_LPAREN2, + [70307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, + anon_sym_COMMA, + [70314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5294), 1, - aux_sym_preproc_if_token2, - [70206] = 2, + anon_sym_COLON, + [70321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3398), 1, + anon_sym_RPAREN, + [70328] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5296), 1, - aux_sym_preproc_if_token2, - [70213] = 2, + anon_sym_RPAREN, + [70335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3428), 1, + anon_sym_RPAREN, + [70342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3408), 1, + anon_sym_RPAREN, + [70349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5298), 1, - aux_sym_preproc_if_token2, - [70220] = 2, + anon_sym_RBRACK, + [70356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5300), 1, - anon_sym_SEMI, - [70227] = 2, + anon_sym_while, + [70363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5302), 1, - anon_sym_COLON, - [70234] = 2, + sym_identifier, + [70370] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5304), 1, - aux_sym_preproc_if_token2, - [70241] = 2, + sym_identifier, + [70377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5306), 1, - aux_sym_preproc_if_token2, - [70248] = 2, + anon_sym_LPAREN2, + [70384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5308), 1, - ts_builtin_sym_end, - [70255] = 2, + aux_sym_preproc_if_token2, + [70391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5310), 1, - anon_sym_RPAREN, - [70262] = 2, + anon_sym_RBRACE, + [70398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5312), 1, aux_sym_preproc_if_token2, - [70269] = 2, + [70405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5314), 1, - anon_sym_RPAREN, - [70276] = 2, + anon_sym_COMMA, + [70412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5316), 1, - anon_sym_LPAREN2, - [70283] = 2, + anon_sym_RBRACE, + [70419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5318), 1, - anon_sym_LPAREN2, - [70290] = 2, + anon_sym_COLON, + [70426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5320), 1, - anon_sym_LPAREN2, - [70297] = 2, + anon_sym_RPAREN, + [70433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5322), 1, - sym_identifier, - [70304] = 2, + aux_sym_preproc_if_token2, + [70440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5324), 1, - anon_sym_SEMI, - [70311] = 2, + anon_sym_LPAREN2, + [70447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5326), 1, - anon_sym_SEMI, - [70318] = 2, + aux_sym_preproc_if_token2, + [70454] = 2, + ACTIONS(2408), 1, + aux_sym_preproc_include_token2, + ACTIONS(3597), 1, + sym_comment, + [70461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5328), 1, - anon_sym_LPAREN2, - [70325] = 2, + anon_sym_while, + [70468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5330), 1, - aux_sym_preproc_if_token2, - [70332] = 2, + anon_sym_RBRACE, + [70475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5332), 1, - anon_sym_COLON, - [70339] = 2, + aux_sym_preproc_if_token2, + [70482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5334), 1, - anon_sym_SEMI, - [70346] = 2, + aux_sym_preproc_if_token2, + [70489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 1, + anon_sym_RPAREN, + [70496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5336), 1, - aux_sym_preproc_if_token2, - [70353] = 2, + anon_sym_RPAREN, + [70503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5338), 1, - sym_identifier, - [70360] = 2, + anon_sym_RBRACK, + [70510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5340), 1, - aux_sym_preproc_if_token2, - [70367] = 2, - ACTIONS(3589), 1, + anon_sym_RPAREN, + [70517] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5342), 1, - aux_sym_preproc_include_token2, - [70374] = 2, + anon_sym_while, + [70524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5344), 1, - aux_sym_preproc_if_token2, - [70381] = 2, + anon_sym_LPAREN2, + [70531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5346), 1, - anon_sym_LPAREN2, - [70388] = 2, + anon_sym_RBRACE, + [70538] = 2, + ACTIONS(2412), 1, + aux_sym_preproc_include_token2, + ACTIONS(3597), 1, + sym_comment, + [70545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5348), 1, - sym_identifier, - [70395] = 2, + aux_sym_preproc_if_token2, + [70552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5350), 1, aux_sym_preproc_if_token2, - [70402] = 2, + [70559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5352), 1, anon_sym_LPAREN2, - [70409] = 2, - ACTIONS(3589), 1, + [70566] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5354), 1, - aux_sym_preproc_include_token2, - [70416] = 2, + aux_sym_preproc_if_token2, + [70573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5356), 1, - anon_sym_LPAREN2, - [70423] = 2, + anon_sym_while, + [70580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5358), 1, - anon_sym_RPAREN, - [70430] = 2, + aux_sym_preproc_if_token2, + [70587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5360), 1, - anon_sym_RPAREN, - [70437] = 2, + aux_sym_preproc_if_token2, + [70594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5362), 1, - anon_sym_COLON, - [70444] = 2, + aux_sym_preproc_if_token2, + [70601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5364), 1, - aux_sym_preproc_if_token2, - [70451] = 2, + anon_sym_RPAREN, + [70608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5366), 1, - aux_sym_preproc_if_token2, - [70458] = 2, + anon_sym_LPAREN2, + [70615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5368), 1, - aux_sym_preproc_if_token2, - [70465] = 2, + anon_sym_LPAREN2, + [70622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5370), 1, - anon_sym_LPAREN2, - [70472] = 2, + sym_identifier, + [70629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5372), 1, - anon_sym_SEMI, - [70479] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_SEMI, - [70486] = 2, + anon_sym_LPAREN2, + [70636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5374), 1, - anon_sym_LPAREN2, - [70493] = 2, + sym_identifier, + [70643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5376), 1, - anon_sym_RPAREN, - [70500] = 2, + anon_sym_LPAREN2, + [70650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5378), 1, - sym_identifier, - [70507] = 2, + anon_sym_COLON, + [70657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5380), 1, - anon_sym_SEMI, - [70514] = 2, + sym_identifier, + [70664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5382), 1, anon_sym_LPAREN2, - [70521] = 2, + [70671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5384), 1, - anon_sym_RPAREN, - [70528] = 2, + aux_sym_preproc_if_token2, + [70678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5386), 1, - sym_identifier, - [70535] = 2, + aux_sym_preproc_if_token2, + [70685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5388), 1, anon_sym_LPAREN2, + [70692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5390), 1, + aux_sym_preproc_if_token2, + [70699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5392), 1, + sym_identifier, + [70706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 1, + anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(557)] = 0, - [SMALL_STATE(558)] = 114, - [SMALL_STATE(559)] = 228, - [SMALL_STATE(560)] = 338, - [SMALL_STATE(561)] = 449, - [SMALL_STATE(562)] = 557, - [SMALL_STATE(563)] = 665, - [SMALL_STATE(564)] = 771, - [SMALL_STATE(565)] = 879, - [SMALL_STATE(566)] = 987, - [SMALL_STATE(567)] = 1095, - [SMALL_STATE(568)] = 1203, - [SMALL_STATE(569)] = 1311, - [SMALL_STATE(570)] = 1419, - [SMALL_STATE(571)] = 1527, - [SMALL_STATE(572)] = 1635, - [SMALL_STATE(573)] = 1743, - [SMALL_STATE(574)] = 1851, - [SMALL_STATE(575)] = 1959, - [SMALL_STATE(576)] = 2067, - [SMALL_STATE(577)] = 2175, - [SMALL_STATE(578)] = 2283, - [SMALL_STATE(579)] = 2391, - [SMALL_STATE(580)] = 2499, - [SMALL_STATE(581)] = 2607, - [SMALL_STATE(582)] = 2713, - [SMALL_STATE(583)] = 2821, - [SMALL_STATE(584)] = 2929, - [SMALL_STATE(585)] = 3037, - [SMALL_STATE(586)] = 3145, - [SMALL_STATE(587)] = 3251, - [SMALL_STATE(588)] = 3359, - [SMALL_STATE(589)] = 3467, - [SMALL_STATE(590)] = 3575, - [SMALL_STATE(591)] = 3683, - [SMALL_STATE(592)] = 3789, - [SMALL_STATE(593)] = 3894, - [SMALL_STATE(594)] = 3997, - [SMALL_STATE(595)] = 4100, - [SMALL_STATE(596)] = 4203, - [SMALL_STATE(597)] = 4308, - [SMALL_STATE(598)] = 4413, - [SMALL_STATE(599)] = 4516, - [SMALL_STATE(600)] = 4619, - [SMALL_STATE(601)] = 4724, - [SMALL_STATE(602)] = 4827, - [SMALL_STATE(603)] = 4940, - [SMALL_STATE(604)] = 5043, - [SMALL_STATE(605)] = 5148, - [SMALL_STATE(606)] = 5253, - [SMALL_STATE(607)] = 5358, - [SMALL_STATE(608)] = 5461, - [SMALL_STATE(609)] = 5566, - [SMALL_STATE(610)] = 5669, - [SMALL_STATE(611)] = 5774, - [SMALL_STATE(612)] = 5879, - [SMALL_STATE(613)] = 5982, - [SMALL_STATE(614)] = 6087, - [SMALL_STATE(615)] = 6187, - [SMALL_STATE(616)] = 6289, - [SMALL_STATE(617)] = 6391, - [SMALL_STATE(618)] = 6491, - [SMALL_STATE(619)] = 6591, - [SMALL_STATE(620)] = 6691, - [SMALL_STATE(621)] = 6791, - [SMALL_STATE(622)] = 6891, - [SMALL_STATE(623)] = 6991, - [SMALL_STATE(624)] = 7091, - [SMALL_STATE(625)] = 7191, - [SMALL_STATE(626)] = 7291, - [SMALL_STATE(627)] = 7393, - [SMALL_STATE(628)] = 7493, - [SMALL_STATE(629)] = 7593, - [SMALL_STATE(630)] = 7695, - [SMALL_STATE(631)] = 7797, - [SMALL_STATE(632)] = 7899, - [SMALL_STATE(633)] = 7999, - [SMALL_STATE(634)] = 8101, - [SMALL_STATE(635)] = 8201, - [SMALL_STATE(636)] = 8303, - [SMALL_STATE(637)] = 8405, - [SMALL_STATE(638)] = 8507, - [SMALL_STATE(639)] = 8609, - [SMALL_STATE(640)] = 8711, - [SMALL_STATE(641)] = 8813, - [SMALL_STATE(642)] = 8915, - [SMALL_STATE(643)] = 9015, - [SMALL_STATE(644)] = 9103, - [SMALL_STATE(645)] = 9203, - [SMALL_STATE(646)] = 9303, - [SMALL_STATE(647)] = 9403, - [SMALL_STATE(648)] = 9503, - [SMALL_STATE(649)] = 9603, - [SMALL_STATE(650)] = 9703, - [SMALL_STATE(651)] = 9803, - [SMALL_STATE(652)] = 9903, - [SMALL_STATE(653)] = 10003, - [SMALL_STATE(654)] = 10103, - [SMALL_STATE(655)] = 10203, - [SMALL_STATE(656)] = 10303, - [SMALL_STATE(657)] = 10405, - [SMALL_STATE(658)] = 10507, - [SMALL_STATE(659)] = 10609, - [SMALL_STATE(660)] = 10709, - [SMALL_STATE(661)] = 10811, - [SMALL_STATE(662)] = 10911, - [SMALL_STATE(663)] = 11011, - [SMALL_STATE(664)] = 11113, - [SMALL_STATE(665)] = 11213, - [SMALL_STATE(666)] = 11315, - [SMALL_STATE(667)] = 11415, - [SMALL_STATE(668)] = 11515, - [SMALL_STATE(669)] = 11615, - [SMALL_STATE(670)] = 11715, - [SMALL_STATE(671)] = 11815, - [SMALL_STATE(672)] = 11917, - [SMALL_STATE(673)] = 12019, - [SMALL_STATE(674)] = 12119, - [SMALL_STATE(675)] = 12219, - [SMALL_STATE(676)] = 12319, - [SMALL_STATE(677)] = 12421, - [SMALL_STATE(678)] = 12523, - [SMALL_STATE(679)] = 12625, - [SMALL_STATE(680)] = 12727, - [SMALL_STATE(681)] = 12829, - [SMALL_STATE(682)] = 12931, - [SMALL_STATE(683)] = 13033, - [SMALL_STATE(684)] = 13135, - [SMALL_STATE(685)] = 13235, - [SMALL_STATE(686)] = 13337, - [SMALL_STATE(687)] = 13439, - [SMALL_STATE(688)] = 13541, - [SMALL_STATE(689)] = 13641, - [SMALL_STATE(690)] = 13743, - [SMALL_STATE(691)] = 13845, - [SMALL_STATE(692)] = 13947, - [SMALL_STATE(693)] = 14049, - [SMALL_STATE(694)] = 14151, - [SMALL_STATE(695)] = 14253, - [SMALL_STATE(696)] = 14355, - [SMALL_STATE(697)] = 14457, - [SMALL_STATE(698)] = 14559, - [SMALL_STATE(699)] = 14661, - [SMALL_STATE(700)] = 14763, - [SMALL_STATE(701)] = 14865, - [SMALL_STATE(702)] = 14967, - [SMALL_STATE(703)] = 15069, - [SMALL_STATE(704)] = 15171, - [SMALL_STATE(705)] = 15273, - [SMALL_STATE(706)] = 15375, - [SMALL_STATE(707)] = 15477, - [SMALL_STATE(708)] = 15579, - [SMALL_STATE(709)] = 15681, - [SMALL_STATE(710)] = 15783, - [SMALL_STATE(711)] = 15885, - [SMALL_STATE(712)] = 15987, - [SMALL_STATE(713)] = 16087, - [SMALL_STATE(714)] = 16189, - [SMALL_STATE(715)] = 16289, - [SMALL_STATE(716)] = 16391, - [SMALL_STATE(717)] = 16491, - [SMALL_STATE(718)] = 16593, - [SMALL_STATE(719)] = 16695, - [SMALL_STATE(720)] = 16797, - [SMALL_STATE(721)] = 16897, - [SMALL_STATE(722)] = 16999, - [SMALL_STATE(723)] = 17099, - [SMALL_STATE(724)] = 17199, - [SMALL_STATE(725)] = 17301, - [SMALL_STATE(726)] = 17403, - [SMALL_STATE(727)] = 17503, - [SMALL_STATE(728)] = 17603, - [SMALL_STATE(729)] = 17705, - [SMALL_STATE(730)] = 17807, - [SMALL_STATE(731)] = 17909, - [SMALL_STATE(732)] = 18011, - [SMALL_STATE(733)] = 18113, - [SMALL_STATE(734)] = 18215, - [SMALL_STATE(735)] = 18317, - [SMALL_STATE(736)] = 18419, - [SMALL_STATE(737)] = 18521, - [SMALL_STATE(738)] = 18623, - [SMALL_STATE(739)] = 18725, - [SMALL_STATE(740)] = 18827, - [SMALL_STATE(741)] = 18927, - [SMALL_STATE(742)] = 19027, - [SMALL_STATE(743)] = 19129, - [SMALL_STATE(744)] = 19231, - [SMALL_STATE(745)] = 19333, - [SMALL_STATE(746)] = 19433, - [SMALL_STATE(747)] = 19535, - [SMALL_STATE(748)] = 19635, - [SMALL_STATE(749)] = 19737, - [SMALL_STATE(750)] = 19839, - [SMALL_STATE(751)] = 19939, - [SMALL_STATE(752)] = 20039, - [SMALL_STATE(753)] = 20141, - [SMALL_STATE(754)] = 20241, - [SMALL_STATE(755)] = 20343, - [SMALL_STATE(756)] = 20445, - [SMALL_STATE(757)] = 20547, - [SMALL_STATE(758)] = 20649, - [SMALL_STATE(759)] = 20749, - [SMALL_STATE(760)] = 20849, - [SMALL_STATE(761)] = 20951, - [SMALL_STATE(762)] = 21051, - [SMALL_STATE(763)] = 21151, - [SMALL_STATE(764)] = 21251, - [SMALL_STATE(765)] = 21351, - [SMALL_STATE(766)] = 21451, - [SMALL_STATE(767)] = 21551, - [SMALL_STATE(768)] = 21652, - [SMALL_STATE(769)] = 21753, - [SMALL_STATE(770)] = 21824, - [SMALL_STATE(771)] = 21925, - [SMALL_STATE(772)] = 22026, - [SMALL_STATE(773)] = 22127, - [SMALL_STATE(774)] = 22198, - [SMALL_STATE(775)] = 22269, - [SMALL_STATE(776)] = 22337, - [SMALL_STATE(777)] = 22405, - [SMALL_STATE(778)] = 22468, - [SMALL_STATE(779)] = 22531, - [SMALL_STATE(780)] = 22593, - [SMALL_STATE(781)] = 22655, - [SMALL_STATE(782)] = 22717, - [SMALL_STATE(783)] = 22779, - [SMALL_STATE(784)] = 22841, - [SMALL_STATE(785)] = 22903, - [SMALL_STATE(786)] = 22965, - [SMALL_STATE(787)] = 23027, - [SMALL_STATE(788)] = 23089, - [SMALL_STATE(789)] = 23151, - [SMALL_STATE(790)] = 23210, - [SMALL_STATE(791)] = 23269, - [SMALL_STATE(792)] = 23328, - [SMALL_STATE(793)] = 23387, - [SMALL_STATE(794)] = 23479, - [SMALL_STATE(795)] = 23571, - [SMALL_STATE(796)] = 23629, - [SMALL_STATE(797)] = 23687, - [SMALL_STATE(798)] = 23781, - [SMALL_STATE(799)] = 23839, - [SMALL_STATE(800)] = 23897, - [SMALL_STATE(801)] = 23955, - [SMALL_STATE(802)] = 24047, - [SMALL_STATE(803)] = 24105, - [SMALL_STATE(804)] = 24197, - [SMALL_STATE(805)] = 24289, - [SMALL_STATE(806)] = 24381, - [SMALL_STATE(807)] = 24439, - [SMALL_STATE(808)] = 24531, - [SMALL_STATE(809)] = 24589, - [SMALL_STATE(810)] = 24647, - [SMALL_STATE(811)] = 24705, - [SMALL_STATE(812)] = 24763, - [SMALL_STATE(813)] = 24855, - [SMALL_STATE(814)] = 24947, - [SMALL_STATE(815)] = 25039, - [SMALL_STATE(816)] = 25097, - [SMALL_STATE(817)] = 25189, - [SMALL_STATE(818)] = 25281, - [SMALL_STATE(819)] = 25373, - [SMALL_STATE(820)] = 25431, - [SMALL_STATE(821)] = 25489, - [SMALL_STATE(822)] = 25581, - [SMALL_STATE(823)] = 25673, - [SMALL_STATE(824)] = 25765, - [SMALL_STATE(825)] = 25823, - [SMALL_STATE(826)] = 25915, - [SMALL_STATE(827)] = 26007, - [SMALL_STATE(828)] = 26099, - [SMALL_STATE(829)] = 26191, - [SMALL_STATE(830)] = 26283, - [SMALL_STATE(831)] = 26341, - [SMALL_STATE(832)] = 26406, - [SMALL_STATE(833)] = 26473, - [SMALL_STATE(834)] = 26530, - [SMALL_STATE(835)] = 26619, - [SMALL_STATE(836)] = 26686, - [SMALL_STATE(837)] = 26743, - [SMALL_STATE(838)] = 26810, - [SMALL_STATE(839)] = 26875, - [SMALL_STATE(840)] = 26932, - [SMALL_STATE(841)] = 27023, - [SMALL_STATE(842)] = 27080, - [SMALL_STATE(843)] = 27147, - [SMALL_STATE(844)] = 27214, - [SMALL_STATE(845)] = 27303, - [SMALL_STATE(846)] = 27365, - [SMALL_STATE(847)] = 27427, - [SMALL_STATE(848)] = 27489, - [SMALL_STATE(849)] = 27553, - [SMALL_STATE(850)] = 27612, - [SMALL_STATE(851)] = 27671, - [SMALL_STATE(852)] = 27734, - [SMALL_STATE(853)] = 27793, - [SMALL_STATE(854)] = 27875, - [SMALL_STATE(855)] = 27957, - [SMALL_STATE(856)] = 28039, - [SMALL_STATE(857)] = 28121, - [SMALL_STATE(858)] = 28175, - [SMALL_STATE(859)] = 28229, - [SMALL_STATE(860)] = 28311, - [SMALL_STATE(861)] = 28393, - [SMALL_STATE(862)] = 28475, - [SMALL_STATE(863)] = 28557, - [SMALL_STATE(864)] = 28639, - [SMALL_STATE(865)] = 28721, - [SMALL_STATE(866)] = 28784, - [SMALL_STATE(867)] = 28847, - [SMALL_STATE(868)] = 28926, - [SMALL_STATE(869)] = 28989, - [SMALL_STATE(870)] = 29052, - [SMALL_STATE(871)] = 29115, - [SMALL_STATE(872)] = 29178, - [SMALL_STATE(873)] = 29243, - [SMALL_STATE(874)] = 29296, - [SMALL_STATE(875)] = 29359, - [SMALL_STATE(876)] = 29427, - [SMALL_STATE(877)] = 29493, - [SMALL_STATE(878)] = 29565, - [SMALL_STATE(879)] = 29639, - [SMALL_STATE(880)] = 29715, - [SMALL_STATE(881)] = 29775, - [SMALL_STATE(882)] = 29853, - [SMALL_STATE(883)] = 29939, - [SMALL_STATE(884)] = 30021, - [SMALL_STATE(885)] = 30107, - [SMALL_STATE(886)] = 30187, - [SMALL_STATE(887)] = 30251, - [SMALL_STATE(888)] = 30337, - [SMALL_STATE(889)] = 30422, - [SMALL_STATE(890)] = 30485, - [SMALL_STATE(891)] = 30536, - [SMALL_STATE(892)] = 30601, - [SMALL_STATE(893)] = 30686, - [SMALL_STATE(894)] = 30753, - [SMALL_STATE(895)] = 30838, - [SMALL_STATE(896)] = 30909, - [SMALL_STATE(897)] = 30982, - [SMALL_STATE(898)] = 31057, - [SMALL_STATE(899)] = 31134, - [SMALL_STATE(900)] = 31185, - [SMALL_STATE(901)] = 31264, - [SMALL_STATE(902)] = 31319, - [SMALL_STATE(903)] = 31370, - [SMALL_STATE(904)] = 31451, - [SMALL_STATE(905)] = 31502, - [SMALL_STATE(906)] = 31553, - [SMALL_STATE(907)] = 31613, - [SMALL_STATE(908)] = 31675, - [SMALL_STATE(909)] = 31735, - [SMALL_STATE(910)] = 31801, - [SMALL_STATE(911)] = 31855, - [SMALL_STATE(912)] = 31925, - [SMALL_STATE(913)] = 31985, - [SMALL_STATE(914)] = 32049, - [SMALL_STATE(915)] = 32109, - [SMALL_STATE(916)] = 32167, - [SMALL_STATE(917)] = 32239, - [SMALL_STATE(918)] = 32313, - [SMALL_STATE(919)] = 32389, - [SMALL_STATE(920)] = 32473, - [SMALL_STATE(921)] = 32557, - [SMALL_STATE(922)] = 32617, - [SMALL_STATE(923)] = 32695, - [SMALL_STATE(924)] = 32779, - [SMALL_STATE(925)] = 32859, - [SMALL_STATE(926)] = 32908, - [SMALL_STATE(927)] = 32957, - [SMALL_STATE(928)] = 33006, - [SMALL_STATE(929)] = 33055, - [SMALL_STATE(930)] = 33104, - [SMALL_STATE(931)] = 33153, - [SMALL_STATE(932)] = 33202, - [SMALL_STATE(933)] = 33251, - [SMALL_STATE(934)] = 33300, - [SMALL_STATE(935)] = 33349, - [SMALL_STATE(936)] = 33398, - [SMALL_STATE(937)] = 33447, - [SMALL_STATE(938)] = 33496, - [SMALL_STATE(939)] = 33545, - [SMALL_STATE(940)] = 33594, - [SMALL_STATE(941)] = 33643, - [SMALL_STATE(942)] = 33692, - [SMALL_STATE(943)] = 33741, - [SMALL_STATE(944)] = 33790, - [SMALL_STATE(945)] = 33839, - [SMALL_STATE(946)] = 33888, - [SMALL_STATE(947)] = 33937, - [SMALL_STATE(948)] = 33986, - [SMALL_STATE(949)] = 34035, - [SMALL_STATE(950)] = 34084, - [SMALL_STATE(951)] = 34133, - [SMALL_STATE(952)] = 34182, - [SMALL_STATE(953)] = 34235, - [SMALL_STATE(954)] = 34284, - [SMALL_STATE(955)] = 34333, - [SMALL_STATE(956)] = 34382, - [SMALL_STATE(957)] = 34431, - [SMALL_STATE(958)] = 34480, - [SMALL_STATE(959)] = 34529, - [SMALL_STATE(960)] = 34578, - [SMALL_STATE(961)] = 34627, - [SMALL_STATE(962)] = 34676, - [SMALL_STATE(963)] = 34725, - [SMALL_STATE(964)] = 34774, - [SMALL_STATE(965)] = 34823, - [SMALL_STATE(966)] = 34872, - [SMALL_STATE(967)] = 34921, - [SMALL_STATE(968)] = 34970, - [SMALL_STATE(969)] = 35019, - [SMALL_STATE(970)] = 35068, - [SMALL_STATE(971)] = 35117, - [SMALL_STATE(972)] = 35172, - [SMALL_STATE(973)] = 35235, - [SMALL_STATE(974)] = 35318, - [SMALL_STATE(975)] = 35365, - [SMALL_STATE(976)] = 35420, - [SMALL_STATE(977)] = 35499, - [SMALL_STATE(978)] = 35546, - [SMALL_STATE(979)] = 35593, - [SMALL_STATE(980)] = 35640, - [SMALL_STATE(981)] = 35687, - [SMALL_STATE(982)] = 35734, - [SMALL_STATE(983)] = 35781, - [SMALL_STATE(984)] = 35842, - [SMALL_STATE(985)] = 35889, - [SMALL_STATE(986)] = 35948, - [SMALL_STATE(987)] = 36001, - [SMALL_STATE(988)] = 36080, - [SMALL_STATE(989)] = 36135, - [SMALL_STATE(990)] = 36212, - [SMALL_STATE(991)] = 36287, - [SMALL_STATE(992)] = 36360, - [SMALL_STATE(993)] = 36431, - [SMALL_STATE(994)] = 36500, - [SMALL_STATE(995)] = 36559, - [SMALL_STATE(996)] = 36624, - [SMALL_STATE(997)] = 36671, - [SMALL_STATE(998)] = 36754, - [SMALL_STATE(999)] = 36801, - [SMALL_STATE(1000)] = 36858, - [SMALL_STATE(1001)] = 36917, - [SMALL_STATE(1002)] = 37000, - [SMALL_STATE(1003)] = 37059, - [SMALL_STATE(1004)] = 37106, - [SMALL_STATE(1005)] = 37153, - [SMALL_STATE(1006)] = 37212, - [SMALL_STATE(1007)] = 37259, - [SMALL_STATE(1008)] = 37312, - [SMALL_STATE(1009)] = 37367, - [SMALL_STATE(1010)] = 37414, - [SMALL_STATE(1011)] = 37461, - [SMALL_STATE(1012)] = 37508, - [SMALL_STATE(1013)] = 37555, - [SMALL_STATE(1014)] = 37602, - [SMALL_STATE(1015)] = 37657, - [SMALL_STATE(1016)] = 37704, - [SMALL_STATE(1017)] = 37751, - [SMALL_STATE(1018)] = 37797, - [SMALL_STATE(1019)] = 37843, - [SMALL_STATE(1020)] = 37889, - [SMALL_STATE(1021)] = 37939, - [SMALL_STATE(1022)] = 37985, - [SMALL_STATE(1023)] = 38031, - [SMALL_STATE(1024)] = 38076, - [SMALL_STATE(1025)] = 38125, - [SMALL_STATE(1026)] = 38170, - [SMALL_STATE(1027)] = 38219, - [SMALL_STATE(1028)] = 38264, - [SMALL_STATE(1029)] = 38309, - [SMALL_STATE(1030)] = 38354, - [SMALL_STATE(1031)] = 38399, - [SMALL_STATE(1032)] = 38444, - [SMALL_STATE(1033)] = 38489, - [SMALL_STATE(1034)] = 38534, - [SMALL_STATE(1035)] = 38579, - [SMALL_STATE(1036)] = 38624, - [SMALL_STATE(1037)] = 38669, - [SMALL_STATE(1038)] = 38718, - [SMALL_STATE(1039)] = 38763, - [SMALL_STATE(1040)] = 38820, - [SMALL_STATE(1041)] = 38865, - [SMALL_STATE(1042)] = 38910, - [SMALL_STATE(1043)] = 38955, - [SMALL_STATE(1044)] = 39000, - [SMALL_STATE(1045)] = 39045, - [SMALL_STATE(1046)] = 39090, - [SMALL_STATE(1047)] = 39139, - [SMALL_STATE(1048)] = 39184, - [SMALL_STATE(1049)] = 39229, - [SMALL_STATE(1050)] = 39274, - [SMALL_STATE(1051)] = 39319, - [SMALL_STATE(1052)] = 39364, - [SMALL_STATE(1053)] = 39409, - [SMALL_STATE(1054)] = 39454, - [SMALL_STATE(1055)] = 39503, - [SMALL_STATE(1056)] = 39548, - [SMALL_STATE(1057)] = 39597, - [SMALL_STATE(1058)] = 39646, - [SMALL_STATE(1059)] = 39691, - [SMALL_STATE(1060)] = 39736, - [SMALL_STATE(1061)] = 39781, - [SMALL_STATE(1062)] = 39826, - [SMALL_STATE(1063)] = 39883, - [SMALL_STATE(1064)] = 39928, - [SMALL_STATE(1065)] = 39977, - [SMALL_STATE(1066)] = 40026, - [SMALL_STATE(1067)] = 40075, - [SMALL_STATE(1068)] = 40120, - [SMALL_STATE(1069)] = 40169, - [SMALL_STATE(1070)] = 40218, - [SMALL_STATE(1071)] = 40267, - [SMALL_STATE(1072)] = 40316, - [SMALL_STATE(1073)] = 40361, - [SMALL_STATE(1074)] = 40418, - [SMALL_STATE(1075)] = 40475, - [SMALL_STATE(1076)] = 40520, - [SMALL_STATE(1077)] = 40565, - [SMALL_STATE(1078)] = 40614, - [SMALL_STATE(1079)] = 40663, - [SMALL_STATE(1080)] = 40711, - [SMALL_STATE(1081)] = 40763, - [SMALL_STATE(1082)] = 40807, - [SMALL_STATE(1083)] = 40851, - [SMALL_STATE(1084)] = 40895, - [SMALL_STATE(1085)] = 40939, - [SMALL_STATE(1086)] = 40987, - [SMALL_STATE(1087)] = 41031, - [SMALL_STATE(1088)] = 41075, - [SMALL_STATE(1089)] = 41119, - [SMALL_STATE(1090)] = 41167, - [SMALL_STATE(1091)] = 41217, - [SMALL_STATE(1092)] = 41261, - [SMALL_STATE(1093)] = 41309, - [SMALL_STATE(1094)] = 41357, - [SMALL_STATE(1095)] = 41405, - [SMALL_STATE(1096)] = 41449, - [SMALL_STATE(1097)] = 41493, - [SMALL_STATE(1098)] = 41537, - [SMALL_STATE(1099)] = 41581, - [SMALL_STATE(1100)] = 41625, - [SMALL_STATE(1101)] = 41669, - [SMALL_STATE(1102)] = 41713, - [SMALL_STATE(1103)] = 41757, - [SMALL_STATE(1104)] = 41801, - [SMALL_STATE(1105)] = 41845, - [SMALL_STATE(1106)] = 41889, - [SMALL_STATE(1107)] = 41933, - [SMALL_STATE(1108)] = 41983, - [SMALL_STATE(1109)] = 42027, - [SMALL_STATE(1110)] = 42075, - [SMALL_STATE(1111)] = 42119, - [SMALL_STATE(1112)] = 42163, - [SMALL_STATE(1113)] = 42207, - [SMALL_STATE(1114)] = 42251, - [SMALL_STATE(1115)] = 42295, - [SMALL_STATE(1116)] = 42339, - [SMALL_STATE(1117)] = 42383, - [SMALL_STATE(1118)] = 42452, - [SMALL_STATE(1119)] = 42507, - [SMALL_STATE(1120)] = 42576, - [SMALL_STATE(1121)] = 42645, - [SMALL_STATE(1122)] = 42714, - [SMALL_STATE(1123)] = 42766, - [SMALL_STATE(1124)] = 42822, - [SMALL_STATE(1125)] = 42872, - [SMALL_STATE(1126)] = 42928, - [SMALL_STATE(1127)] = 42980, - [SMALL_STATE(1128)] = 43036, - [SMALL_STATE(1129)] = 43092, - [SMALL_STATE(1130)] = 43148, - [SMALL_STATE(1131)] = 43211, - [SMALL_STATE(1132)] = 43276, - [SMALL_STATE(1133)] = 43343, - [SMALL_STATE(1134)] = 43414, - [SMALL_STATE(1135)] = 43483, - [SMALL_STATE(1136)] = 43556, - [SMALL_STATE(1137)] = 43611, - [SMALL_STATE(1138)] = 43688, - [SMALL_STATE(1139)] = 43765, - [SMALL_STATE(1140)] = 43814, - [SMALL_STATE(1141)] = 43891, - [SMALL_STATE(1142)] = 43950, - [SMALL_STATE(1143)] = 44007, - [SMALL_STATE(1144)] = 44084, - [SMALL_STATE(1145)] = 44126, - [SMALL_STATE(1146)] = 44166, - [SMALL_STATE(1147)] = 44208, - [SMALL_STATE(1148)] = 44262, - [SMALL_STATE(1149)] = 44332, - [SMALL_STATE(1150)] = 44406, - [SMALL_STATE(1151)] = 44474, - [SMALL_STATE(1152)] = 44516, - [SMALL_STATE(1153)] = 44584, - [SMALL_STATE(1154)] = 44650, - [SMALL_STATE(1155)] = 44692, - [SMALL_STATE(1156)] = 44756, - [SMALL_STATE(1157)] = 44796, - [SMALL_STATE(1158)] = 44858, - [SMALL_STATE(1159)] = 44898, - [SMALL_STATE(1160)] = 44956, - [SMALL_STATE(1161)] = 45012, - [SMALL_STATE(1162)] = 45054, - [SMALL_STATE(1163)] = 45128, - [SMALL_STATE(1164)] = 45202, - [SMALL_STATE(1165)] = 45242, - [SMALL_STATE(1166)] = 45305, - [SMALL_STATE(1167)] = 45348, - [SMALL_STATE(1168)] = 45421, - [SMALL_STATE(1169)] = 45474, - [SMALL_STATE(1170)] = 45547, - [SMALL_STATE(1171)] = 45590, - [SMALL_STATE(1172)] = 45645, - [SMALL_STATE(1173)] = 45718, - [SMALL_STATE(1174)] = 45775, - [SMALL_STATE(1175)] = 45814, - [SMALL_STATE(1176)] = 45875, - [SMALL_STATE(1177)] = 45938, - [SMALL_STATE(1178)] = 46003, - [SMALL_STATE(1179)] = 46070, - [SMALL_STATE(1180)] = 46137, - [SMALL_STATE(1181)] = 46180, - [SMALL_STATE(1182)] = 46253, - [SMALL_STATE(1183)] = 46322, - [SMALL_STATE(1184)] = 46382, - [SMALL_STATE(1185)] = 46442, - [SMALL_STATE(1186)] = 46502, - [SMALL_STATE(1187)] = 46562, - [SMALL_STATE(1188)] = 46622, - [SMALL_STATE(1189)] = 46682, - [SMALL_STATE(1190)] = 46742, - [SMALL_STATE(1191)] = 46802, - [SMALL_STATE(1192)] = 46877, - [SMALL_STATE(1193)] = 46952, - [SMALL_STATE(1194)] = 47027, - [SMALL_STATE(1195)] = 47102, - [SMALL_STATE(1196)] = 47177, - [SMALL_STATE(1197)] = 47252, - [SMALL_STATE(1198)] = 47327, - [SMALL_STATE(1199)] = 47400, - [SMALL_STATE(1200)] = 47471, - [SMALL_STATE(1201)] = 47546, - [SMALL_STATE(1202)] = 47614, - [SMALL_STATE(1203)] = 47670, - [SMALL_STATE(1204)] = 47726, - [SMALL_STATE(1205)] = 47782, - [SMALL_STATE(1206)] = 47838, - [SMALL_STATE(1207)] = 47900, - [SMALL_STATE(1208)] = 47964, - [SMALL_STATE(1209)] = 48038, - [SMALL_STATE(1210)] = 48104, - [SMALL_STATE(1211)] = 48176, - [SMALL_STATE(1212)] = 48232, - [SMALL_STATE(1213)] = 48304, - [SMALL_STATE(1214)] = 48360, - [SMALL_STATE(1215)] = 48426, - [SMALL_STATE(1216)] = 48478, - [SMALL_STATE(1217)] = 48534, - [SMALL_STATE(1218)] = 48606, - [SMALL_STATE(1219)] = 48678, - [SMALL_STATE(1220)] = 48750, - [SMALL_STATE(1221)] = 48810, - [SMALL_STATE(1222)] = 48882, - [SMALL_STATE(1223)] = 48952, - [SMALL_STATE(1224)] = 49008, - [SMALL_STATE(1225)] = 49078, - [SMALL_STATE(1226)] = 49150, - [SMALL_STATE(1227)] = 49222, - [SMALL_STATE(1228)] = 49278, - [SMALL_STATE(1229)] = 49348, - [SMALL_STATE(1230)] = 49404, - [SMALL_STATE(1231)] = 49476, - [SMALL_STATE(1232)] = 49532, - [SMALL_STATE(1233)] = 49588, - [SMALL_STATE(1234)] = 49660, - [SMALL_STATE(1235)] = 49716, - [SMALL_STATE(1236)] = 49788, - [SMALL_STATE(1237)] = 49842, - [SMALL_STATE(1238)] = 49898, - [SMALL_STATE(1239)] = 49970, - [SMALL_STATE(1240)] = 50042, - [SMALL_STATE(1241)] = 50114, - [SMALL_STATE(1242)] = 50186, - [SMALL_STATE(1243)] = 50242, - [SMALL_STATE(1244)] = 50314, - [SMALL_STATE(1245)] = 50384, - [SMALL_STATE(1246)] = 50456, - [SMALL_STATE(1247)] = 50528, - [SMALL_STATE(1248)] = 50584, - [SMALL_STATE(1249)] = 50654, - [SMALL_STATE(1250)] = 50726, - [SMALL_STATE(1251)] = 50796, - [SMALL_STATE(1252)] = 50868, - [SMALL_STATE(1253)] = 50924, - [SMALL_STATE(1254)] = 50996, - [SMALL_STATE(1255)] = 51052, - [SMALL_STATE(1256)] = 51124, - [SMALL_STATE(1257)] = 51196, - [SMALL_STATE(1258)] = 51266, - [SMALL_STATE(1259)] = 51338, - [SMALL_STATE(1260)] = 51394, - [SMALL_STATE(1261)] = 51466, - [SMALL_STATE(1262)] = 51538, - [SMALL_STATE(1263)] = 51608, - [SMALL_STATE(1264)] = 51661, - [SMALL_STATE(1265)] = 51730, - [SMALL_STATE(1266)] = 51799, - [SMALL_STATE(1267)] = 51868, - [SMALL_STATE(1268)] = 51937, - [SMALL_STATE(1269)] = 52006, - [SMALL_STATE(1270)] = 52075, - [SMALL_STATE(1271)] = 52144, - [SMALL_STATE(1272)] = 52213, - [SMALL_STATE(1273)] = 52282, - [SMALL_STATE(1274)] = 52351, - [SMALL_STATE(1275)] = 52420, - [SMALL_STATE(1276)] = 52489, - [SMALL_STATE(1277)] = 52542, - [SMALL_STATE(1278)] = 52611, - [SMALL_STATE(1279)] = 52680, - [SMALL_STATE(1280)] = 52749, - [SMALL_STATE(1281)] = 52802, - [SMALL_STATE(1282)] = 52855, - [SMALL_STATE(1283)] = 52924, - [SMALL_STATE(1284)] = 52993, - [SMALL_STATE(1285)] = 53062, - [SMALL_STATE(1286)] = 53131, - [SMALL_STATE(1287)] = 53200, - [SMALL_STATE(1288)] = 53253, - [SMALL_STATE(1289)] = 53322, - [SMALL_STATE(1290)] = 53391, - [SMALL_STATE(1291)] = 53444, - [SMALL_STATE(1292)] = 53513, - [SMALL_STATE(1293)] = 53582, - [SMALL_STATE(1294)] = 53651, - [SMALL_STATE(1295)] = 53720, - [SMALL_STATE(1296)] = 53789, - [SMALL_STATE(1297)] = 53828, - [SMALL_STATE(1298)] = 53897, - [SMALL_STATE(1299)] = 53966, - [SMALL_STATE(1300)] = 54035, - [SMALL_STATE(1301)] = 54104, - [SMALL_STATE(1302)] = 54148, - [SMALL_STATE(1303)] = 54214, - [SMALL_STATE(1304)] = 54256, - [SMALL_STATE(1305)] = 54298, - [SMALL_STATE(1306)] = 54334, - [SMALL_STATE(1307)] = 54370, - [SMALL_STATE(1308)] = 54406, - [SMALL_STATE(1309)] = 54442, - [SMALL_STATE(1310)] = 54489, - [SMALL_STATE(1311)] = 54520, - [SMALL_STATE(1312)] = 54551, - [SMALL_STATE(1313)] = 54598, - [SMALL_STATE(1314)] = 54645, - [SMALL_STATE(1315)] = 54692, - [SMALL_STATE(1316)] = 54739, - [SMALL_STATE(1317)] = 54786, - [SMALL_STATE(1318)] = 54822, - [SMALL_STATE(1319)] = 54866, - [SMALL_STATE(1320)] = 54910, - [SMALL_STATE(1321)] = 54954, - [SMALL_STATE(1322)] = 54998, - [SMALL_STATE(1323)] = 55042, - [SMALL_STATE(1324)] = 55086, - [SMALL_STATE(1325)] = 55120, - [SMALL_STATE(1326)] = 55158, - [SMALL_STATE(1327)] = 55201, - [SMALL_STATE(1328)] = 55256, - [SMALL_STATE(1329)] = 55311, - [SMALL_STATE(1330)] = 55354, - [SMALL_STATE(1331)] = 55409, - [SMALL_STATE(1332)] = 55442, - [SMALL_STATE(1333)] = 55485, - [SMALL_STATE(1334)] = 55525, - [SMALL_STATE(1335)] = 55553, - [SMALL_STATE(1336)] = 55581, - [SMALL_STATE(1337)] = 55621, - [SMALL_STATE(1338)] = 55661, - [SMALL_STATE(1339)] = 55701, - [SMALL_STATE(1340)] = 55741, - [SMALL_STATE(1341)] = 55781, - [SMALL_STATE(1342)] = 55821, - [SMALL_STATE(1343)] = 55861, - [SMALL_STATE(1344)] = 55901, - [SMALL_STATE(1345)] = 55941, - [SMALL_STATE(1346)] = 55991, - [SMALL_STATE(1347)] = 56031, - [SMALL_STATE(1348)] = 56071, - [SMALL_STATE(1349)] = 56111, - [SMALL_STATE(1350)] = 56159, - [SMALL_STATE(1351)] = 56199, - [SMALL_STATE(1352)] = 56239, - [SMALL_STATE(1353)] = 56279, - [SMALL_STATE(1354)] = 56319, - [SMALL_STATE(1355)] = 56347, - [SMALL_STATE(1356)] = 56387, - [SMALL_STATE(1357)] = 56427, - [SMALL_STATE(1358)] = 56467, - [SMALL_STATE(1359)] = 56507, - [SMALL_STATE(1360)] = 56547, - [SMALL_STATE(1361)] = 56587, - [SMALL_STATE(1362)] = 56627, - [SMALL_STATE(1363)] = 56667, - [SMALL_STATE(1364)] = 56707, - [SMALL_STATE(1365)] = 56735, - [SMALL_STATE(1366)] = 56763, - [SMALL_STATE(1367)] = 56803, - [SMALL_STATE(1368)] = 56835, - [SMALL_STATE(1369)] = 56863, - [SMALL_STATE(1370)] = 56891, - [SMALL_STATE(1371)] = 56923, - [SMALL_STATE(1372)] = 56971, - [SMALL_STATE(1373)] = 57017, - [SMALL_STATE(1374)] = 57057, - [SMALL_STATE(1375)] = 57101, - [SMALL_STATE(1376)] = 57143, - [SMALL_STATE(1377)] = 57183, - [SMALL_STATE(1378)] = 57219, - [SMALL_STATE(1379)] = 57253, - [SMALL_STATE(1380)] = 57293, - [SMALL_STATE(1381)] = 57333, - [SMALL_STATE(1382)] = 57373, - [SMALL_STATE(1383)] = 57401, - [SMALL_STATE(1384)] = 57429, - [SMALL_STATE(1385)] = 57469, - [SMALL_STATE(1386)] = 57501, - [SMALL_STATE(1387)] = 57541, - [SMALL_STATE(1388)] = 57573, - [SMALL_STATE(1389)] = 57613, - [SMALL_STATE(1390)] = 57653, - [SMALL_STATE(1391)] = 57693, - [SMALL_STATE(1392)] = 57733, - [SMALL_STATE(1393)] = 57779, - [SMALL_STATE(1394)] = 57819, - [SMALL_STATE(1395)] = 57859, - [SMALL_STATE(1396)] = 57891, - [SMALL_STATE(1397)] = 57919, - [SMALL_STATE(1398)] = 57959, - [SMALL_STATE(1399)] = 57999, - [SMALL_STATE(1400)] = 58026, - [SMALL_STATE(1401)] = 58071, - [SMALL_STATE(1402)] = 58116, - [SMALL_STATE(1403)] = 58147, - [SMALL_STATE(1404)] = 58192, - [SMALL_STATE(1405)] = 58223, - [SMALL_STATE(1406)] = 58252, - [SMALL_STATE(1407)] = 58297, - [SMALL_STATE(1408)] = 58324, - [SMALL_STATE(1409)] = 58369, - [SMALL_STATE(1410)] = 58414, - [SMALL_STATE(1411)] = 58463, - [SMALL_STATE(1412)] = 58508, - [SMALL_STATE(1413)] = 58551, - [SMALL_STATE(1414)] = 58592, - [SMALL_STATE(1415)] = 58631, - [SMALL_STATE(1416)] = 58668, - [SMALL_STATE(1417)] = 58695, - [SMALL_STATE(1418)] = 58730, - [SMALL_STATE(1419)] = 58775, - [SMALL_STATE(1420)] = 58806, - [SMALL_STATE(1421)] = 58839, - [SMALL_STATE(1422)] = 58884, - [SMALL_STATE(1423)] = 58915, - [SMALL_STATE(1424)] = 58960, - [SMALL_STATE(1425)] = 59005, - [SMALL_STATE(1426)] = 59050, - [SMALL_STATE(1427)] = 59077, - [SMALL_STATE(1428)] = 59104, - [SMALL_STATE(1429)] = 59131, - [SMALL_STATE(1430)] = 59162, - [SMALL_STATE(1431)] = 59189, - [SMALL_STATE(1432)] = 59238, - [SMALL_STATE(1433)] = 59283, - [SMALL_STATE(1434)] = 59314, - [SMALL_STATE(1435)] = 59347, - [SMALL_STATE(1436)] = 59374, - [SMALL_STATE(1437)] = 59419, - [SMALL_STATE(1438)] = 59450, - [SMALL_STATE(1439)] = 59495, - [SMALL_STATE(1440)] = 59540, - [SMALL_STATE(1441)] = 59571, - [SMALL_STATE(1442)] = 59602, - [SMALL_STATE(1443)] = 59637, - [SMALL_STATE(1444)] = 59682, - [SMALL_STATE(1445)] = 59709, - [SMALL_STATE(1446)] = 59736, - [SMALL_STATE(1447)] = 59777, - [SMALL_STATE(1448)] = 59818, - [SMALL_STATE(1449)] = 59859, - [SMALL_STATE(1450)] = 59900, - [SMALL_STATE(1451)] = 59941, - [SMALL_STATE(1452)] = 59982, - [SMALL_STATE(1453)] = 60023, - [SMALL_STATE(1454)] = 60064, - [SMALL_STATE(1455)] = 60099, - [SMALL_STATE(1456)] = 60140, - [SMALL_STATE(1457)] = 60181, - [SMALL_STATE(1458)] = 60229, - [SMALL_STATE(1459)] = 60277, - [SMALL_STATE(1460)] = 60325, - [SMALL_STATE(1461)] = 60373, - [SMALL_STATE(1462)] = 60421, - [SMALL_STATE(1463)] = 60459, - [SMALL_STATE(1464)] = 60497, - [SMALL_STATE(1465)] = 60542, - [SMALL_STATE(1466)] = 60587, - [SMALL_STATE(1467)] = 60628, - [SMALL_STATE(1468)] = 60673, - [SMALL_STATE(1469)] = 60714, - [SMALL_STATE(1470)] = 60755, - [SMALL_STATE(1471)] = 60796, - [SMALL_STATE(1472)] = 60841, - [SMALL_STATE(1473)] = 60886, - [SMALL_STATE(1474)] = 60925, - [SMALL_STATE(1475)] = 60963, - [SMALL_STATE(1476)] = 61001, - [SMALL_STATE(1477)] = 61039, - [SMALL_STATE(1478)] = 61077, - [SMALL_STATE(1479)] = 61115, - [SMALL_STATE(1480)] = 61141, - [SMALL_STATE(1481)] = 61171, - [SMALL_STATE(1482)] = 61210, - [SMALL_STATE(1483)] = 61245, - [SMALL_STATE(1484)] = 61274, - [SMALL_STATE(1485)] = 61309, - [SMALL_STATE(1486)] = 61334, - [SMALL_STATE(1487)] = 61369, - [SMALL_STATE(1488)] = 61394, - [SMALL_STATE(1489)] = 61429, - [SMALL_STATE(1490)] = 61464, - [SMALL_STATE(1491)] = 61493, - [SMALL_STATE(1492)] = 61528, - [SMALL_STATE(1493)] = 61553, - [SMALL_STATE(1494)] = 61588, - [SMALL_STATE(1495)] = 61613, - [SMALL_STATE(1496)] = 61646, - [SMALL_STATE(1497)] = 61681, - [SMALL_STATE(1498)] = 61716, - [SMALL_STATE(1499)] = 61745, - [SMALL_STATE(1500)] = 61774, - [SMALL_STATE(1501)] = 61807, - [SMALL_STATE(1502)] = 61842, - [SMALL_STATE(1503)] = 61877, - [SMALL_STATE(1504)] = 61912, - [SMALL_STATE(1505)] = 61944, - [SMALL_STATE(1506)] = 61976, - [SMALL_STATE(1507)] = 61996, - [SMALL_STATE(1508)] = 62028, - [SMALL_STATE(1509)] = 62060, - [SMALL_STATE(1510)] = 62094, - [SMALL_STATE(1511)] = 62126, - [SMALL_STATE(1512)] = 62158, - [SMALL_STATE(1513)] = 62182, - [SMALL_STATE(1514)] = 62202, - [SMALL_STATE(1515)] = 62238, - [SMALL_STATE(1516)] = 62258, - [SMALL_STATE(1517)] = 62289, - [SMALL_STATE(1518)] = 62318, - [SMALL_STATE(1519)] = 62351, - [SMALL_STATE(1520)] = 62380, - [SMALL_STATE(1521)] = 62413, - [SMALL_STATE(1522)] = 62444, - [SMALL_STATE(1523)] = 62473, - [SMALL_STATE(1524)] = 62500, - [SMALL_STATE(1525)] = 62527, - [SMALL_STATE(1526)] = 62560, - [SMALL_STATE(1527)] = 62587, - [SMALL_STATE(1528)] = 62616, - [SMALL_STATE(1529)] = 62645, - [SMALL_STATE(1530)] = 62674, - [SMALL_STATE(1531)] = 62701, - [SMALL_STATE(1532)] = 62730, - [SMALL_STATE(1533)] = 62759, - [SMALL_STATE(1534)] = 62788, - [SMALL_STATE(1535)] = 62819, - [SMALL_STATE(1536)] = 62848, - [SMALL_STATE(1537)] = 62872, - [SMALL_STATE(1538)] = 62890, - [SMALL_STATE(1539)] = 62908, - [SMALL_STATE(1540)] = 62926, - [SMALL_STATE(1541)] = 62950, - [SMALL_STATE(1542)] = 62976, - [SMALL_STATE(1543)] = 63002, - [SMALL_STATE(1544)] = 63024, - [SMALL_STATE(1545)] = 63054, - [SMALL_STATE(1546)] = 63072, - [SMALL_STATE(1547)] = 63098, - [SMALL_STATE(1548)] = 63116, - [SMALL_STATE(1549)] = 63134, - [SMALL_STATE(1550)] = 63160, - [SMALL_STATE(1551)] = 63183, - [SMALL_STATE(1552)] = 63206, - [SMALL_STATE(1553)] = 63235, - [SMALL_STATE(1554)] = 63256, - [SMALL_STATE(1555)] = 63285, - [SMALL_STATE(1556)] = 63314, - [SMALL_STATE(1557)] = 63335, - [SMALL_STATE(1558)] = 63360, - [SMALL_STATE(1559)] = 63389, - [SMALL_STATE(1560)] = 63412, - [SMALL_STATE(1561)] = 63433, - [SMALL_STATE(1562)] = 63462, - [SMALL_STATE(1563)] = 63483, - [SMALL_STATE(1564)] = 63506, - [SMALL_STATE(1565)] = 63527, - [SMALL_STATE(1566)] = 63548, - [SMALL_STATE(1567)] = 63564, - [SMALL_STATE(1568)] = 63588, - [SMALL_STATE(1569)] = 63608, - [SMALL_STATE(1570)] = 63634, - [SMALL_STATE(1571)] = 63650, - [SMALL_STATE(1572)] = 63676, - [SMALL_STATE(1573)] = 63696, - [SMALL_STATE(1574)] = 63712, - [SMALL_STATE(1575)] = 63738, - [SMALL_STATE(1576)] = 63758, - [SMALL_STATE(1577)] = 63782, - [SMALL_STATE(1578)] = 63798, - [SMALL_STATE(1579)] = 63816, - [SMALL_STATE(1580)] = 63842, - [SMALL_STATE(1581)] = 63868, - [SMALL_STATE(1582)] = 63892, - [SMALL_STATE(1583)] = 63918, - [SMALL_STATE(1584)] = 63944, - [SMALL_STATE(1585)] = 63968, - [SMALL_STATE(1586)] = 63988, - [SMALL_STATE(1587)] = 64008, - [SMALL_STATE(1588)] = 64030, - [SMALL_STATE(1589)] = 64046, - [SMALL_STATE(1590)] = 64072, - [SMALL_STATE(1591)] = 64088, - [SMALL_STATE(1592)] = 64114, - [SMALL_STATE(1593)] = 64140, - [SMALL_STATE(1594)] = 64158, - [SMALL_STATE(1595)] = 64174, - [SMALL_STATE(1596)] = 64200, - [SMALL_STATE(1597)] = 64220, - [SMALL_STATE(1598)] = 64244, - [SMALL_STATE(1599)] = 64268, - [SMALL_STATE(1600)] = 64284, - [SMALL_STATE(1601)] = 64304, - [SMALL_STATE(1602)] = 64319, - [SMALL_STATE(1603)] = 64344, - [SMALL_STATE(1604)] = 64363, - [SMALL_STATE(1605)] = 64378, - [SMALL_STATE(1606)] = 64401, - [SMALL_STATE(1607)] = 64416, - [SMALL_STATE(1608)] = 64431, - [SMALL_STATE(1609)] = 64450, - [SMALL_STATE(1610)] = 64467, - [SMALL_STATE(1611)] = 64482, - [SMALL_STATE(1612)] = 64505, - [SMALL_STATE(1613)] = 64520, - [SMALL_STATE(1614)] = 64535, - [SMALL_STATE(1615)] = 64558, - [SMALL_STATE(1616)] = 64573, - [SMALL_STATE(1617)] = 64588, - [SMALL_STATE(1618)] = 64604, - [SMALL_STATE(1619)] = 64618, - [SMALL_STATE(1620)] = 64636, - [SMALL_STATE(1621)] = 64650, - [SMALL_STATE(1622)] = 64668, - [SMALL_STATE(1623)] = 64682, - [SMALL_STATE(1624)] = 64696, - [SMALL_STATE(1625)] = 64712, - [SMALL_STATE(1626)] = 64726, - [SMALL_STATE(1627)] = 64740, - [SMALL_STATE(1628)] = 64758, - [SMALL_STATE(1629)] = 64772, - [SMALL_STATE(1630)] = 64786, - [SMALL_STATE(1631)] = 64800, - [SMALL_STATE(1632)] = 64814, - [SMALL_STATE(1633)] = 64830, - [SMALL_STATE(1634)] = 64848, - [SMALL_STATE(1635)] = 64866, - [SMALL_STATE(1636)] = 64880, - [SMALL_STATE(1637)] = 64896, - [SMALL_STATE(1638)] = 64912, - [SMALL_STATE(1639)] = 64930, - [SMALL_STATE(1640)] = 64944, - [SMALL_STATE(1641)] = 64958, - [SMALL_STATE(1642)] = 64972, - [SMALL_STATE(1643)] = 64986, - [SMALL_STATE(1644)] = 65000, - [SMALL_STATE(1645)] = 65016, - [SMALL_STATE(1646)] = 65030, - [SMALL_STATE(1647)] = 65048, - [SMALL_STATE(1648)] = 65065, - [SMALL_STATE(1649)] = 65082, - [SMALL_STATE(1650)] = 65093, - [SMALL_STATE(1651)] = 65104, - [SMALL_STATE(1652)] = 65115, - [SMALL_STATE(1653)] = 65126, - [SMALL_STATE(1654)] = 65137, - [SMALL_STATE(1655)] = 65156, - [SMALL_STATE(1656)] = 65167, - [SMALL_STATE(1657)] = 65186, - [SMALL_STATE(1658)] = 65197, - [SMALL_STATE(1659)] = 65208, - [SMALL_STATE(1660)] = 65219, - [SMALL_STATE(1661)] = 65230, - [SMALL_STATE(1662)] = 65249, - [SMALL_STATE(1663)] = 65260, - [SMALL_STATE(1664)] = 65273, - [SMALL_STATE(1665)] = 65284, - [SMALL_STATE(1666)] = 65298, - [SMALL_STATE(1667)] = 65314, - [SMALL_STATE(1668)] = 65328, - [SMALL_STATE(1669)] = 65342, - [SMALL_STATE(1670)] = 65356, - [SMALL_STATE(1671)] = 65370, - [SMALL_STATE(1672)] = 65384, - [SMALL_STATE(1673)] = 65398, - [SMALL_STATE(1674)] = 65412, - [SMALL_STATE(1675)] = 65426, - [SMALL_STATE(1676)] = 65442, - [SMALL_STATE(1677)] = 65458, - [SMALL_STATE(1678)] = 65472, - [SMALL_STATE(1679)] = 65486, - [SMALL_STATE(1680)] = 65500, - [SMALL_STATE(1681)] = 65514, - [SMALL_STATE(1682)] = 65530, - [SMALL_STATE(1683)] = 65546, - [SMALL_STATE(1684)] = 65562, - [SMALL_STATE(1685)] = 65576, - [SMALL_STATE(1686)] = 65590, - [SMALL_STATE(1687)] = 65604, - [SMALL_STATE(1688)] = 65620, - [SMALL_STATE(1689)] = 65634, - [SMALL_STATE(1690)] = 65648, - [SMALL_STATE(1691)] = 65664, - [SMALL_STATE(1692)] = 65674, - [SMALL_STATE(1693)] = 65688, - [SMALL_STATE(1694)] = 65702, - [SMALL_STATE(1695)] = 65718, - [SMALL_STATE(1696)] = 65732, - [SMALL_STATE(1697)] = 65748, - [SMALL_STATE(1698)] = 65764, - [SMALL_STATE(1699)] = 65780, - [SMALL_STATE(1700)] = 65794, - [SMALL_STATE(1701)] = 65810, - [SMALL_STATE(1702)] = 65826, - [SMALL_STATE(1703)] = 65840, - [SMALL_STATE(1704)] = 65854, - [SMALL_STATE(1705)] = 65870, - [SMALL_STATE(1706)] = 65884, - [SMALL_STATE(1707)] = 65898, - [SMALL_STATE(1708)] = 65912, - [SMALL_STATE(1709)] = 65928, - [SMALL_STATE(1710)] = 65942, - [SMALL_STATE(1711)] = 65956, - [SMALL_STATE(1712)] = 65966, - [SMALL_STATE(1713)] = 65980, - [SMALL_STATE(1714)] = 65994, - [SMALL_STATE(1715)] = 66010, - [SMALL_STATE(1716)] = 66024, - [SMALL_STATE(1717)] = 66038, - [SMALL_STATE(1718)] = 66052, - [SMALL_STATE(1719)] = 66066, - [SMALL_STATE(1720)] = 66080, - [SMALL_STATE(1721)] = 66094, - [SMALL_STATE(1722)] = 66108, - [SMALL_STATE(1723)] = 66122, - [SMALL_STATE(1724)] = 66138, - [SMALL_STATE(1725)] = 66152, - [SMALL_STATE(1726)] = 66168, - [SMALL_STATE(1727)] = 66182, - [SMALL_STATE(1728)] = 66196, - [SMALL_STATE(1729)] = 66212, - [SMALL_STATE(1730)] = 66228, - [SMALL_STATE(1731)] = 66242, - [SMALL_STATE(1732)] = 66256, - [SMALL_STATE(1733)] = 66270, - [SMALL_STATE(1734)] = 66284, - [SMALL_STATE(1735)] = 66298, - [SMALL_STATE(1736)] = 66312, - [SMALL_STATE(1737)] = 66328, - [SMALL_STATE(1738)] = 66342, - [SMALL_STATE(1739)] = 66355, - [SMALL_STATE(1740)] = 66368, - [SMALL_STATE(1741)] = 66379, - [SMALL_STATE(1742)] = 66392, - [SMALL_STATE(1743)] = 66401, - [SMALL_STATE(1744)] = 66414, - [SMALL_STATE(1745)] = 66427, - [SMALL_STATE(1746)] = 66440, - [SMALL_STATE(1747)] = 66453, - [SMALL_STATE(1748)] = 66462, - [SMALL_STATE(1749)] = 66475, - [SMALL_STATE(1750)] = 66488, - [SMALL_STATE(1751)] = 66501, - [SMALL_STATE(1752)] = 66514, - [SMALL_STATE(1753)] = 66523, - [SMALL_STATE(1754)] = 66536, - [SMALL_STATE(1755)] = 66549, - [SMALL_STATE(1756)] = 66562, - [SMALL_STATE(1757)] = 66571, - [SMALL_STATE(1758)] = 66584, - [SMALL_STATE(1759)] = 66597, - [SMALL_STATE(1760)] = 66610, - [SMALL_STATE(1761)] = 66623, - [SMALL_STATE(1762)] = 66634, - [SMALL_STATE(1763)] = 66645, - [SMALL_STATE(1764)] = 66658, - [SMALL_STATE(1765)] = 66667, - [SMALL_STATE(1766)] = 66680, - [SMALL_STATE(1767)] = 66693, - [SMALL_STATE(1768)] = 66706, - [SMALL_STATE(1769)] = 66715, - [SMALL_STATE(1770)] = 66728, - [SMALL_STATE(1771)] = 66741, - [SMALL_STATE(1772)] = 66754, - [SMALL_STATE(1773)] = 66767, - [SMALL_STATE(1774)] = 66776, - [SMALL_STATE(1775)] = 66789, - [SMALL_STATE(1776)] = 66802, - [SMALL_STATE(1777)] = 66811, - [SMALL_STATE(1778)] = 66820, - [SMALL_STATE(1779)] = 66833, - [SMALL_STATE(1780)] = 66846, - [SMALL_STATE(1781)] = 66859, - [SMALL_STATE(1782)] = 66872, - [SMALL_STATE(1783)] = 66885, - [SMALL_STATE(1784)] = 66898, - [SMALL_STATE(1785)] = 66907, - [SMALL_STATE(1786)] = 66920, - [SMALL_STATE(1787)] = 66933, - [SMALL_STATE(1788)] = 66946, - [SMALL_STATE(1789)] = 66959, - [SMALL_STATE(1790)] = 66972, - [SMALL_STATE(1791)] = 66985, - [SMALL_STATE(1792)] = 66998, - [SMALL_STATE(1793)] = 67011, - [SMALL_STATE(1794)] = 67024, - [SMALL_STATE(1795)] = 67037, - [SMALL_STATE(1796)] = 67050, - [SMALL_STATE(1797)] = 67063, - [SMALL_STATE(1798)] = 67072, - [SMALL_STATE(1799)] = 67085, - [SMALL_STATE(1800)] = 67098, - [SMALL_STATE(1801)] = 67111, - [SMALL_STATE(1802)] = 67124, - [SMALL_STATE(1803)] = 67137, - [SMALL_STATE(1804)] = 67148, - [SMALL_STATE(1805)] = 67161, - [SMALL_STATE(1806)] = 67174, - [SMALL_STATE(1807)] = 67185, - [SMALL_STATE(1808)] = 67198, - [SMALL_STATE(1809)] = 67211, - [SMALL_STATE(1810)] = 67224, - [SMALL_STATE(1811)] = 67237, - [SMALL_STATE(1812)] = 67250, - [SMALL_STATE(1813)] = 67263, - [SMALL_STATE(1814)] = 67276, - [SMALL_STATE(1815)] = 67289, - [SMALL_STATE(1816)] = 67302, - [SMALL_STATE(1817)] = 67315, - [SMALL_STATE(1818)] = 67328, - [SMALL_STATE(1819)] = 67341, - [SMALL_STATE(1820)] = 67354, - [SMALL_STATE(1821)] = 67365, - [SMALL_STATE(1822)] = 67378, - [SMALL_STATE(1823)] = 67391, - [SMALL_STATE(1824)] = 67404, - [SMALL_STATE(1825)] = 67417, - [SMALL_STATE(1826)] = 67430, - [SMALL_STATE(1827)] = 67443, - [SMALL_STATE(1828)] = 67456, - [SMALL_STATE(1829)] = 67469, - [SMALL_STATE(1830)] = 67482, - [SMALL_STATE(1831)] = 67492, - [SMALL_STATE(1832)] = 67500, - [SMALL_STATE(1833)] = 67508, - [SMALL_STATE(1834)] = 67518, - [SMALL_STATE(1835)] = 67528, - [SMALL_STATE(1836)] = 67538, - [SMALL_STATE(1837)] = 67548, - [SMALL_STATE(1838)] = 67558, - [SMALL_STATE(1839)] = 67568, - [SMALL_STATE(1840)] = 67578, - [SMALL_STATE(1841)] = 67588, - [SMALL_STATE(1842)] = 67598, - [SMALL_STATE(1843)] = 67606, - [SMALL_STATE(1844)] = 67614, - [SMALL_STATE(1845)] = 67624, - [SMALL_STATE(1846)] = 67634, - [SMALL_STATE(1847)] = 67644, - [SMALL_STATE(1848)] = 67654, - [SMALL_STATE(1849)] = 67664, - [SMALL_STATE(1850)] = 67674, - [SMALL_STATE(1851)] = 67684, - [SMALL_STATE(1852)] = 67694, - [SMALL_STATE(1853)] = 67702, - [SMALL_STATE(1854)] = 67712, - [SMALL_STATE(1855)] = 67720, - [SMALL_STATE(1856)] = 67730, - [SMALL_STATE(1857)] = 67740, - [SMALL_STATE(1858)] = 67750, - [SMALL_STATE(1859)] = 67760, - [SMALL_STATE(1860)] = 67770, - [SMALL_STATE(1861)] = 67780, - [SMALL_STATE(1862)] = 67790, - [SMALL_STATE(1863)] = 67800, - [SMALL_STATE(1864)] = 67810, - [SMALL_STATE(1865)] = 67820, - [SMALL_STATE(1866)] = 67830, - [SMALL_STATE(1867)] = 67840, - [SMALL_STATE(1868)] = 67850, - [SMALL_STATE(1869)] = 67860, - [SMALL_STATE(1870)] = 67868, - [SMALL_STATE(1871)] = 67878, - [SMALL_STATE(1872)] = 67888, - [SMALL_STATE(1873)] = 67898, - [SMALL_STATE(1874)] = 67908, - [SMALL_STATE(1875)] = 67918, - [SMALL_STATE(1876)] = 67926, - [SMALL_STATE(1877)] = 67934, - [SMALL_STATE(1878)] = 67944, - [SMALL_STATE(1879)] = 67952, - [SMALL_STATE(1880)] = 67960, - [SMALL_STATE(1881)] = 67968, - [SMALL_STATE(1882)] = 67976, - [SMALL_STATE(1883)] = 67984, - [SMALL_STATE(1884)] = 67994, - [SMALL_STATE(1885)] = 68004, - [SMALL_STATE(1886)] = 68014, - [SMALL_STATE(1887)] = 68024, - [SMALL_STATE(1888)] = 68034, - [SMALL_STATE(1889)] = 68044, - [SMALL_STATE(1890)] = 68054, - [SMALL_STATE(1891)] = 68064, - [SMALL_STATE(1892)] = 68074, - [SMALL_STATE(1893)] = 68084, - [SMALL_STATE(1894)] = 68092, - [SMALL_STATE(1895)] = 68102, - [SMALL_STATE(1896)] = 68110, - [SMALL_STATE(1897)] = 68120, - [SMALL_STATE(1898)] = 68130, - [SMALL_STATE(1899)] = 68138, - [SMALL_STATE(1900)] = 68148, - [SMALL_STATE(1901)] = 68158, - [SMALL_STATE(1902)] = 68168, - [SMALL_STATE(1903)] = 68178, - [SMALL_STATE(1904)] = 68188, - [SMALL_STATE(1905)] = 68198, - [SMALL_STATE(1906)] = 68208, - [SMALL_STATE(1907)] = 68218, - [SMALL_STATE(1908)] = 68228, - [SMALL_STATE(1909)] = 68238, - [SMALL_STATE(1910)] = 68248, - [SMALL_STATE(1911)] = 68258, - [SMALL_STATE(1912)] = 68268, - [SMALL_STATE(1913)] = 68278, - [SMALL_STATE(1914)] = 68288, - [SMALL_STATE(1915)] = 68298, - [SMALL_STATE(1916)] = 68308, - [SMALL_STATE(1917)] = 68318, - [SMALL_STATE(1918)] = 68328, - [SMALL_STATE(1919)] = 68338, - [SMALL_STATE(1920)] = 68346, - [SMALL_STATE(1921)] = 68356, - [SMALL_STATE(1922)] = 68366, - [SMALL_STATE(1923)] = 68376, - [SMALL_STATE(1924)] = 68386, - [SMALL_STATE(1925)] = 68396, - [SMALL_STATE(1926)] = 68406, - [SMALL_STATE(1927)] = 68416, - [SMALL_STATE(1928)] = 68426, - [SMALL_STATE(1929)] = 68436, - [SMALL_STATE(1930)] = 68446, - [SMALL_STATE(1931)] = 68456, - [SMALL_STATE(1932)] = 68463, - [SMALL_STATE(1933)] = 68470, - [SMALL_STATE(1934)] = 68477, - [SMALL_STATE(1935)] = 68484, - [SMALL_STATE(1936)] = 68491, - [SMALL_STATE(1937)] = 68498, - [SMALL_STATE(1938)] = 68505, - [SMALL_STATE(1939)] = 68512, - [SMALL_STATE(1940)] = 68519, - [SMALL_STATE(1941)] = 68526, - [SMALL_STATE(1942)] = 68533, - [SMALL_STATE(1943)] = 68540, - [SMALL_STATE(1944)] = 68547, - [SMALL_STATE(1945)] = 68554, - [SMALL_STATE(1946)] = 68561, - [SMALL_STATE(1947)] = 68568, - [SMALL_STATE(1948)] = 68575, - [SMALL_STATE(1949)] = 68582, - [SMALL_STATE(1950)] = 68589, - [SMALL_STATE(1951)] = 68596, - [SMALL_STATE(1952)] = 68603, - [SMALL_STATE(1953)] = 68610, - [SMALL_STATE(1954)] = 68617, - [SMALL_STATE(1955)] = 68624, - [SMALL_STATE(1956)] = 68631, - [SMALL_STATE(1957)] = 68638, - [SMALL_STATE(1958)] = 68645, - [SMALL_STATE(1959)] = 68652, - [SMALL_STATE(1960)] = 68659, - [SMALL_STATE(1961)] = 68666, - [SMALL_STATE(1962)] = 68673, - [SMALL_STATE(1963)] = 68680, - [SMALL_STATE(1964)] = 68687, - [SMALL_STATE(1965)] = 68694, - [SMALL_STATE(1966)] = 68701, - [SMALL_STATE(1967)] = 68708, - [SMALL_STATE(1968)] = 68715, - [SMALL_STATE(1969)] = 68722, - [SMALL_STATE(1970)] = 68729, - [SMALL_STATE(1971)] = 68736, - [SMALL_STATE(1972)] = 68743, - [SMALL_STATE(1973)] = 68750, - [SMALL_STATE(1974)] = 68757, - [SMALL_STATE(1975)] = 68764, - [SMALL_STATE(1976)] = 68771, - [SMALL_STATE(1977)] = 68778, - [SMALL_STATE(1978)] = 68785, - [SMALL_STATE(1979)] = 68792, - [SMALL_STATE(1980)] = 68799, - [SMALL_STATE(1981)] = 68806, - [SMALL_STATE(1982)] = 68813, - [SMALL_STATE(1983)] = 68820, - [SMALL_STATE(1984)] = 68827, - [SMALL_STATE(1985)] = 68834, - [SMALL_STATE(1986)] = 68841, - [SMALL_STATE(1987)] = 68848, - [SMALL_STATE(1988)] = 68855, - [SMALL_STATE(1989)] = 68862, - [SMALL_STATE(1990)] = 68869, - [SMALL_STATE(1991)] = 68876, - [SMALL_STATE(1992)] = 68883, - [SMALL_STATE(1993)] = 68890, - [SMALL_STATE(1994)] = 68897, - [SMALL_STATE(1995)] = 68904, - [SMALL_STATE(1996)] = 68911, - [SMALL_STATE(1997)] = 68918, - [SMALL_STATE(1998)] = 68925, - [SMALL_STATE(1999)] = 68932, - [SMALL_STATE(2000)] = 68939, - [SMALL_STATE(2001)] = 68946, - [SMALL_STATE(2002)] = 68953, - [SMALL_STATE(2003)] = 68960, - [SMALL_STATE(2004)] = 68967, - [SMALL_STATE(2005)] = 68974, - [SMALL_STATE(2006)] = 68981, - [SMALL_STATE(2007)] = 68988, - [SMALL_STATE(2008)] = 68995, - [SMALL_STATE(2009)] = 69002, - [SMALL_STATE(2010)] = 69009, - [SMALL_STATE(2011)] = 69016, - [SMALL_STATE(2012)] = 69023, - [SMALL_STATE(2013)] = 69030, - [SMALL_STATE(2014)] = 69037, - [SMALL_STATE(2015)] = 69044, - [SMALL_STATE(2016)] = 69051, - [SMALL_STATE(2017)] = 69058, - [SMALL_STATE(2018)] = 69065, - [SMALL_STATE(2019)] = 69072, - [SMALL_STATE(2020)] = 69079, - [SMALL_STATE(2021)] = 69086, - [SMALL_STATE(2022)] = 69093, - [SMALL_STATE(2023)] = 69100, - [SMALL_STATE(2024)] = 69107, - [SMALL_STATE(2025)] = 69114, - [SMALL_STATE(2026)] = 69121, - [SMALL_STATE(2027)] = 69128, - [SMALL_STATE(2028)] = 69135, - [SMALL_STATE(2029)] = 69142, - [SMALL_STATE(2030)] = 69149, - [SMALL_STATE(2031)] = 69156, - [SMALL_STATE(2032)] = 69163, - [SMALL_STATE(2033)] = 69170, - [SMALL_STATE(2034)] = 69177, - [SMALL_STATE(2035)] = 69184, - [SMALL_STATE(2036)] = 69191, - [SMALL_STATE(2037)] = 69198, - [SMALL_STATE(2038)] = 69205, - [SMALL_STATE(2039)] = 69212, - [SMALL_STATE(2040)] = 69219, - [SMALL_STATE(2041)] = 69226, - [SMALL_STATE(2042)] = 69233, - [SMALL_STATE(2043)] = 69240, - [SMALL_STATE(2044)] = 69247, - [SMALL_STATE(2045)] = 69254, - [SMALL_STATE(2046)] = 69261, - [SMALL_STATE(2047)] = 69268, - [SMALL_STATE(2048)] = 69275, - [SMALL_STATE(2049)] = 69282, - [SMALL_STATE(2050)] = 69289, - [SMALL_STATE(2051)] = 69296, - [SMALL_STATE(2052)] = 69303, - [SMALL_STATE(2053)] = 69310, - [SMALL_STATE(2054)] = 69317, - [SMALL_STATE(2055)] = 69324, - [SMALL_STATE(2056)] = 69331, - [SMALL_STATE(2057)] = 69338, - [SMALL_STATE(2058)] = 69345, - [SMALL_STATE(2059)] = 69352, - [SMALL_STATE(2060)] = 69359, - [SMALL_STATE(2061)] = 69366, - [SMALL_STATE(2062)] = 69373, - [SMALL_STATE(2063)] = 69380, - [SMALL_STATE(2064)] = 69387, - [SMALL_STATE(2065)] = 69394, - [SMALL_STATE(2066)] = 69401, - [SMALL_STATE(2067)] = 69408, - [SMALL_STATE(2068)] = 69415, - [SMALL_STATE(2069)] = 69422, - [SMALL_STATE(2070)] = 69429, - [SMALL_STATE(2071)] = 69436, - [SMALL_STATE(2072)] = 69443, - [SMALL_STATE(2073)] = 69450, - [SMALL_STATE(2074)] = 69457, - [SMALL_STATE(2075)] = 69464, - [SMALL_STATE(2076)] = 69471, - [SMALL_STATE(2077)] = 69478, - [SMALL_STATE(2078)] = 69485, - [SMALL_STATE(2079)] = 69492, - [SMALL_STATE(2080)] = 69499, - [SMALL_STATE(2081)] = 69506, - [SMALL_STATE(2082)] = 69513, - [SMALL_STATE(2083)] = 69520, - [SMALL_STATE(2084)] = 69527, - [SMALL_STATE(2085)] = 69534, - [SMALL_STATE(2086)] = 69541, - [SMALL_STATE(2087)] = 69548, - [SMALL_STATE(2088)] = 69555, - [SMALL_STATE(2089)] = 69562, - [SMALL_STATE(2090)] = 69569, - [SMALL_STATE(2091)] = 69576, - [SMALL_STATE(2092)] = 69583, - [SMALL_STATE(2093)] = 69590, - [SMALL_STATE(2094)] = 69597, - [SMALL_STATE(2095)] = 69604, - [SMALL_STATE(2096)] = 69611, - [SMALL_STATE(2097)] = 69618, - [SMALL_STATE(2098)] = 69625, - [SMALL_STATE(2099)] = 69632, - [SMALL_STATE(2100)] = 69639, - [SMALL_STATE(2101)] = 69646, - [SMALL_STATE(2102)] = 69653, - [SMALL_STATE(2103)] = 69660, - [SMALL_STATE(2104)] = 69667, - [SMALL_STATE(2105)] = 69674, - [SMALL_STATE(2106)] = 69681, - [SMALL_STATE(2107)] = 69688, - [SMALL_STATE(2108)] = 69695, - [SMALL_STATE(2109)] = 69702, - [SMALL_STATE(2110)] = 69709, - [SMALL_STATE(2111)] = 69716, - [SMALL_STATE(2112)] = 69723, - [SMALL_STATE(2113)] = 69730, - [SMALL_STATE(2114)] = 69737, - [SMALL_STATE(2115)] = 69744, - [SMALL_STATE(2116)] = 69751, - [SMALL_STATE(2117)] = 69758, - [SMALL_STATE(2118)] = 69765, - [SMALL_STATE(2119)] = 69772, - [SMALL_STATE(2120)] = 69779, - [SMALL_STATE(2121)] = 69786, - [SMALL_STATE(2122)] = 69793, - [SMALL_STATE(2123)] = 69800, - [SMALL_STATE(2124)] = 69807, - [SMALL_STATE(2125)] = 69814, - [SMALL_STATE(2126)] = 69821, - [SMALL_STATE(2127)] = 69828, - [SMALL_STATE(2128)] = 69835, - [SMALL_STATE(2129)] = 69842, - [SMALL_STATE(2130)] = 69849, - [SMALL_STATE(2131)] = 69856, - [SMALL_STATE(2132)] = 69863, - [SMALL_STATE(2133)] = 69870, - [SMALL_STATE(2134)] = 69877, - [SMALL_STATE(2135)] = 69884, - [SMALL_STATE(2136)] = 69891, - [SMALL_STATE(2137)] = 69898, - [SMALL_STATE(2138)] = 69905, - [SMALL_STATE(2139)] = 69912, - [SMALL_STATE(2140)] = 69919, - [SMALL_STATE(2141)] = 69926, - [SMALL_STATE(2142)] = 69933, - [SMALL_STATE(2143)] = 69940, - [SMALL_STATE(2144)] = 69947, - [SMALL_STATE(2145)] = 69954, - [SMALL_STATE(2146)] = 69961, - [SMALL_STATE(2147)] = 69968, - [SMALL_STATE(2148)] = 69975, - [SMALL_STATE(2149)] = 69982, - [SMALL_STATE(2150)] = 69989, - [SMALL_STATE(2151)] = 69996, - [SMALL_STATE(2152)] = 70003, - [SMALL_STATE(2153)] = 70010, - [SMALL_STATE(2154)] = 70017, - [SMALL_STATE(2155)] = 70024, - [SMALL_STATE(2156)] = 70031, - [SMALL_STATE(2157)] = 70038, - [SMALL_STATE(2158)] = 70045, - [SMALL_STATE(2159)] = 70052, - [SMALL_STATE(2160)] = 70059, - [SMALL_STATE(2161)] = 70066, - [SMALL_STATE(2162)] = 70073, - [SMALL_STATE(2163)] = 70080, - [SMALL_STATE(2164)] = 70087, - [SMALL_STATE(2165)] = 70094, - [SMALL_STATE(2166)] = 70101, - [SMALL_STATE(2167)] = 70108, - [SMALL_STATE(2168)] = 70115, - [SMALL_STATE(2169)] = 70122, - [SMALL_STATE(2170)] = 70129, - [SMALL_STATE(2171)] = 70136, - [SMALL_STATE(2172)] = 70143, - [SMALL_STATE(2173)] = 70150, - [SMALL_STATE(2174)] = 70157, - [SMALL_STATE(2175)] = 70164, - [SMALL_STATE(2176)] = 70171, - [SMALL_STATE(2177)] = 70178, - [SMALL_STATE(2178)] = 70185, - [SMALL_STATE(2179)] = 70192, - [SMALL_STATE(2180)] = 70199, - [SMALL_STATE(2181)] = 70206, - [SMALL_STATE(2182)] = 70213, - [SMALL_STATE(2183)] = 70220, - [SMALL_STATE(2184)] = 70227, - [SMALL_STATE(2185)] = 70234, - [SMALL_STATE(2186)] = 70241, - [SMALL_STATE(2187)] = 70248, - [SMALL_STATE(2188)] = 70255, - [SMALL_STATE(2189)] = 70262, - [SMALL_STATE(2190)] = 70269, - [SMALL_STATE(2191)] = 70276, - [SMALL_STATE(2192)] = 70283, - [SMALL_STATE(2193)] = 70290, - [SMALL_STATE(2194)] = 70297, - [SMALL_STATE(2195)] = 70304, - [SMALL_STATE(2196)] = 70311, - [SMALL_STATE(2197)] = 70318, - [SMALL_STATE(2198)] = 70325, - [SMALL_STATE(2199)] = 70332, - [SMALL_STATE(2200)] = 70339, - [SMALL_STATE(2201)] = 70346, - [SMALL_STATE(2202)] = 70353, - [SMALL_STATE(2203)] = 70360, - [SMALL_STATE(2204)] = 70367, - [SMALL_STATE(2205)] = 70374, - [SMALL_STATE(2206)] = 70381, - [SMALL_STATE(2207)] = 70388, - [SMALL_STATE(2208)] = 70395, - [SMALL_STATE(2209)] = 70402, - [SMALL_STATE(2210)] = 70409, - [SMALL_STATE(2211)] = 70416, - [SMALL_STATE(2212)] = 70423, - [SMALL_STATE(2213)] = 70430, - [SMALL_STATE(2214)] = 70437, - [SMALL_STATE(2215)] = 70444, - [SMALL_STATE(2216)] = 70451, - [SMALL_STATE(2217)] = 70458, - [SMALL_STATE(2218)] = 70465, - [SMALL_STATE(2219)] = 70472, - [SMALL_STATE(2220)] = 70479, - [SMALL_STATE(2221)] = 70486, - [SMALL_STATE(2222)] = 70493, - [SMALL_STATE(2223)] = 70500, - [SMALL_STATE(2224)] = 70507, - [SMALL_STATE(2225)] = 70514, - [SMALL_STATE(2226)] = 70521, - [SMALL_STATE(2227)] = 70528, - [SMALL_STATE(2228)] = 70535, + [SMALL_STATE(558)] = 115, + [SMALL_STATE(559)] = 230, + [SMALL_STATE(560)] = 340, + [SMALL_STATE(561)] = 452, + [SMALL_STATE(562)] = 561, + [SMALL_STATE(563)] = 670, + [SMALL_STATE(564)] = 779, + [SMALL_STATE(565)] = 888, + [SMALL_STATE(566)] = 997, + [SMALL_STATE(567)] = 1106, + [SMALL_STATE(568)] = 1215, + [SMALL_STATE(569)] = 1324, + [SMALL_STATE(570)] = 1431, + [SMALL_STATE(571)] = 1540, + [SMALL_STATE(572)] = 1649, + [SMALL_STATE(573)] = 1758, + [SMALL_STATE(574)] = 1867, + [SMALL_STATE(575)] = 1976, + [SMALL_STATE(576)] = 2085, + [SMALL_STATE(577)] = 2192, + [SMALL_STATE(578)] = 2301, + [SMALL_STATE(579)] = 2408, + [SMALL_STATE(580)] = 2517, + [SMALL_STATE(581)] = 2626, + [SMALL_STATE(582)] = 2735, + [SMALL_STATE(583)] = 2844, + [SMALL_STATE(584)] = 2953, + [SMALL_STATE(585)] = 3060, + [SMALL_STATE(586)] = 3169, + [SMALL_STATE(587)] = 3277, + [SMALL_STATE(588)] = 3383, + [SMALL_STATE(589)] = 3489, + [SMALL_STATE(590)] = 3595, + [SMALL_STATE(591)] = 3703, + [SMALL_STATE(592)] = 3807, + [SMALL_STATE(593)] = 3911, + [SMALL_STATE(594)] = 4019, + [SMALL_STATE(595)] = 4123, + [SMALL_STATE(596)] = 4227, + [SMALL_STATE(597)] = 4331, + [SMALL_STATE(598)] = 4437, + [SMALL_STATE(599)] = 4545, + [SMALL_STATE(600)] = 4653, + [SMALL_STATE(601)] = 4759, + [SMALL_STATE(602)] = 4867, + [SMALL_STATE(603)] = 4973, + [SMALL_STATE(604)] = 5077, + [SMALL_STATE(605)] = 5183, + [SMALL_STATE(606)] = 5289, + [SMALL_STATE(607)] = 5393, + [SMALL_STATE(608)] = 5499, + [SMALL_STATE(609)] = 5603, + [SMALL_STATE(610)] = 5709, + [SMALL_STATE(611)] = 5813, + [SMALL_STATE(612)] = 5917, + [SMALL_STATE(613)] = 6023, + [SMALL_STATE(614)] = 6124, + [SMALL_STATE(615)] = 6225, + [SMALL_STATE(616)] = 6326, + [SMALL_STATE(617)] = 6427, + [SMALL_STATE(618)] = 6528, + [SMALL_STATE(619)] = 6631, + [SMALL_STATE(620)] = 6734, + [SMALL_STATE(621)] = 6835, + [SMALL_STATE(622)] = 6936, + [SMALL_STATE(623)] = 7037, + [SMALL_STATE(624)] = 7138, + [SMALL_STATE(625)] = 7241, + [SMALL_STATE(626)] = 7342, + [SMALL_STATE(627)] = 7443, + [SMALL_STATE(628)] = 7546, + [SMALL_STATE(629)] = 7649, + [SMALL_STATE(630)] = 7752, + [SMALL_STATE(631)] = 7855, + [SMALL_STATE(632)] = 7958, + [SMALL_STATE(633)] = 8061, + [SMALL_STATE(634)] = 8164, + [SMALL_STATE(635)] = 8267, + [SMALL_STATE(636)] = 8370, + [SMALL_STATE(637)] = 8473, + [SMALL_STATE(638)] = 8576, + [SMALL_STATE(639)] = 8679, + [SMALL_STATE(640)] = 8780, + [SMALL_STATE(641)] = 8881, + [SMALL_STATE(642)] = 8982, + [SMALL_STATE(643)] = 9083, + [SMALL_STATE(644)] = 9184, + [SMALL_STATE(645)] = 9285, + [SMALL_STATE(646)] = 9386, + [SMALL_STATE(647)] = 9487, + [SMALL_STATE(648)] = 9588, + [SMALL_STATE(649)] = 9691, + [SMALL_STATE(650)] = 9794, + [SMALL_STATE(651)] = 9895, + [SMALL_STATE(652)] = 9998, + [SMALL_STATE(653)] = 10099, + [SMALL_STATE(654)] = 10202, + [SMALL_STATE(655)] = 10305, + [SMALL_STATE(656)] = 10406, + [SMALL_STATE(657)] = 10509, + [SMALL_STATE(658)] = 10612, + [SMALL_STATE(659)] = 10713, + [SMALL_STATE(660)] = 10814, + [SMALL_STATE(661)] = 10915, + [SMALL_STATE(662)] = 11018, + [SMALL_STATE(663)] = 11119, + [SMALL_STATE(664)] = 11222, + [SMALL_STATE(665)] = 11323, + [SMALL_STATE(666)] = 11424, + [SMALL_STATE(667)] = 11525, + [SMALL_STATE(668)] = 11626, + [SMALL_STATE(669)] = 11727, + [SMALL_STATE(670)] = 11828, + [SMALL_STATE(671)] = 11931, + [SMALL_STATE(672)] = 12032, + [SMALL_STATE(673)] = 12133, + [SMALL_STATE(674)] = 12234, + [SMALL_STATE(675)] = 12337, + [SMALL_STATE(676)] = 12440, + [SMALL_STATE(677)] = 12543, + [SMALL_STATE(678)] = 12644, + [SMALL_STATE(679)] = 12747, + [SMALL_STATE(680)] = 12848, + [SMALL_STATE(681)] = 12951, + [SMALL_STATE(682)] = 13052, + [SMALL_STATE(683)] = 13153, + [SMALL_STATE(684)] = 13256, + [SMALL_STATE(685)] = 13357, + [SMALL_STATE(686)] = 13460, + [SMALL_STATE(687)] = 13561, + [SMALL_STATE(688)] = 13662, + [SMALL_STATE(689)] = 13765, + [SMALL_STATE(690)] = 13868, + [SMALL_STATE(691)] = 13971, + [SMALL_STATE(692)] = 14074, + [SMALL_STATE(693)] = 14177, + [SMALL_STATE(694)] = 14280, + [SMALL_STATE(695)] = 14383, + [SMALL_STATE(696)] = 14486, + [SMALL_STATE(697)] = 14587, + [SMALL_STATE(698)] = 14690, + [SMALL_STATE(699)] = 14793, + [SMALL_STATE(700)] = 14896, + [SMALL_STATE(701)] = 14999, + [SMALL_STATE(702)] = 15102, + [SMALL_STATE(703)] = 15205, + [SMALL_STATE(704)] = 15308, + [SMALL_STATE(705)] = 15411, + [SMALL_STATE(706)] = 15514, + [SMALL_STATE(707)] = 15617, + [SMALL_STATE(708)] = 15718, + [SMALL_STATE(709)] = 15819, + [SMALL_STATE(710)] = 15922, + [SMALL_STATE(711)] = 16025, + [SMALL_STATE(712)] = 16128, + [SMALL_STATE(713)] = 16231, + [SMALL_STATE(714)] = 16344, + [SMALL_STATE(715)] = 16447, + [SMALL_STATE(716)] = 16548, + [SMALL_STATE(717)] = 16651, + [SMALL_STATE(718)] = 16754, + [SMALL_STATE(719)] = 16857, + [SMALL_STATE(720)] = 16958, + [SMALL_STATE(721)] = 17059, + [SMALL_STATE(722)] = 17160, + [SMALL_STATE(723)] = 17261, + [SMALL_STATE(724)] = 17362, + [SMALL_STATE(725)] = 17463, + [SMALL_STATE(726)] = 17566, + [SMALL_STATE(727)] = 17667, + [SMALL_STATE(728)] = 17770, + [SMALL_STATE(729)] = 17873, + [SMALL_STATE(730)] = 17976, + [SMALL_STATE(731)] = 18079, + [SMALL_STATE(732)] = 18182, + [SMALL_STATE(733)] = 18285, + [SMALL_STATE(734)] = 18388, + [SMALL_STATE(735)] = 18491, + [SMALL_STATE(736)] = 18594, + [SMALL_STATE(737)] = 18697, + [SMALL_STATE(738)] = 18800, + [SMALL_STATE(739)] = 18901, + [SMALL_STATE(740)] = 19004, + [SMALL_STATE(741)] = 19105, + [SMALL_STATE(742)] = 19206, + [SMALL_STATE(743)] = 19307, + [SMALL_STATE(744)] = 19408, + [SMALL_STATE(745)] = 19509, + [SMALL_STATE(746)] = 19610, + [SMALL_STATE(747)] = 19713, + [SMALL_STATE(748)] = 19816, + [SMALL_STATE(749)] = 19919, + [SMALL_STATE(750)] = 20020, + [SMALL_STATE(751)] = 20123, + [SMALL_STATE(752)] = 20226, + [SMALL_STATE(753)] = 20329, + [SMALL_STATE(754)] = 20432, + [SMALL_STATE(755)] = 20535, + [SMALL_STATE(756)] = 20638, + [SMALL_STATE(757)] = 20741, + [SMALL_STATE(758)] = 20842, + [SMALL_STATE(759)] = 20945, + [SMALL_STATE(760)] = 21046, + [SMALL_STATE(761)] = 21149, + [SMALL_STATE(762)] = 21252, + [SMALL_STATE(763)] = 21355, + [SMALL_STATE(764)] = 21458, + [SMALL_STATE(765)] = 21561, + [SMALL_STATE(766)] = 21664, + [SMALL_STATE(767)] = 21752, + [SMALL_STATE(768)] = 21853, + [SMALL_STATE(769)] = 21924, + [SMALL_STATE(770)] = 22025, + [SMALL_STATE(771)] = 22096, + [SMALL_STATE(772)] = 22197, + [SMALL_STATE(773)] = 22298, + [SMALL_STATE(774)] = 22369, + [SMALL_STATE(775)] = 22470, + [SMALL_STATE(776)] = 22538, + [SMALL_STATE(777)] = 22601, + [SMALL_STATE(778)] = 22664, + [SMALL_STATE(779)] = 22726, + [SMALL_STATE(780)] = 22788, + [SMALL_STATE(781)] = 22850, + [SMALL_STATE(782)] = 22912, + [SMALL_STATE(783)] = 22974, + [SMALL_STATE(784)] = 23036, + [SMALL_STATE(785)] = 23098, + [SMALL_STATE(786)] = 23160, + [SMALL_STATE(787)] = 23222, + [SMALL_STATE(788)] = 23284, + [SMALL_STATE(789)] = 23343, + [SMALL_STATE(790)] = 23402, + [SMALL_STATE(791)] = 23461, + [SMALL_STATE(792)] = 23520, + [SMALL_STATE(793)] = 23585, + [SMALL_STATE(794)] = 23677, + [SMALL_STATE(795)] = 23769, + [SMALL_STATE(796)] = 23863, + [SMALL_STATE(797)] = 23955, + [SMALL_STATE(798)] = 24047, + [SMALL_STATE(799)] = 24105, + [SMALL_STATE(800)] = 24197, + [SMALL_STATE(801)] = 24289, + [SMALL_STATE(802)] = 24381, + [SMALL_STATE(803)] = 24473, + [SMALL_STATE(804)] = 24565, + [SMALL_STATE(805)] = 24657, + [SMALL_STATE(806)] = 24715, + [SMALL_STATE(807)] = 24807, + [SMALL_STATE(808)] = 24865, + [SMALL_STATE(809)] = 24957, + [SMALL_STATE(810)] = 25015, + [SMALL_STATE(811)] = 25107, + [SMALL_STATE(812)] = 25165, + [SMALL_STATE(813)] = 25223, + [SMALL_STATE(814)] = 25281, + [SMALL_STATE(815)] = 25339, + [SMALL_STATE(816)] = 25431, + [SMALL_STATE(817)] = 25523, + [SMALL_STATE(818)] = 25615, + [SMALL_STATE(819)] = 25673, + [SMALL_STATE(820)] = 25731, + [SMALL_STATE(821)] = 25789, + [SMALL_STATE(822)] = 25847, + [SMALL_STATE(823)] = 25939, + [SMALL_STATE(824)] = 25997, + [SMALL_STATE(825)] = 26055, + [SMALL_STATE(826)] = 26147, + [SMALL_STATE(827)] = 26205, + [SMALL_STATE(828)] = 26297, + [SMALL_STATE(829)] = 26389, + [SMALL_STATE(830)] = 26481, + [SMALL_STATE(831)] = 26539, + [SMALL_STATE(832)] = 26604, + [SMALL_STATE(833)] = 26669, + [SMALL_STATE(834)] = 26758, + [SMALL_STATE(835)] = 26825, + [SMALL_STATE(836)] = 26882, + [SMALL_STATE(837)] = 26939, + [SMALL_STATE(838)] = 27006, + [SMALL_STATE(839)] = 27063, + [SMALL_STATE(840)] = 27120, + [SMALL_STATE(841)] = 27181, + [SMALL_STATE(842)] = 27270, + [SMALL_STATE(843)] = 27337, + [SMALL_STATE(844)] = 27428, + [SMALL_STATE(845)] = 27495, + [SMALL_STATE(846)] = 27562, + [SMALL_STATE(847)] = 27624, + [SMALL_STATE(848)] = 27686, + [SMALL_STATE(849)] = 27750, + [SMALL_STATE(850)] = 27812, + [SMALL_STATE(851)] = 27871, + [SMALL_STATE(852)] = 27930, + [SMALL_STATE(853)] = 27989, + [SMALL_STATE(854)] = 28052, + [SMALL_STATE(855)] = 28134, + [SMALL_STATE(856)] = 28216, + [SMALL_STATE(857)] = 28298, + [SMALL_STATE(858)] = 28380, + [SMALL_STATE(859)] = 28434, + [SMALL_STATE(860)] = 28516, + [SMALL_STATE(861)] = 28570, + [SMALL_STATE(862)] = 28652, + [SMALL_STATE(863)] = 28734, + [SMALL_STATE(864)] = 28816, + [SMALL_STATE(865)] = 28898, + [SMALL_STATE(866)] = 28980, + [SMALL_STATE(867)] = 29043, + [SMALL_STATE(868)] = 29106, + [SMALL_STATE(869)] = 29171, + [SMALL_STATE(870)] = 29250, + [SMALL_STATE(871)] = 29313, + [SMALL_STATE(872)] = 29376, + [SMALL_STATE(873)] = 29429, + [SMALL_STATE(874)] = 29492, + [SMALL_STATE(875)] = 29555, + [SMALL_STATE(876)] = 29618, + [SMALL_STATE(877)] = 29690, + [SMALL_STATE(878)] = 29766, + [SMALL_STATE(879)] = 29834, + [SMALL_STATE(880)] = 29894, + [SMALL_STATE(881)] = 29974, + [SMALL_STATE(882)] = 30038, + [SMALL_STATE(883)] = 30124, + [SMALL_STATE(884)] = 30202, + [SMALL_STATE(885)] = 30288, + [SMALL_STATE(886)] = 30374, + [SMALL_STATE(887)] = 30440, + [SMALL_STATE(888)] = 30522, + [SMALL_STATE(889)] = 30596, + [SMALL_STATE(890)] = 30681, + [SMALL_STATE(891)] = 30748, + [SMALL_STATE(892)] = 30833, + [SMALL_STATE(893)] = 30914, + [SMALL_STATE(894)] = 30965, + [SMALL_STATE(895)] = 31020, + [SMALL_STATE(896)] = 31071, + [SMALL_STATE(897)] = 31122, + [SMALL_STATE(898)] = 31173, + [SMALL_STATE(899)] = 31238, + [SMALL_STATE(900)] = 31301, + [SMALL_STATE(901)] = 31352, + [SMALL_STATE(902)] = 31431, + [SMALL_STATE(903)] = 31508, + [SMALL_STATE(904)] = 31583, + [SMALL_STATE(905)] = 31656, + [SMALL_STATE(906)] = 31727, + [SMALL_STATE(907)] = 31812, + [SMALL_STATE(908)] = 31866, + [SMALL_STATE(909)] = 31950, + [SMALL_STATE(910)] = 32024, + [SMALL_STATE(911)] = 32084, + [SMALL_STATE(912)] = 32144, + [SMALL_STATE(913)] = 32204, + [SMALL_STATE(914)] = 32264, + [SMALL_STATE(915)] = 32348, + [SMALL_STATE(916)] = 32408, + [SMALL_STATE(917)] = 32492, + [SMALL_STATE(918)] = 32562, + [SMALL_STATE(919)] = 32628, + [SMALL_STATE(920)] = 32692, + [SMALL_STATE(921)] = 32754, + [SMALL_STATE(922)] = 32834, + [SMALL_STATE(923)] = 32912, + [SMALL_STATE(924)] = 32984, + [SMALL_STATE(925)] = 33042, + [SMALL_STATE(926)] = 33118, + [SMALL_STATE(927)] = 33167, + [SMALL_STATE(928)] = 33216, + [SMALL_STATE(929)] = 33265, + [SMALL_STATE(930)] = 33314, + [SMALL_STATE(931)] = 33363, + [SMALL_STATE(932)] = 33412, + [SMALL_STATE(933)] = 33461, + [SMALL_STATE(934)] = 33510, + [SMALL_STATE(935)] = 33559, + [SMALL_STATE(936)] = 33608, + [SMALL_STATE(937)] = 33657, + [SMALL_STATE(938)] = 33706, + [SMALL_STATE(939)] = 33755, + [SMALL_STATE(940)] = 33804, + [SMALL_STATE(941)] = 33857, + [SMALL_STATE(942)] = 33906, + [SMALL_STATE(943)] = 33955, + [SMALL_STATE(944)] = 34004, + [SMALL_STATE(945)] = 34053, + [SMALL_STATE(946)] = 34102, + [SMALL_STATE(947)] = 34151, + [SMALL_STATE(948)] = 34200, + [SMALL_STATE(949)] = 34249, + [SMALL_STATE(950)] = 34298, + [SMALL_STATE(951)] = 34347, + [SMALL_STATE(952)] = 34396, + [SMALL_STATE(953)] = 34445, + [SMALL_STATE(954)] = 34494, + [SMALL_STATE(955)] = 34543, + [SMALL_STATE(956)] = 34592, + [SMALL_STATE(957)] = 34641, + [SMALL_STATE(958)] = 34690, + [SMALL_STATE(959)] = 34739, + [SMALL_STATE(960)] = 34788, + [SMALL_STATE(961)] = 34837, + [SMALL_STATE(962)] = 34886, + [SMALL_STATE(963)] = 34935, + [SMALL_STATE(964)] = 34984, + [SMALL_STATE(965)] = 35033, + [SMALL_STATE(966)] = 35082, + [SMALL_STATE(967)] = 35131, + [SMALL_STATE(968)] = 35180, + [SMALL_STATE(969)] = 35229, + [SMALL_STATE(970)] = 35278, + [SMALL_STATE(971)] = 35327, + [SMALL_STATE(972)] = 35376, + [SMALL_STATE(973)] = 35431, + [SMALL_STATE(974)] = 35478, + [SMALL_STATE(975)] = 35525, + [SMALL_STATE(976)] = 35572, + [SMALL_STATE(977)] = 35619, + [SMALL_STATE(978)] = 35666, + [SMALL_STATE(979)] = 35713, + [SMALL_STATE(980)] = 35796, + [SMALL_STATE(981)] = 35855, + [SMALL_STATE(982)] = 35914, + [SMALL_STATE(983)] = 35967, + [SMALL_STATE(984)] = 36022, + [SMALL_STATE(985)] = 36081, + [SMALL_STATE(986)] = 36138, + [SMALL_STATE(987)] = 36197, + [SMALL_STATE(988)] = 36276, + [SMALL_STATE(989)] = 36331, + [SMALL_STATE(990)] = 36378, + [SMALL_STATE(991)] = 36433, + [SMALL_STATE(992)] = 36492, + [SMALL_STATE(993)] = 36545, + [SMALL_STATE(994)] = 36592, + [SMALL_STATE(995)] = 36639, + [SMALL_STATE(996)] = 36686, + [SMALL_STATE(997)] = 36733, + [SMALL_STATE(998)] = 36816, + [SMALL_STATE(999)] = 36899, + [SMALL_STATE(1000)] = 36946, + [SMALL_STATE(1001)] = 36993, + [SMALL_STATE(1002)] = 37040, + [SMALL_STATE(1003)] = 37087, + [SMALL_STATE(1004)] = 37134, + [SMALL_STATE(1005)] = 37189, + [SMALL_STATE(1006)] = 37236, + [SMALL_STATE(1007)] = 37283, + [SMALL_STATE(1008)] = 37330, + [SMALL_STATE(1009)] = 37377, + [SMALL_STATE(1010)] = 37440, + [SMALL_STATE(1011)] = 37505, + [SMALL_STATE(1012)] = 37574, + [SMALL_STATE(1013)] = 37645, + [SMALL_STATE(1014)] = 37718, + [SMALL_STATE(1015)] = 37793, + [SMALL_STATE(1016)] = 37870, + [SMALL_STATE(1017)] = 37949, + [SMALL_STATE(1018)] = 38010, + [SMALL_STATE(1019)] = 38056, + [SMALL_STATE(1020)] = 38102, + [SMALL_STATE(1021)] = 38148, + [SMALL_STATE(1022)] = 38198, + [SMALL_STATE(1023)] = 38244, + [SMALL_STATE(1024)] = 38290, + [SMALL_STATE(1025)] = 38339, + [SMALL_STATE(1026)] = 38384, + [SMALL_STATE(1027)] = 38429, + [SMALL_STATE(1028)] = 38474, + [SMALL_STATE(1029)] = 38519, + [SMALL_STATE(1030)] = 38568, + [SMALL_STATE(1031)] = 38613, + [SMALL_STATE(1032)] = 38658, + [SMALL_STATE(1033)] = 38703, + [SMALL_STATE(1034)] = 38748, + [SMALL_STATE(1035)] = 38793, + [SMALL_STATE(1036)] = 38842, + [SMALL_STATE(1037)] = 38887, + [SMALL_STATE(1038)] = 38932, + [SMALL_STATE(1039)] = 38977, + [SMALL_STATE(1040)] = 39022, + [SMALL_STATE(1041)] = 39067, + [SMALL_STATE(1042)] = 39116, + [SMALL_STATE(1043)] = 39161, + [SMALL_STATE(1044)] = 39210, + [SMALL_STATE(1045)] = 39255, + [SMALL_STATE(1046)] = 39300, + [SMALL_STATE(1047)] = 39345, + [SMALL_STATE(1048)] = 39390, + [SMALL_STATE(1049)] = 39439, + [SMALL_STATE(1050)] = 39488, + [SMALL_STATE(1051)] = 39533, + [SMALL_STATE(1052)] = 39578, + [SMALL_STATE(1053)] = 39623, + [SMALL_STATE(1054)] = 39680, + [SMALL_STATE(1055)] = 39737, + [SMALL_STATE(1056)] = 39786, + [SMALL_STATE(1057)] = 39843, + [SMALL_STATE(1058)] = 39888, + [SMALL_STATE(1059)] = 39933, + [SMALL_STATE(1060)] = 39978, + [SMALL_STATE(1061)] = 40023, + [SMALL_STATE(1062)] = 40068, + [SMALL_STATE(1063)] = 40113, + [SMALL_STATE(1064)] = 40162, + [SMALL_STATE(1065)] = 40207, + [SMALL_STATE(1066)] = 40252, + [SMALL_STATE(1067)] = 40301, + [SMALL_STATE(1068)] = 40350, + [SMALL_STATE(1069)] = 40399, + [SMALL_STATE(1070)] = 40444, + [SMALL_STATE(1071)] = 40489, + [SMALL_STATE(1072)] = 40534, + [SMALL_STATE(1073)] = 40591, + [SMALL_STATE(1074)] = 40636, + [SMALL_STATE(1075)] = 40681, + [SMALL_STATE(1076)] = 40730, + [SMALL_STATE(1077)] = 40779, + [SMALL_STATE(1078)] = 40828, + [SMALL_STATE(1079)] = 40873, + [SMALL_STATE(1080)] = 40922, + [SMALL_STATE(1081)] = 40966, + [SMALL_STATE(1082)] = 41010, + [SMALL_STATE(1083)] = 41058, + [SMALL_STATE(1084)] = 41102, + [SMALL_STATE(1085)] = 41146, + [SMALL_STATE(1086)] = 41190, + [SMALL_STATE(1087)] = 41242, + [SMALL_STATE(1088)] = 41290, + [SMALL_STATE(1089)] = 41334, + [SMALL_STATE(1090)] = 41378, + [SMALL_STATE(1091)] = 41426, + [SMALL_STATE(1092)] = 41474, + [SMALL_STATE(1093)] = 41518, + [SMALL_STATE(1094)] = 41562, + [SMALL_STATE(1095)] = 41606, + [SMALL_STATE(1096)] = 41650, + [SMALL_STATE(1097)] = 41694, + [SMALL_STATE(1098)] = 41738, + [SMALL_STATE(1099)] = 41782, + [SMALL_STATE(1100)] = 41826, + [SMALL_STATE(1101)] = 41870, + [SMALL_STATE(1102)] = 41914, + [SMALL_STATE(1103)] = 41958, + [SMALL_STATE(1104)] = 42008, + [SMALL_STATE(1105)] = 42056, + [SMALL_STATE(1106)] = 42100, + [SMALL_STATE(1107)] = 42144, + [SMALL_STATE(1108)] = 42188, + [SMALL_STATE(1109)] = 42236, + [SMALL_STATE(1110)] = 42284, + [SMALL_STATE(1111)] = 42334, + [SMALL_STATE(1112)] = 42378, + [SMALL_STATE(1113)] = 42422, + [SMALL_STATE(1114)] = 42466, + [SMALL_STATE(1115)] = 42510, + [SMALL_STATE(1116)] = 42554, + [SMALL_STATE(1117)] = 42598, + [SMALL_STATE(1118)] = 42642, + [SMALL_STATE(1119)] = 42697, + [SMALL_STATE(1120)] = 42766, + [SMALL_STATE(1121)] = 42835, + [SMALL_STATE(1122)] = 42904, + [SMALL_STATE(1123)] = 42973, + [SMALL_STATE(1124)] = 43029, + [SMALL_STATE(1125)] = 43085, + [SMALL_STATE(1126)] = 43135, + [SMALL_STATE(1127)] = 43191, + [SMALL_STATE(1128)] = 43243, + [SMALL_STATE(1129)] = 43295, + [SMALL_STATE(1130)] = 43351, + [SMALL_STATE(1131)] = 43407, + [SMALL_STATE(1132)] = 43484, + [SMALL_STATE(1133)] = 43557, + [SMALL_STATE(1134)] = 43614, + [SMALL_STATE(1135)] = 43691, + [SMALL_STATE(1136)] = 43768, + [SMALL_STATE(1137)] = 43827, + [SMALL_STATE(1138)] = 43904, + [SMALL_STATE(1139)] = 43953, + [SMALL_STATE(1140)] = 44008, + [SMALL_STATE(1141)] = 44077, + [SMALL_STATE(1142)] = 44144, + [SMALL_STATE(1143)] = 44209, + [SMALL_STATE(1144)] = 44272, + [SMALL_STATE(1145)] = 44343, + [SMALL_STATE(1146)] = 44407, + [SMALL_STATE(1147)] = 44481, + [SMALL_STATE(1148)] = 44549, + [SMALL_STATE(1149)] = 44623, + [SMALL_STATE(1150)] = 44665, + [SMALL_STATE(1151)] = 44727, + [SMALL_STATE(1152)] = 44767, + [SMALL_STATE(1153)] = 44821, + [SMALL_STATE(1154)] = 44895, + [SMALL_STATE(1155)] = 44937, + [SMALL_STATE(1156)] = 45005, + [SMALL_STATE(1157)] = 45047, + [SMALL_STATE(1158)] = 45105, + [SMALL_STATE(1159)] = 45147, + [SMALL_STATE(1160)] = 45213, + [SMALL_STATE(1161)] = 45253, + [SMALL_STATE(1162)] = 45323, + [SMALL_STATE(1163)] = 45363, + [SMALL_STATE(1164)] = 45403, + [SMALL_STATE(1165)] = 45445, + [SMALL_STATE(1166)] = 45501, + [SMALL_STATE(1167)] = 45544, + [SMALL_STATE(1168)] = 45597, + [SMALL_STATE(1169)] = 45652, + [SMALL_STATE(1170)] = 45695, + [SMALL_STATE(1171)] = 45768, + [SMALL_STATE(1172)] = 45835, + [SMALL_STATE(1173)] = 45892, + [SMALL_STATE(1174)] = 45931, + [SMALL_STATE(1175)] = 46000, + [SMALL_STATE(1176)] = 46073, + [SMALL_STATE(1177)] = 46146, + [SMALL_STATE(1178)] = 46219, + [SMALL_STATE(1179)] = 46286, + [SMALL_STATE(1180)] = 46329, + [SMALL_STATE(1181)] = 46392, + [SMALL_STATE(1182)] = 46457, + [SMALL_STATE(1183)] = 46520, + [SMALL_STATE(1184)] = 46581, + [SMALL_STATE(1185)] = 46641, + [SMALL_STATE(1186)] = 46701, + [SMALL_STATE(1187)] = 46761, + [SMALL_STATE(1188)] = 46821, + [SMALL_STATE(1189)] = 46881, + [SMALL_STATE(1190)] = 46941, + [SMALL_STATE(1191)] = 47001, + [SMALL_STATE(1192)] = 47061, + [SMALL_STATE(1193)] = 47136, + [SMALL_STATE(1194)] = 47211, + [SMALL_STATE(1195)] = 47286, + [SMALL_STATE(1196)] = 47357, + [SMALL_STATE(1197)] = 47432, + [SMALL_STATE(1198)] = 47507, + [SMALL_STATE(1199)] = 47582, + [SMALL_STATE(1200)] = 47657, + [SMALL_STATE(1201)] = 47732, + [SMALL_STATE(1202)] = 47805, + [SMALL_STATE(1203)] = 47877, + [SMALL_STATE(1204)] = 47933, + [SMALL_STATE(1205)] = 48005, + [SMALL_STATE(1206)] = 48077, + [SMALL_STATE(1207)] = 48149, + [SMALL_STATE(1208)] = 48205, + [SMALL_STATE(1209)] = 48277, + [SMALL_STATE(1210)] = 48349, + [SMALL_STATE(1211)] = 48403, + [SMALL_STATE(1212)] = 48477, + [SMALL_STATE(1213)] = 48533, + [SMALL_STATE(1214)] = 48605, + [SMALL_STATE(1215)] = 48675, + [SMALL_STATE(1216)] = 48731, + [SMALL_STATE(1217)] = 48783, + [SMALL_STATE(1218)] = 48855, + [SMALL_STATE(1219)] = 48927, + [SMALL_STATE(1220)] = 48983, + [SMALL_STATE(1221)] = 49055, + [SMALL_STATE(1222)] = 49127, + [SMALL_STATE(1223)] = 49199, + [SMALL_STATE(1224)] = 49255, + [SMALL_STATE(1225)] = 49323, + [SMALL_STATE(1226)] = 49395, + [SMALL_STATE(1227)] = 49467, + [SMALL_STATE(1228)] = 49523, + [SMALL_STATE(1229)] = 49579, + [SMALL_STATE(1230)] = 49651, + [SMALL_STATE(1231)] = 49723, + [SMALL_STATE(1232)] = 49793, + [SMALL_STATE(1233)] = 49849, + [SMALL_STATE(1234)] = 49905, + [SMALL_STATE(1235)] = 49961, + [SMALL_STATE(1236)] = 50021, + [SMALL_STATE(1237)] = 50083, + [SMALL_STATE(1238)] = 50139, + [SMALL_STATE(1239)] = 50203, + [SMALL_STATE(1240)] = 50259, + [SMALL_STATE(1241)] = 50325, + [SMALL_STATE(1242)] = 50397, + [SMALL_STATE(1243)] = 50469, + [SMALL_STATE(1244)] = 50525, + [SMALL_STATE(1245)] = 50581, + [SMALL_STATE(1246)] = 50637, + [SMALL_STATE(1247)] = 50707, + [SMALL_STATE(1248)] = 50779, + [SMALL_STATE(1249)] = 50845, + [SMALL_STATE(1250)] = 50917, + [SMALL_STATE(1251)] = 50987, + [SMALL_STATE(1252)] = 51057, + [SMALL_STATE(1253)] = 51129, + [SMALL_STATE(1254)] = 51185, + [SMALL_STATE(1255)] = 51241, + [SMALL_STATE(1256)] = 51313, + [SMALL_STATE(1257)] = 51383, + [SMALL_STATE(1258)] = 51455, + [SMALL_STATE(1259)] = 51527, + [SMALL_STATE(1260)] = 51599, + [SMALL_STATE(1261)] = 51669, + [SMALL_STATE(1262)] = 51725, + [SMALL_STATE(1263)] = 51795, + [SMALL_STATE(1264)] = 51867, + [SMALL_STATE(1265)] = 51936, + [SMALL_STATE(1266)] = 52005, + [SMALL_STATE(1267)] = 52074, + [SMALL_STATE(1268)] = 52143, + [SMALL_STATE(1269)] = 52212, + [SMALL_STATE(1270)] = 52281, + [SMALL_STATE(1271)] = 52350, + [SMALL_STATE(1272)] = 52419, + [SMALL_STATE(1273)] = 52488, + [SMALL_STATE(1274)] = 52541, + [SMALL_STATE(1275)] = 52610, + [SMALL_STATE(1276)] = 52649, + [SMALL_STATE(1277)] = 52702, + [SMALL_STATE(1278)] = 52755, + [SMALL_STATE(1279)] = 52824, + [SMALL_STATE(1280)] = 52893, + [SMALL_STATE(1281)] = 52946, + [SMALL_STATE(1282)] = 53015, + [SMALL_STATE(1283)] = 53084, + [SMALL_STATE(1284)] = 53153, + [SMALL_STATE(1285)] = 53222, + [SMALL_STATE(1286)] = 53291, + [SMALL_STATE(1287)] = 53360, + [SMALL_STATE(1288)] = 53413, + [SMALL_STATE(1289)] = 53482, + [SMALL_STATE(1290)] = 53551, + [SMALL_STATE(1291)] = 53620, + [SMALL_STATE(1292)] = 53689, + [SMALL_STATE(1293)] = 53758, + [SMALL_STATE(1294)] = 53811, + [SMALL_STATE(1295)] = 53880, + [SMALL_STATE(1296)] = 53949, + [SMALL_STATE(1297)] = 54018, + [SMALL_STATE(1298)] = 54087, + [SMALL_STATE(1299)] = 54156, + [SMALL_STATE(1300)] = 54225, + [SMALL_STATE(1301)] = 54294, + [SMALL_STATE(1302)] = 54363, + [SMALL_STATE(1303)] = 54405, + [SMALL_STATE(1304)] = 54441, + [SMALL_STATE(1305)] = 54485, + [SMALL_STATE(1306)] = 54527, + [SMALL_STATE(1307)] = 54593, + [SMALL_STATE(1308)] = 54629, + [SMALL_STATE(1309)] = 54665, + [SMALL_STATE(1310)] = 54701, + [SMALL_STATE(1311)] = 54748, + [SMALL_STATE(1312)] = 54795, + [SMALL_STATE(1313)] = 54842, + [SMALL_STATE(1314)] = 54873, + [SMALL_STATE(1315)] = 54920, + [SMALL_STATE(1316)] = 54967, + [SMALL_STATE(1317)] = 54998, + [SMALL_STATE(1318)] = 55045, + [SMALL_STATE(1319)] = 55089, + [SMALL_STATE(1320)] = 55133, + [SMALL_STATE(1321)] = 55167, + [SMALL_STATE(1322)] = 55203, + [SMALL_STATE(1323)] = 55247, + [SMALL_STATE(1324)] = 55285, + [SMALL_STATE(1325)] = 55329, + [SMALL_STATE(1326)] = 55373, + [SMALL_STATE(1327)] = 55417, + [SMALL_STATE(1328)] = 55472, + [SMALL_STATE(1329)] = 55515, + [SMALL_STATE(1330)] = 55570, + [SMALL_STATE(1331)] = 55613, + [SMALL_STATE(1332)] = 55656, + [SMALL_STATE(1333)] = 55689, + [SMALL_STATE(1334)] = 55744, + [SMALL_STATE(1335)] = 55784, + [SMALL_STATE(1336)] = 55824, + [SMALL_STATE(1337)] = 55852, + [SMALL_STATE(1338)] = 55892, + [SMALL_STATE(1339)] = 55940, + [SMALL_STATE(1340)] = 55980, + [SMALL_STATE(1341)] = 56020, + [SMALL_STATE(1342)] = 56060, + [SMALL_STATE(1343)] = 56100, + [SMALL_STATE(1344)] = 56140, + [SMALL_STATE(1345)] = 56180, + [SMALL_STATE(1346)] = 56208, + [SMALL_STATE(1347)] = 56248, + [SMALL_STATE(1348)] = 56298, + [SMALL_STATE(1349)] = 56338, + [SMALL_STATE(1350)] = 56378, + [SMALL_STATE(1351)] = 56410, + [SMALL_STATE(1352)] = 56438, + [SMALL_STATE(1353)] = 56466, + [SMALL_STATE(1354)] = 56506, + [SMALL_STATE(1355)] = 56546, + [SMALL_STATE(1356)] = 56586, + [SMALL_STATE(1357)] = 56626, + [SMALL_STATE(1358)] = 56658, + [SMALL_STATE(1359)] = 56686, + [SMALL_STATE(1360)] = 56726, + [SMALL_STATE(1361)] = 56766, + [SMALL_STATE(1362)] = 56806, + [SMALL_STATE(1363)] = 56834, + [SMALL_STATE(1364)] = 56874, + [SMALL_STATE(1365)] = 56914, + [SMALL_STATE(1366)] = 56954, + [SMALL_STATE(1367)] = 56994, + [SMALL_STATE(1368)] = 57034, + [SMALL_STATE(1369)] = 57074, + [SMALL_STATE(1370)] = 57114, + [SMALL_STATE(1371)] = 57154, + [SMALL_STATE(1372)] = 57194, + [SMALL_STATE(1373)] = 57234, + [SMALL_STATE(1374)] = 57274, + [SMALL_STATE(1375)] = 57302, + [SMALL_STATE(1376)] = 57330, + [SMALL_STATE(1377)] = 57370, + [SMALL_STATE(1378)] = 57410, + [SMALL_STATE(1379)] = 57438, + [SMALL_STATE(1380)] = 57470, + [SMALL_STATE(1381)] = 57510, + [SMALL_STATE(1382)] = 57538, + [SMALL_STATE(1383)] = 57578, + [SMALL_STATE(1384)] = 57626, + [SMALL_STATE(1385)] = 57666, + [SMALL_STATE(1386)] = 57712, + [SMALL_STATE(1387)] = 57758, + [SMALL_STATE(1388)] = 57802, + [SMALL_STATE(1389)] = 57844, + [SMALL_STATE(1390)] = 57884, + [SMALL_STATE(1391)] = 57924, + [SMALL_STATE(1392)] = 57960, + [SMALL_STATE(1393)] = 57994, + [SMALL_STATE(1394)] = 58034, + [SMALL_STATE(1395)] = 58074, + [SMALL_STATE(1396)] = 58114, + [SMALL_STATE(1397)] = 58146, + [SMALL_STATE(1398)] = 58178, + [SMALL_STATE(1399)] = 58218, + [SMALL_STATE(1400)] = 58258, + [SMALL_STATE(1401)] = 58307, + [SMALL_STATE(1402)] = 58352, + [SMALL_STATE(1403)] = 58389, + [SMALL_STATE(1404)] = 58424, + [SMALL_STATE(1405)] = 58457, + [SMALL_STATE(1406)] = 58502, + [SMALL_STATE(1407)] = 58533, + [SMALL_STATE(1408)] = 58578, + [SMALL_STATE(1409)] = 58605, + [SMALL_STATE(1410)] = 58648, + [SMALL_STATE(1411)] = 58693, + [SMALL_STATE(1412)] = 58720, + [SMALL_STATE(1413)] = 58765, + [SMALL_STATE(1414)] = 58810, + [SMALL_STATE(1415)] = 58855, + [SMALL_STATE(1416)] = 58890, + [SMALL_STATE(1417)] = 58917, + [SMALL_STATE(1418)] = 58962, + [SMALL_STATE(1419)] = 59011, + [SMALL_STATE(1420)] = 59052, + [SMALL_STATE(1421)] = 59097, + [SMALL_STATE(1422)] = 59142, + [SMALL_STATE(1423)] = 59169, + [SMALL_STATE(1424)] = 59214, + [SMALL_STATE(1425)] = 59243, + [SMALL_STATE(1426)] = 59270, + [SMALL_STATE(1427)] = 59315, + [SMALL_STATE(1428)] = 59346, + [SMALL_STATE(1429)] = 59385, + [SMALL_STATE(1430)] = 59418, + [SMALL_STATE(1431)] = 59445, + [SMALL_STATE(1432)] = 59472, + [SMALL_STATE(1433)] = 59517, + [SMALL_STATE(1434)] = 59562, + [SMALL_STATE(1435)] = 59589, + [SMALL_STATE(1436)] = 59620, + [SMALL_STATE(1437)] = 59647, + [SMALL_STATE(1438)] = 59692, + [SMALL_STATE(1439)] = 59723, + [SMALL_STATE(1440)] = 59754, + [SMALL_STATE(1441)] = 59799, + [SMALL_STATE(1442)] = 59830, + [SMALL_STATE(1443)] = 59857, + [SMALL_STATE(1444)] = 59888, + [SMALL_STATE(1445)] = 59919, + [SMALL_STATE(1446)] = 59950, + [SMALL_STATE(1447)] = 59995, + [SMALL_STATE(1448)] = 60036, + [SMALL_STATE(1449)] = 60077, + [SMALL_STATE(1450)] = 60118, + [SMALL_STATE(1451)] = 60159, + [SMALL_STATE(1452)] = 60200, + [SMALL_STATE(1453)] = 60235, + [SMALL_STATE(1454)] = 60276, + [SMALL_STATE(1455)] = 60317, + [SMALL_STATE(1456)] = 60358, + [SMALL_STATE(1457)] = 60399, + [SMALL_STATE(1458)] = 60440, + [SMALL_STATE(1459)] = 60488, + [SMALL_STATE(1460)] = 60536, + [SMALL_STATE(1461)] = 60574, + [SMALL_STATE(1462)] = 60622, + [SMALL_STATE(1463)] = 60670, + [SMALL_STATE(1464)] = 60718, + [SMALL_STATE(1465)] = 60756, + [SMALL_STATE(1466)] = 60797, + [SMALL_STATE(1467)] = 60842, + [SMALL_STATE(1468)] = 60887, + [SMALL_STATE(1469)] = 60928, + [SMALL_STATE(1470)] = 60967, + [SMALL_STATE(1471)] = 61012, + [SMALL_STATE(1472)] = 61053, + [SMALL_STATE(1473)] = 61098, + [SMALL_STATE(1474)] = 61143, + [SMALL_STATE(1475)] = 61184, + [SMALL_STATE(1476)] = 61222, + [SMALL_STATE(1477)] = 61260, + [SMALL_STATE(1478)] = 61298, + [SMALL_STATE(1479)] = 61324, + [SMALL_STATE(1480)] = 61362, + [SMALL_STATE(1481)] = 61392, + [SMALL_STATE(1482)] = 61430, + [SMALL_STATE(1483)] = 61455, + [SMALL_STATE(1484)] = 61484, + [SMALL_STATE(1485)] = 61513, + [SMALL_STATE(1486)] = 61542, + [SMALL_STATE(1487)] = 61577, + [SMALL_STATE(1488)] = 61616, + [SMALL_STATE(1489)] = 61651, + [SMALL_STATE(1490)] = 61676, + [SMALL_STATE(1491)] = 61711, + [SMALL_STATE(1492)] = 61746, + [SMALL_STATE(1493)] = 61781, + [SMALL_STATE(1494)] = 61816, + [SMALL_STATE(1495)] = 61851, + [SMALL_STATE(1496)] = 61886, + [SMALL_STATE(1497)] = 61911, + [SMALL_STATE(1498)] = 61944, + [SMALL_STATE(1499)] = 61979, + [SMALL_STATE(1500)] = 62014, + [SMALL_STATE(1501)] = 62049, + [SMALL_STATE(1502)] = 62074, + [SMALL_STATE(1503)] = 62103, + [SMALL_STATE(1504)] = 62138, + [SMALL_STATE(1505)] = 62171, + [SMALL_STATE(1506)] = 62203, + [SMALL_STATE(1507)] = 62235, + [SMALL_STATE(1508)] = 62259, + [SMALL_STATE(1509)] = 62291, + [SMALL_STATE(1510)] = 62323, + [SMALL_STATE(1511)] = 62343, + [SMALL_STATE(1512)] = 62379, + [SMALL_STATE(1513)] = 62411, + [SMALL_STATE(1514)] = 62445, + [SMALL_STATE(1515)] = 62477, + [SMALL_STATE(1516)] = 62497, + [SMALL_STATE(1517)] = 62517, + [SMALL_STATE(1518)] = 62548, + [SMALL_STATE(1519)] = 62577, + [SMALL_STATE(1520)] = 62606, + [SMALL_STATE(1521)] = 62637, + [SMALL_STATE(1522)] = 62666, + [SMALL_STATE(1523)] = 62693, + [SMALL_STATE(1524)] = 62722, + [SMALL_STATE(1525)] = 62751, + [SMALL_STATE(1526)] = 62780, + [SMALL_STATE(1527)] = 62811, + [SMALL_STATE(1528)] = 62838, + [SMALL_STATE(1529)] = 62867, + [SMALL_STATE(1530)] = 62900, + [SMALL_STATE(1531)] = 62933, + [SMALL_STATE(1532)] = 62962, + [SMALL_STATE(1533)] = 62989, + [SMALL_STATE(1534)] = 63018, + [SMALL_STATE(1535)] = 63045, + [SMALL_STATE(1536)] = 63078, + [SMALL_STATE(1537)] = 63107, + [SMALL_STATE(1538)] = 63131, + [SMALL_STATE(1539)] = 63157, + [SMALL_STATE(1540)] = 63175, + [SMALL_STATE(1541)] = 63201, + [SMALL_STATE(1542)] = 63219, + [SMALL_STATE(1543)] = 63245, + [SMALL_STATE(1544)] = 63263, + [SMALL_STATE(1545)] = 63281, + [SMALL_STATE(1546)] = 63299, + [SMALL_STATE(1547)] = 63317, + [SMALL_STATE(1548)] = 63341, + [SMALL_STATE(1549)] = 63367, + [SMALL_STATE(1550)] = 63397, + [SMALL_STATE(1551)] = 63419, + [SMALL_STATE(1552)] = 63448, + [SMALL_STATE(1553)] = 63469, + [SMALL_STATE(1554)] = 63490, + [SMALL_STATE(1555)] = 63515, + [SMALL_STATE(1556)] = 63544, + [SMALL_STATE(1557)] = 63565, + [SMALL_STATE(1558)] = 63586, + [SMALL_STATE(1559)] = 63607, + [SMALL_STATE(1560)] = 63636, + [SMALL_STATE(1561)] = 63665, + [SMALL_STATE(1562)] = 63686, + [SMALL_STATE(1563)] = 63707, + [SMALL_STATE(1564)] = 63728, + [SMALL_STATE(1565)] = 63757, + [SMALL_STATE(1566)] = 63778, + [SMALL_STATE(1567)] = 63799, + [SMALL_STATE(1568)] = 63823, + [SMALL_STATE(1569)] = 63849, + [SMALL_STATE(1570)] = 63875, + [SMALL_STATE(1571)] = 63893, + [SMALL_STATE(1572)] = 63913, + [SMALL_STATE(1573)] = 63929, + [SMALL_STATE(1574)] = 63947, + [SMALL_STATE(1575)] = 63973, + [SMALL_STATE(1576)] = 63997, + [SMALL_STATE(1577)] = 64013, + [SMALL_STATE(1578)] = 64029, + [SMALL_STATE(1579)] = 64055, + [SMALL_STATE(1580)] = 64075, + [SMALL_STATE(1581)] = 64101, + [SMALL_STATE(1582)] = 64127, + [SMALL_STATE(1583)] = 64153, + [SMALL_STATE(1584)] = 64179, + [SMALL_STATE(1585)] = 64203, + [SMALL_STATE(1586)] = 64227, + [SMALL_STATE(1587)] = 64251, + [SMALL_STATE(1588)] = 64267, + [SMALL_STATE(1589)] = 64283, + [SMALL_STATE(1590)] = 64299, + [SMALL_STATE(1591)] = 64321, + [SMALL_STATE(1592)] = 64347, + [SMALL_STATE(1593)] = 64363, + [SMALL_STATE(1594)] = 64387, + [SMALL_STATE(1595)] = 64403, + [SMALL_STATE(1596)] = 64429, + [SMALL_STATE(1597)] = 64449, + [SMALL_STATE(1598)] = 64475, + [SMALL_STATE(1599)] = 64498, + [SMALL_STATE(1600)] = 64515, + [SMALL_STATE(1601)] = 64540, + [SMALL_STATE(1602)] = 64555, + [SMALL_STATE(1603)] = 64578, + [SMALL_STATE(1604)] = 64593, + [SMALL_STATE(1605)] = 64608, + [SMALL_STATE(1606)] = 64623, + [SMALL_STATE(1607)] = 64638, + [SMALL_STATE(1608)] = 64653, + [SMALL_STATE(1609)] = 64672, + [SMALL_STATE(1610)] = 64687, + [SMALL_STATE(1611)] = 64706, + [SMALL_STATE(1612)] = 64721, + [SMALL_STATE(1613)] = 64736, + [SMALL_STATE(1614)] = 64759, + [SMALL_STATE(1615)] = 64775, + [SMALL_STATE(1616)] = 64789, + [SMALL_STATE(1617)] = 64805, + [SMALL_STATE(1618)] = 64821, + [SMALL_STATE(1619)] = 64835, + [SMALL_STATE(1620)] = 64849, + [SMALL_STATE(1621)] = 64863, + [SMALL_STATE(1622)] = 64877, + [SMALL_STATE(1623)] = 64891, + [SMALL_STATE(1624)] = 64907, + [SMALL_STATE(1625)] = 64925, + [SMALL_STATE(1626)] = 64939, + [SMALL_STATE(1627)] = 64953, + [SMALL_STATE(1628)] = 64967, + [SMALL_STATE(1629)] = 64981, + [SMALL_STATE(1630)] = 64995, + [SMALL_STATE(1631)] = 65009, + [SMALL_STATE(1632)] = 65023, + [SMALL_STATE(1633)] = 65037, + [SMALL_STATE(1634)] = 65051, + [SMALL_STATE(1635)] = 65067, + [SMALL_STATE(1636)] = 65085, + [SMALL_STATE(1637)] = 65099, + [SMALL_STATE(1638)] = 65117, + [SMALL_STATE(1639)] = 65135, + [SMALL_STATE(1640)] = 65153, + [SMALL_STATE(1641)] = 65167, + [SMALL_STATE(1642)] = 65185, + [SMALL_STATE(1643)] = 65201, + [SMALL_STATE(1644)] = 65219, + [SMALL_STATE(1645)] = 65230, + [SMALL_STATE(1646)] = 65241, + [SMALL_STATE(1647)] = 65252, + [SMALL_STATE(1648)] = 65263, + [SMALL_STATE(1649)] = 65274, + [SMALL_STATE(1650)] = 65285, + [SMALL_STATE(1651)] = 65304, + [SMALL_STATE(1652)] = 65321, + [SMALL_STATE(1653)] = 65340, + [SMALL_STATE(1654)] = 65351, + [SMALL_STATE(1655)] = 65362, + [SMALL_STATE(1656)] = 65381, + [SMALL_STATE(1657)] = 65392, + [SMALL_STATE(1658)] = 65403, + [SMALL_STATE(1659)] = 65414, + [SMALL_STATE(1660)] = 65431, + [SMALL_STATE(1661)] = 65442, + [SMALL_STATE(1662)] = 65455, + [SMALL_STATE(1663)] = 65469, + [SMALL_STATE(1664)] = 65483, + [SMALL_STATE(1665)] = 65493, + [SMALL_STATE(1666)] = 65509, + [SMALL_STATE(1667)] = 65523, + [SMALL_STATE(1668)] = 65537, + [SMALL_STATE(1669)] = 65551, + [SMALL_STATE(1670)] = 65565, + [SMALL_STATE(1671)] = 65581, + [SMALL_STATE(1672)] = 65595, + [SMALL_STATE(1673)] = 65609, + [SMALL_STATE(1674)] = 65625, + [SMALL_STATE(1675)] = 65641, + [SMALL_STATE(1676)] = 65657, + [SMALL_STATE(1677)] = 65673, + [SMALL_STATE(1678)] = 65687, + [SMALL_STATE(1679)] = 65701, + [SMALL_STATE(1680)] = 65717, + [SMALL_STATE(1681)] = 65733, + [SMALL_STATE(1682)] = 65747, + [SMALL_STATE(1683)] = 65761, + [SMALL_STATE(1684)] = 65775, + [SMALL_STATE(1685)] = 65789, + [SMALL_STATE(1686)] = 65803, + [SMALL_STATE(1687)] = 65819, + [SMALL_STATE(1688)] = 65833, + [SMALL_STATE(1689)] = 65849, + [SMALL_STATE(1690)] = 65865, + [SMALL_STATE(1691)] = 65881, + [SMALL_STATE(1692)] = 65895, + [SMALL_STATE(1693)] = 65911, + [SMALL_STATE(1694)] = 65925, + [SMALL_STATE(1695)] = 65941, + [SMALL_STATE(1696)] = 65957, + [SMALL_STATE(1697)] = 65973, + [SMALL_STATE(1698)] = 65987, + [SMALL_STATE(1699)] = 66001, + [SMALL_STATE(1700)] = 66017, + [SMALL_STATE(1701)] = 66031, + [SMALL_STATE(1702)] = 66045, + [SMALL_STATE(1703)] = 66059, + [SMALL_STATE(1704)] = 66073, + [SMALL_STATE(1705)] = 66087, + [SMALL_STATE(1706)] = 66101, + [SMALL_STATE(1707)] = 66115, + [SMALL_STATE(1708)] = 66131, + [SMALL_STATE(1709)] = 66145, + [SMALL_STATE(1710)] = 66159, + [SMALL_STATE(1711)] = 66175, + [SMALL_STATE(1712)] = 66189, + [SMALL_STATE(1713)] = 66205, + [SMALL_STATE(1714)] = 66219, + [SMALL_STATE(1715)] = 66235, + [SMALL_STATE(1716)] = 66249, + [SMALL_STATE(1717)] = 66263, + [SMALL_STATE(1718)] = 66277, + [SMALL_STATE(1719)] = 66291, + [SMALL_STATE(1720)] = 66305, + [SMALL_STATE(1721)] = 66319, + [SMALL_STATE(1722)] = 66333, + [SMALL_STATE(1723)] = 66343, + [SMALL_STATE(1724)] = 66357, + [SMALL_STATE(1725)] = 66371, + [SMALL_STATE(1726)] = 66385, + [SMALL_STATE(1727)] = 66399, + [SMALL_STATE(1728)] = 66413, + [SMALL_STATE(1729)] = 66427, + [SMALL_STATE(1730)] = 66441, + [SMALL_STATE(1731)] = 66455, + [SMALL_STATE(1732)] = 66469, + [SMALL_STATE(1733)] = 66483, + [SMALL_STATE(1734)] = 66497, + [SMALL_STATE(1735)] = 66513, + [SMALL_STATE(1736)] = 66526, + [SMALL_STATE(1737)] = 66539, + [SMALL_STATE(1738)] = 66552, + [SMALL_STATE(1739)] = 66563, + [SMALL_STATE(1740)] = 66576, + [SMALL_STATE(1741)] = 66589, + [SMALL_STATE(1742)] = 66602, + [SMALL_STATE(1743)] = 66611, + [SMALL_STATE(1744)] = 66624, + [SMALL_STATE(1745)] = 66637, + [SMALL_STATE(1746)] = 66650, + [SMALL_STATE(1747)] = 66661, + [SMALL_STATE(1748)] = 66674, + [SMALL_STATE(1749)] = 66687, + [SMALL_STATE(1750)] = 66700, + [SMALL_STATE(1751)] = 66713, + [SMALL_STATE(1752)] = 66726, + [SMALL_STATE(1753)] = 66739, + [SMALL_STATE(1754)] = 66752, + [SMALL_STATE(1755)] = 66761, + [SMALL_STATE(1756)] = 66770, + [SMALL_STATE(1757)] = 66781, + [SMALL_STATE(1758)] = 66794, + [SMALL_STATE(1759)] = 66807, + [SMALL_STATE(1760)] = 66820, + [SMALL_STATE(1761)] = 66829, + [SMALL_STATE(1762)] = 66842, + [SMALL_STATE(1763)] = 66855, + [SMALL_STATE(1764)] = 66868, + [SMALL_STATE(1765)] = 66881, + [SMALL_STATE(1766)] = 66894, + [SMALL_STATE(1767)] = 66907, + [SMALL_STATE(1768)] = 66920, + [SMALL_STATE(1769)] = 66933, + [SMALL_STATE(1770)] = 66942, + [SMALL_STATE(1771)] = 66951, + [SMALL_STATE(1772)] = 66964, + [SMALL_STATE(1773)] = 66977, + [SMALL_STATE(1774)] = 66990, + [SMALL_STATE(1775)] = 66999, + [SMALL_STATE(1776)] = 67012, + [SMALL_STATE(1777)] = 67025, + [SMALL_STATE(1778)] = 67038, + [SMALL_STATE(1779)] = 67049, + [SMALL_STATE(1780)] = 67062, + [SMALL_STATE(1781)] = 67075, + [SMALL_STATE(1782)] = 67088, + [SMALL_STATE(1783)] = 67101, + [SMALL_STATE(1784)] = 67114, + [SMALL_STATE(1785)] = 67127, + [SMALL_STATE(1786)] = 67140, + [SMALL_STATE(1787)] = 67153, + [SMALL_STATE(1788)] = 67166, + [SMALL_STATE(1789)] = 67179, + [SMALL_STATE(1790)] = 67192, + [SMALL_STATE(1791)] = 67205, + [SMALL_STATE(1792)] = 67218, + [SMALL_STATE(1793)] = 67231, + [SMALL_STATE(1794)] = 67244, + [SMALL_STATE(1795)] = 67253, + [SMALL_STATE(1796)] = 67266, + [SMALL_STATE(1797)] = 67279, + [SMALL_STATE(1798)] = 67292, + [SMALL_STATE(1799)] = 67301, + [SMALL_STATE(1800)] = 67314, + [SMALL_STATE(1801)] = 67325, + [SMALL_STATE(1802)] = 67338, + [SMALL_STATE(1803)] = 67351, + [SMALL_STATE(1804)] = 67364, + [SMALL_STATE(1805)] = 67377, + [SMALL_STATE(1806)] = 67390, + [SMALL_STATE(1807)] = 67399, + [SMALL_STATE(1808)] = 67412, + [SMALL_STATE(1809)] = 67425, + [SMALL_STATE(1810)] = 67438, + [SMALL_STATE(1811)] = 67449, + [SMALL_STATE(1812)] = 67462, + [SMALL_STATE(1813)] = 67475, + [SMALL_STATE(1814)] = 67488, + [SMALL_STATE(1815)] = 67501, + [SMALL_STATE(1816)] = 67514, + [SMALL_STATE(1817)] = 67527, + [SMALL_STATE(1818)] = 67540, + [SMALL_STATE(1819)] = 67553, + [SMALL_STATE(1820)] = 67562, + [SMALL_STATE(1821)] = 67575, + [SMALL_STATE(1822)] = 67588, + [SMALL_STATE(1823)] = 67601, + [SMALL_STATE(1824)] = 67614, + [SMALL_STATE(1825)] = 67627, + [SMALL_STATE(1826)] = 67640, + [SMALL_STATE(1827)] = 67653, + [SMALL_STATE(1828)] = 67663, + [SMALL_STATE(1829)] = 67673, + [SMALL_STATE(1830)] = 67683, + [SMALL_STATE(1831)] = 67693, + [SMALL_STATE(1832)] = 67703, + [SMALL_STATE(1833)] = 67713, + [SMALL_STATE(1834)] = 67723, + [SMALL_STATE(1835)] = 67733, + [SMALL_STATE(1836)] = 67743, + [SMALL_STATE(1837)] = 67753, + [SMALL_STATE(1838)] = 67763, + [SMALL_STATE(1839)] = 67771, + [SMALL_STATE(1840)] = 67781, + [SMALL_STATE(1841)] = 67791, + [SMALL_STATE(1842)] = 67801, + [SMALL_STATE(1843)] = 67809, + [SMALL_STATE(1844)] = 67817, + [SMALL_STATE(1845)] = 67825, + [SMALL_STATE(1846)] = 67835, + [SMALL_STATE(1847)] = 67845, + [SMALL_STATE(1848)] = 67855, + [SMALL_STATE(1849)] = 67865, + [SMALL_STATE(1850)] = 67875, + [SMALL_STATE(1851)] = 67885, + [SMALL_STATE(1852)] = 67893, + [SMALL_STATE(1853)] = 67901, + [SMALL_STATE(1854)] = 67909, + [SMALL_STATE(1855)] = 67917, + [SMALL_STATE(1856)] = 67925, + [SMALL_STATE(1857)] = 67935, + [SMALL_STATE(1858)] = 67943, + [SMALL_STATE(1859)] = 67953, + [SMALL_STATE(1860)] = 67963, + [SMALL_STATE(1861)] = 67973, + [SMALL_STATE(1862)] = 67983, + [SMALL_STATE(1863)] = 67993, + [SMALL_STATE(1864)] = 68003, + [SMALL_STATE(1865)] = 68013, + [SMALL_STATE(1866)] = 68023, + [SMALL_STATE(1867)] = 68033, + [SMALL_STATE(1868)] = 68043, + [SMALL_STATE(1869)] = 68053, + [SMALL_STATE(1870)] = 68063, + [SMALL_STATE(1871)] = 68073, + [SMALL_STATE(1872)] = 68083, + [SMALL_STATE(1873)] = 68093, + [SMALL_STATE(1874)] = 68103, + [SMALL_STATE(1875)] = 68113, + [SMALL_STATE(1876)] = 68123, + [SMALL_STATE(1877)] = 68133, + [SMALL_STATE(1878)] = 68143, + [SMALL_STATE(1879)] = 68153, + [SMALL_STATE(1880)] = 68163, + [SMALL_STATE(1881)] = 68171, + [SMALL_STATE(1882)] = 68179, + [SMALL_STATE(1883)] = 68189, + [SMALL_STATE(1884)] = 68199, + [SMALL_STATE(1885)] = 68209, + [SMALL_STATE(1886)] = 68219, + [SMALL_STATE(1887)] = 68229, + [SMALL_STATE(1888)] = 68237, + [SMALL_STATE(1889)] = 68247, + [SMALL_STATE(1890)] = 68257, + [SMALL_STATE(1891)] = 68267, + [SMALL_STATE(1892)] = 68277, + [SMALL_STATE(1893)] = 68287, + [SMALL_STATE(1894)] = 68297, + [SMALL_STATE(1895)] = 68307, + [SMALL_STATE(1896)] = 68317, + [SMALL_STATE(1897)] = 68327, + [SMALL_STATE(1898)] = 68337, + [SMALL_STATE(1899)] = 68345, + [SMALL_STATE(1900)] = 68355, + [SMALL_STATE(1901)] = 68363, + [SMALL_STATE(1902)] = 68373, + [SMALL_STATE(1903)] = 68383, + [SMALL_STATE(1904)] = 68391, + [SMALL_STATE(1905)] = 68401, + [SMALL_STATE(1906)] = 68411, + [SMALL_STATE(1907)] = 68421, + [SMALL_STATE(1908)] = 68431, + [SMALL_STATE(1909)] = 68441, + [SMALL_STATE(1910)] = 68449, + [SMALL_STATE(1911)] = 68459, + [SMALL_STATE(1912)] = 68469, + [SMALL_STATE(1913)] = 68479, + [SMALL_STATE(1914)] = 68489, + [SMALL_STATE(1915)] = 68499, + [SMALL_STATE(1916)] = 68509, + [SMALL_STATE(1917)] = 68519, + [SMALL_STATE(1918)] = 68529, + [SMALL_STATE(1919)] = 68539, + [SMALL_STATE(1920)] = 68549, + [SMALL_STATE(1921)] = 68559, + [SMALL_STATE(1922)] = 68569, + [SMALL_STATE(1923)] = 68579, + [SMALL_STATE(1924)] = 68589, + [SMALL_STATE(1925)] = 68599, + [SMALL_STATE(1926)] = 68609, + [SMALL_STATE(1927)] = 68619, + [SMALL_STATE(1928)] = 68627, + [SMALL_STATE(1929)] = 68634, + [SMALL_STATE(1930)] = 68641, + [SMALL_STATE(1931)] = 68648, + [SMALL_STATE(1932)] = 68655, + [SMALL_STATE(1933)] = 68662, + [SMALL_STATE(1934)] = 68669, + [SMALL_STATE(1935)] = 68676, + [SMALL_STATE(1936)] = 68683, + [SMALL_STATE(1937)] = 68690, + [SMALL_STATE(1938)] = 68697, + [SMALL_STATE(1939)] = 68704, + [SMALL_STATE(1940)] = 68711, + [SMALL_STATE(1941)] = 68718, + [SMALL_STATE(1942)] = 68725, + [SMALL_STATE(1943)] = 68732, + [SMALL_STATE(1944)] = 68739, + [SMALL_STATE(1945)] = 68746, + [SMALL_STATE(1946)] = 68753, + [SMALL_STATE(1947)] = 68760, + [SMALL_STATE(1948)] = 68767, + [SMALL_STATE(1949)] = 68774, + [SMALL_STATE(1950)] = 68781, + [SMALL_STATE(1951)] = 68788, + [SMALL_STATE(1952)] = 68795, + [SMALL_STATE(1953)] = 68802, + [SMALL_STATE(1954)] = 68809, + [SMALL_STATE(1955)] = 68816, + [SMALL_STATE(1956)] = 68823, + [SMALL_STATE(1957)] = 68830, + [SMALL_STATE(1958)] = 68837, + [SMALL_STATE(1959)] = 68844, + [SMALL_STATE(1960)] = 68851, + [SMALL_STATE(1961)] = 68858, + [SMALL_STATE(1962)] = 68865, + [SMALL_STATE(1963)] = 68872, + [SMALL_STATE(1964)] = 68879, + [SMALL_STATE(1965)] = 68886, + [SMALL_STATE(1966)] = 68893, + [SMALL_STATE(1967)] = 68900, + [SMALL_STATE(1968)] = 68907, + [SMALL_STATE(1969)] = 68914, + [SMALL_STATE(1970)] = 68921, + [SMALL_STATE(1971)] = 68928, + [SMALL_STATE(1972)] = 68935, + [SMALL_STATE(1973)] = 68942, + [SMALL_STATE(1974)] = 68949, + [SMALL_STATE(1975)] = 68956, + [SMALL_STATE(1976)] = 68963, + [SMALL_STATE(1977)] = 68970, + [SMALL_STATE(1978)] = 68977, + [SMALL_STATE(1979)] = 68984, + [SMALL_STATE(1980)] = 68991, + [SMALL_STATE(1981)] = 68998, + [SMALL_STATE(1982)] = 69005, + [SMALL_STATE(1983)] = 69012, + [SMALL_STATE(1984)] = 69019, + [SMALL_STATE(1985)] = 69026, + [SMALL_STATE(1986)] = 69033, + [SMALL_STATE(1987)] = 69040, + [SMALL_STATE(1988)] = 69047, + [SMALL_STATE(1989)] = 69054, + [SMALL_STATE(1990)] = 69061, + [SMALL_STATE(1991)] = 69068, + [SMALL_STATE(1992)] = 69075, + [SMALL_STATE(1993)] = 69082, + [SMALL_STATE(1994)] = 69089, + [SMALL_STATE(1995)] = 69096, + [SMALL_STATE(1996)] = 69103, + [SMALL_STATE(1997)] = 69110, + [SMALL_STATE(1998)] = 69117, + [SMALL_STATE(1999)] = 69124, + [SMALL_STATE(2000)] = 69131, + [SMALL_STATE(2001)] = 69138, + [SMALL_STATE(2002)] = 69145, + [SMALL_STATE(2003)] = 69152, + [SMALL_STATE(2004)] = 69159, + [SMALL_STATE(2005)] = 69166, + [SMALL_STATE(2006)] = 69173, + [SMALL_STATE(2007)] = 69180, + [SMALL_STATE(2008)] = 69187, + [SMALL_STATE(2009)] = 69194, + [SMALL_STATE(2010)] = 69201, + [SMALL_STATE(2011)] = 69208, + [SMALL_STATE(2012)] = 69215, + [SMALL_STATE(2013)] = 69222, + [SMALL_STATE(2014)] = 69229, + [SMALL_STATE(2015)] = 69236, + [SMALL_STATE(2016)] = 69243, + [SMALL_STATE(2017)] = 69250, + [SMALL_STATE(2018)] = 69257, + [SMALL_STATE(2019)] = 69264, + [SMALL_STATE(2020)] = 69271, + [SMALL_STATE(2021)] = 69278, + [SMALL_STATE(2022)] = 69285, + [SMALL_STATE(2023)] = 69292, + [SMALL_STATE(2024)] = 69299, + [SMALL_STATE(2025)] = 69306, + [SMALL_STATE(2026)] = 69313, + [SMALL_STATE(2027)] = 69320, + [SMALL_STATE(2028)] = 69327, + [SMALL_STATE(2029)] = 69334, + [SMALL_STATE(2030)] = 69341, + [SMALL_STATE(2031)] = 69348, + [SMALL_STATE(2032)] = 69355, + [SMALL_STATE(2033)] = 69362, + [SMALL_STATE(2034)] = 69369, + [SMALL_STATE(2035)] = 69376, + [SMALL_STATE(2036)] = 69383, + [SMALL_STATE(2037)] = 69390, + [SMALL_STATE(2038)] = 69397, + [SMALL_STATE(2039)] = 69404, + [SMALL_STATE(2040)] = 69411, + [SMALL_STATE(2041)] = 69418, + [SMALL_STATE(2042)] = 69425, + [SMALL_STATE(2043)] = 69432, + [SMALL_STATE(2044)] = 69439, + [SMALL_STATE(2045)] = 69446, + [SMALL_STATE(2046)] = 69453, + [SMALL_STATE(2047)] = 69460, + [SMALL_STATE(2048)] = 69467, + [SMALL_STATE(2049)] = 69474, + [SMALL_STATE(2050)] = 69481, + [SMALL_STATE(2051)] = 69488, + [SMALL_STATE(2052)] = 69495, + [SMALL_STATE(2053)] = 69502, + [SMALL_STATE(2054)] = 69509, + [SMALL_STATE(2055)] = 69516, + [SMALL_STATE(2056)] = 69523, + [SMALL_STATE(2057)] = 69530, + [SMALL_STATE(2058)] = 69537, + [SMALL_STATE(2059)] = 69544, + [SMALL_STATE(2060)] = 69551, + [SMALL_STATE(2061)] = 69558, + [SMALL_STATE(2062)] = 69565, + [SMALL_STATE(2063)] = 69572, + [SMALL_STATE(2064)] = 69579, + [SMALL_STATE(2065)] = 69586, + [SMALL_STATE(2066)] = 69593, + [SMALL_STATE(2067)] = 69600, + [SMALL_STATE(2068)] = 69607, + [SMALL_STATE(2069)] = 69614, + [SMALL_STATE(2070)] = 69621, + [SMALL_STATE(2071)] = 69628, + [SMALL_STATE(2072)] = 69635, + [SMALL_STATE(2073)] = 69642, + [SMALL_STATE(2074)] = 69649, + [SMALL_STATE(2075)] = 69656, + [SMALL_STATE(2076)] = 69663, + [SMALL_STATE(2077)] = 69670, + [SMALL_STATE(2078)] = 69677, + [SMALL_STATE(2079)] = 69684, + [SMALL_STATE(2080)] = 69691, + [SMALL_STATE(2081)] = 69698, + [SMALL_STATE(2082)] = 69705, + [SMALL_STATE(2083)] = 69712, + [SMALL_STATE(2084)] = 69719, + [SMALL_STATE(2085)] = 69726, + [SMALL_STATE(2086)] = 69733, + [SMALL_STATE(2087)] = 69740, + [SMALL_STATE(2088)] = 69747, + [SMALL_STATE(2089)] = 69754, + [SMALL_STATE(2090)] = 69761, + [SMALL_STATE(2091)] = 69768, + [SMALL_STATE(2092)] = 69775, + [SMALL_STATE(2093)] = 69782, + [SMALL_STATE(2094)] = 69789, + [SMALL_STATE(2095)] = 69796, + [SMALL_STATE(2096)] = 69803, + [SMALL_STATE(2097)] = 69810, + [SMALL_STATE(2098)] = 69817, + [SMALL_STATE(2099)] = 69824, + [SMALL_STATE(2100)] = 69831, + [SMALL_STATE(2101)] = 69838, + [SMALL_STATE(2102)] = 69845, + [SMALL_STATE(2103)] = 69852, + [SMALL_STATE(2104)] = 69859, + [SMALL_STATE(2105)] = 69866, + [SMALL_STATE(2106)] = 69873, + [SMALL_STATE(2107)] = 69880, + [SMALL_STATE(2108)] = 69887, + [SMALL_STATE(2109)] = 69894, + [SMALL_STATE(2110)] = 69901, + [SMALL_STATE(2111)] = 69908, + [SMALL_STATE(2112)] = 69915, + [SMALL_STATE(2113)] = 69922, + [SMALL_STATE(2114)] = 69929, + [SMALL_STATE(2115)] = 69936, + [SMALL_STATE(2116)] = 69943, + [SMALL_STATE(2117)] = 69950, + [SMALL_STATE(2118)] = 69957, + [SMALL_STATE(2119)] = 69964, + [SMALL_STATE(2120)] = 69971, + [SMALL_STATE(2121)] = 69978, + [SMALL_STATE(2122)] = 69985, + [SMALL_STATE(2123)] = 69992, + [SMALL_STATE(2124)] = 69999, + [SMALL_STATE(2125)] = 70006, + [SMALL_STATE(2126)] = 70013, + [SMALL_STATE(2127)] = 70020, + [SMALL_STATE(2128)] = 70027, + [SMALL_STATE(2129)] = 70034, + [SMALL_STATE(2130)] = 70041, + [SMALL_STATE(2131)] = 70048, + [SMALL_STATE(2132)] = 70055, + [SMALL_STATE(2133)] = 70062, + [SMALL_STATE(2134)] = 70069, + [SMALL_STATE(2135)] = 70076, + [SMALL_STATE(2136)] = 70083, + [SMALL_STATE(2137)] = 70090, + [SMALL_STATE(2138)] = 70097, + [SMALL_STATE(2139)] = 70104, + [SMALL_STATE(2140)] = 70111, + [SMALL_STATE(2141)] = 70118, + [SMALL_STATE(2142)] = 70125, + [SMALL_STATE(2143)] = 70132, + [SMALL_STATE(2144)] = 70139, + [SMALL_STATE(2145)] = 70146, + [SMALL_STATE(2146)] = 70153, + [SMALL_STATE(2147)] = 70160, + [SMALL_STATE(2148)] = 70167, + [SMALL_STATE(2149)] = 70174, + [SMALL_STATE(2150)] = 70181, + [SMALL_STATE(2151)] = 70188, + [SMALL_STATE(2152)] = 70195, + [SMALL_STATE(2153)] = 70202, + [SMALL_STATE(2154)] = 70209, + [SMALL_STATE(2155)] = 70216, + [SMALL_STATE(2156)] = 70223, + [SMALL_STATE(2157)] = 70230, + [SMALL_STATE(2158)] = 70237, + [SMALL_STATE(2159)] = 70244, + [SMALL_STATE(2160)] = 70251, + [SMALL_STATE(2161)] = 70258, + [SMALL_STATE(2162)] = 70265, + [SMALL_STATE(2163)] = 70272, + [SMALL_STATE(2164)] = 70279, + [SMALL_STATE(2165)] = 70286, + [SMALL_STATE(2166)] = 70293, + [SMALL_STATE(2167)] = 70300, + [SMALL_STATE(2168)] = 70307, + [SMALL_STATE(2169)] = 70314, + [SMALL_STATE(2170)] = 70321, + [SMALL_STATE(2171)] = 70328, + [SMALL_STATE(2172)] = 70335, + [SMALL_STATE(2173)] = 70342, + [SMALL_STATE(2174)] = 70349, + [SMALL_STATE(2175)] = 70356, + [SMALL_STATE(2176)] = 70363, + [SMALL_STATE(2177)] = 70370, + [SMALL_STATE(2178)] = 70377, + [SMALL_STATE(2179)] = 70384, + [SMALL_STATE(2180)] = 70391, + [SMALL_STATE(2181)] = 70398, + [SMALL_STATE(2182)] = 70405, + [SMALL_STATE(2183)] = 70412, + [SMALL_STATE(2184)] = 70419, + [SMALL_STATE(2185)] = 70426, + [SMALL_STATE(2186)] = 70433, + [SMALL_STATE(2187)] = 70440, + [SMALL_STATE(2188)] = 70447, + [SMALL_STATE(2189)] = 70454, + [SMALL_STATE(2190)] = 70461, + [SMALL_STATE(2191)] = 70468, + [SMALL_STATE(2192)] = 70475, + [SMALL_STATE(2193)] = 70482, + [SMALL_STATE(2194)] = 70489, + [SMALL_STATE(2195)] = 70496, + [SMALL_STATE(2196)] = 70503, + [SMALL_STATE(2197)] = 70510, + [SMALL_STATE(2198)] = 70517, + [SMALL_STATE(2199)] = 70524, + [SMALL_STATE(2200)] = 70531, + [SMALL_STATE(2201)] = 70538, + [SMALL_STATE(2202)] = 70545, + [SMALL_STATE(2203)] = 70552, + [SMALL_STATE(2204)] = 70559, + [SMALL_STATE(2205)] = 70566, + [SMALL_STATE(2206)] = 70573, + [SMALL_STATE(2207)] = 70580, + [SMALL_STATE(2208)] = 70587, + [SMALL_STATE(2209)] = 70594, + [SMALL_STATE(2210)] = 70601, + [SMALL_STATE(2211)] = 70608, + [SMALL_STATE(2212)] = 70615, + [SMALL_STATE(2213)] = 70622, + [SMALL_STATE(2214)] = 70629, + [SMALL_STATE(2215)] = 70636, + [SMALL_STATE(2216)] = 70643, + [SMALL_STATE(2217)] = 70650, + [SMALL_STATE(2218)] = 70657, + [SMALL_STATE(2219)] = 70664, + [SMALL_STATE(2220)] = 70671, + [SMALL_STATE(2221)] = 70678, + [SMALL_STATE(2222)] = 70685, + [SMALL_STATE(2223)] = 70692, + [SMALL_STATE(2224)] = 70699, + [SMALL_STATE(2225)] = 70706, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -132129,781 +132493,781 @@ 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(516), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(514), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1564), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2014), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1363), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 41), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(510), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1566), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2080), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1373), [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2015), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1855), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(483), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(713), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(713), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(714), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(99), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1144), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1254), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1046), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2211), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2209), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1174), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1080), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1017), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1012), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1109), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1754), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1602), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1656), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1922), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1862), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(672), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2184), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1926), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(446), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2175), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(578), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2104), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2106), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2023), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1856), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2149), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(615), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(749), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2193), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2192), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2191), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1636), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(820), - [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1761), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1697), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(820), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(799), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 41), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2081), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1894), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(497), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(747), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(747), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(749), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(94), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1149), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1207), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1075), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2204), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1871), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2199), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1173), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1086), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1018), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(995), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1091), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1802), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1600), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1652), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1829), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1918), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(765), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2004), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1848), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(360), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2211), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(572), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2044), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2043), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2089), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1912), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(748), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(754), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2154), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2153), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2145), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1614), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(814), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1746), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1675), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(814), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(830), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(506), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1560), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2068), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1341), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2043), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1848), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(163), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1154), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1211), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1065), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1863), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1845), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(676), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2035), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1860), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(406), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2218), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(580), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2183), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2172), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2050), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1841), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2140), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(511), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1562), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2134), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1335), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2109), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1899), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(172), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1164), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1243), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1067), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(51), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1916), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1841), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(758), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1948), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1847), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(359), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2216), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(567), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2003), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2002), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2116), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1872), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1991), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(507), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1565), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2086), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1393), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2069), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1903), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(263), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1161), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1232), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1069), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(37), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1846), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1833), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(682), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1973), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1844), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(441), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2221), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(587), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2033), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2032), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2074), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2020), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(515), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1553), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1953), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1394), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1954), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1897), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(245), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1146), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1216), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1024), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(43), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1904), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1923), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(725), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1961), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1910), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(452), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2096), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(577), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1970), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1969), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1956), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1872), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2115), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(515), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1561), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2152), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1342), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2135), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1883), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(269), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1158), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1228), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1063), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(28), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1862), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(725), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1961), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1831), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(358), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2219), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(571), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1946), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1943), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2140), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1936), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(513), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1558), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1997), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1394), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1998), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1886), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(236), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1156), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1234), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1035), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(29), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1891), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1878), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(675), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2104), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1896), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(364), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2164), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(579), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2103), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2101), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2006), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1911), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2037), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(516), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1562), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2227), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(517), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1553), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2224), [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2223), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1908), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(483), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(713), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(713), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(714), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1151), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1071), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2211), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1907), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2209), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1174), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1080), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1017), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1012), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1109), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1754), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1602), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1656), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1905), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1901), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(689), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2199), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1900), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(429), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2197), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(576), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2196), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2195), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2194), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(615), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2193), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2192), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2191), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1636), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1761), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1697), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(799), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(510), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(483), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(713), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(713), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(714), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(99), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1144), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1254), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1017), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1907), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2209), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1080), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1012), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1109), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1754), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1602), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1656), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1922), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1862), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1926), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(446), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2175), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(578), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2104), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2106), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2023), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1856), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2149), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(615), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2193), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2192), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2191), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1636), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(820), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1761), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1697), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(820), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(799), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2218), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1919), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(497), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1154), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1233), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1079), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2204), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1871), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2199), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1173), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1086), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1018), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(995), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1091), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1802), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1600), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1652), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1827), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1888), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(656), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2169), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1901), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(393), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2165), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(583), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2162), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2161), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2160), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(748), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(754), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2154), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2153), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2145), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1614), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1303), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1746), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1675), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1303), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(830), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(497), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(747), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(747), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(94), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1149), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1207), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1018), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2204), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1871), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2199), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1086), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(995), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1091), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1802), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1600), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1652), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1829), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1918), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1848), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(360), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2044), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2043), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2089), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1912), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2034), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(748), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(754), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2154), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2153), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2145), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1614), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(814), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1746), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1675), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(814), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(830), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(163), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1211), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1863), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1845), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1860), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2218), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(580), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2183), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2172), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2050), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1841), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2140), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(249), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1151), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1905), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1901), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1900), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(429), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2197), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(576), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2196), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2195), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2194), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1927), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1964), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(245), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1216), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1904), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1923), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1910), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(452), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2096), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(577), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1969), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1956), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1872), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2115), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(263), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1161), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1232), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1846), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1833), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1844), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2221), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(587), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2033), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2032), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2074), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2020), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1859), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1870), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2148), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1871), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(172), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1164), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1243), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1916), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1841), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1847), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(359), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2216), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(567), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2003), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2002), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2116), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1872), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1991), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(269), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1158), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1228), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1862), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1907), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1831), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(358), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2219), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(571), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1946), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1943), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2140), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1936), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(247), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1233), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1827), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1888), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1901), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(393), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2165), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(583), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2162), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2161), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2160), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1892), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2095), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(236), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1156), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1234), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1891), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1878), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1896), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(364), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2164), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(579), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2103), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2101), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2006), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1911), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2037), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1879), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1869), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2187), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 26), [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 83), [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(869), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(483), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(713), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(713), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(714), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(249), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1920), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1905), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1901), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(689), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2199), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1900), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(429), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2197), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(576), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2196), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2195), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2194), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1927), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1964), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(615), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(749), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2193), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2192), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2191), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1636), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1761), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1697), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(799), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(871), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(245), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(43), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1904), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1923), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(725), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1961), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1910), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(452), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2096), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(577), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1970), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1969), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1956), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1872), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2115), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(865), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1859), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(663), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2016), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1870), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2148), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1871), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(868), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(263), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(37), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1846), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1833), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(682), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1973), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1844), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(441), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2221), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(587), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2033), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2032), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2074), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2020), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(874), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(99), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1862), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(672), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2184), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1926), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(446), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2175), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(578), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2104), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2106), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2023), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1856), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2149), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(866), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(163), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1863), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1845), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(676), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2035), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1860), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(406), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2218), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(580), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2183), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2172), - [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2050), - [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 39), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 39), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 70), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 70), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(867), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(497), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(747), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(747), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(749), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(94), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1830), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1829), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1918), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(765), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2004), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1848), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(360), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2211), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(572), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2044), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2043), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2089), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1912), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2034), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(748), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(754), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2154), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2153), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2145), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1614), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(814), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1746), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1675), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(814), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(830), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(874), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(172), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1916), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(758), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1948), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1847), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(359), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2216), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(567), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2003), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2002), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2116), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1872), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1991), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(875), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(236), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(29), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1891), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1878), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(675), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2104), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1896), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(364), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2164), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(579), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2103), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2101), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2006), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1911), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2037), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(873), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1879), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1888), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(761), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2045), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1869), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(393), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2187), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(583), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2162), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2161), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2160), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(870), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(269), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1862), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1907), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(725), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1961), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1831), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(358), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2219), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(571), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1946), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1943), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1936), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(871), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(247), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1827), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(656), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2169), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1901), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2165), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1892), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2095), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), @@ -132911,1663 +133275,1666 @@ static const TSParseActionEntry ts_parse_actions[] = { [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1259), + [1955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1223), [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1107), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2089), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1388), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1981), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1916), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1012), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1017), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2211), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1865), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2209), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1080), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1109), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1754), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1602), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1656), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2090), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1350), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2034), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1924), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1110), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2156), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1376), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2046), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1858), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(995), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1018), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2204), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1913), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2199), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1086), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1091), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1802), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1600), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1652), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2157), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1334), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2100), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1846), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2042), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1362), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2146), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1892), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2091), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1397), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2060), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1930), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2158), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1343), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2126), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1835), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2108), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1359), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2032), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1839), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(773), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1697), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(773), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1675), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1107), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1012), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1017), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2211), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1865), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2209), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1080), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1109), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1754), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1602), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1656), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(846), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1700), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(873), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1012), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1017), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2211), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1865), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2209), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1054), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1092), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1259), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1829), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1164), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3143] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1259), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2211), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2211), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2211), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2211), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2211), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 45), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(1012), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1310), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1311), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1110), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(995), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1018), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2204), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1913), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2199), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1086), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1091), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1802), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1600), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1652), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(846), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1673), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(872), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(995), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1018), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2204), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1913), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2199), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1049), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1104), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1223), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1737), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1163), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2204), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3169] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1223), + [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2204), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2204), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2204), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2204), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 45), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(995), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1316), + [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1313), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [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(sym_preproc_argument_list, 2), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3769] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1054), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1054), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1404), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1054), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1054), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1429), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1054), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1445), + [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1439), + [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1441), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1438), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1435), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1049), [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1433), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1437), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1441), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1402), - [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1440), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1952), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1907), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2211), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [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(1803), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1049), + [3824] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1049), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1444), + [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1049), + [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1049), + [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1443), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2082), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1871), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2204), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 11), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1803), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1353), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2041), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1908), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1756), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1340), + [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2124), + [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1919), [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), - [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1593), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1803), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(744), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2030), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1691), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1631), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1463), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1531), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1698), - [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1698), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1699), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1643), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1572), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1568), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1373), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1237), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2202), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1830), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(538), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1829), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1510), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(834), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1869), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(560), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 42), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 42), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 42), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 71), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 71), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 71), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5308] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), + [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), + [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), + [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1756), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1573), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(764), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2120), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), + [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), + [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1664), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1618), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1571), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1665), + [4333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1665), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1666), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1633), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), + [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1579), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1460), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), + [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1524), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1254), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(560), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1377), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1838), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2213), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(841), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1859), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1737), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1512), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(534), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), + [5208] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 42), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 42), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 42), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 71), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 71), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 71), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index bc87875..be02ff7 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -1345,3 +1345,72 @@ void f() { (number_literal) (number_literal) (number_literal))))))) + +================================================================================ +Concatenated strings +================================================================================ + +foo("hello" PRI " world"); +foo("hello" PRI); +foo("hello" " world"); +foo("hello" " world " PRI); +foo(PRI "hello" PRI); +foo(PRI "hello"); + +-------------------------------------------------------------------------------- + +(translation_unit + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (identifier) + (string_literal + (string_content)))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (identifier))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (string_literal + (string_content)))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (string_literal + (string_content)) + (string_literal + (string_content)) + (identifier))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (identifier) + (string_literal + (string_content)) + (identifier))))) + (expression_statement + (call_expression + function: (identifier) + arguments: (argument_list + (concatenated_string + (identifier) + (string_literal + (string_content)))))))